openvk/Web/Models/Entities/Manager.php
Maxim Leshchenko 989cd8952b Allow adding comments to group admins
This commit allows you to add a comment to group administrators, which will be displayed in the list of administrators
2021-11-06 13:06:57 +02:00

46 lines
1.1 KiB
PHP

<?php declare(strict_types=1);
namespace openvk\Web\Models\Entities;
use openvk\Web\Util\DateTime;
use openvk\Web\Models\RowModel;
use openvk\Web\Models\Entities\{Photo, Message, Correspondence};
use openvk\Web\Models\Repositories\{Users, Clubs, Albums, Notifications, Managers};
use Nette\Database\Table\ActiveRow;
use Chandler\Database\DatabaseConnection;
use Chandler\Security\User as ChandlerUser;
class Manager extends RowModel
{
protected $tableName = "group_coadmins";
function getId(): int
{
return $this->getRecord()->id;
}
function getUserId(): int
{
return $this->getRecord()->user;
}
function getUser(): ?User
{
return (new Users)->get($this->getRecord()->user);
}
function getClubId(): int
{
return $this->getRecord()->club;
}
function getClub(): ?Club
{
return (new Clubs)->get($this->getRecord()->club);
}
function getComment(): string
{
return is_null($this->getRecord()->comment) ? "" : $this->getRecord()->comment;
}
use Traits\TSubscribable;
}