mirror of
https://github.com/openvk/openvk
synced 2024-11-11 09:29:29 +03:00
36 lines
974 B
PHP
36 lines
974 B
PHP
<?php declare(strict_types=1);
|
|
namespace openvk\Web\Models\Repositories;
|
|
use openvk\Web\Models\Entities\Club;
|
|
use openvk\Web\Models\Entities\Manager;
|
|
use openvk\Web\Models\Entities\User;
|
|
use Nette\Database\Table\ActiveRow;
|
|
use Chandler\Database\DatabaseConnection;
|
|
|
|
class Managers
|
|
{
|
|
private $context;
|
|
private $managers;
|
|
|
|
function __construct()
|
|
{
|
|
$this->context = DatabaseConnection::i()->getContext();
|
|
$this->managers= $this->context->table("group_coadmins");
|
|
}
|
|
|
|
private function toManager(?ActiveRow $ar): ?Manager
|
|
{
|
|
return is_null($ar) ? NULL : new Manager($ar);
|
|
}
|
|
|
|
function get(int $id): ?Manager
|
|
{
|
|
return $this->toManager($this->managers->where("id", $id)->fetch());
|
|
}
|
|
|
|
function getByUserAndClub(int $user, int $club): ?Manager
|
|
{
|
|
return $this->toManager($this->managers->where("user", $user)->where("club", $club)->fetch());
|
|
}
|
|
|
|
use \Nette\SmartObject;
|
|
}
|