openvk/Web/Models/Entities/Ticket.php

86 lines
1.9 KiB
PHP
Raw Normal View History

2020-06-07 19:04:43 +03:00
<?php declare(strict_types=1);
namespace openvk\Web\Models\Entities;
use openvk\Web\Util\DateTime;
use Nette\Database\Table\ActiveRow;
use openvk\Web\Models\RowModel;
use Chandler\Database\DatabaseConnection;
use openvk\Web\Models\Repositories\Users;
use Chandler\Database\DatabaseConnection as DB;
use Nette\InvalidStateException as ISE;
use Nette\Database\Table\Selection;
class Ticket extends RowModel
{
protected $tableName = "tickets";
private $overrideContentColumn = "text";
2020-06-07 19:04:43 +03:00
function getId(): int
{
return $this->getRecord()->id;
}
function getStatus(): string
{
if ($this->getRecord()->type === 0)
{
return tr("support_status_0");
2020-06-07 19:04:43 +03:00
} elseif ($this->getRecord()->type === 1) {
return tr("support_status_1");
2020-06-07 19:04:43 +03:00
} elseif ($this->getRecord()->type === 2) {
return tr("support_status_2");
2020-06-07 19:04:43 +03:00
}
}
function getType(): int
{
return $this->getRecord()->type;
}
function getName(): string
{
return ovk_proc_strtr($this->getRecord()->name, 100);
}
function getContext(): string
{
$text = $this->getRecord()->text;
$text = $this->formatLinks($text);
$text = $this->removeZalgo($text);
$text = nl2br($text);
return $text;
2020-06-07 19:04:43 +03:00
}
function getTime(): DateTime
{
return new DateTime($this->getRecord()->created);
}
function isDeleted(): bool
{
if ($this->getRecord()->deleted === 0)
{
return false;
} elseif ($this->getRecord()->deleted === 1) {
return true;
}
}
function authorId(): int
{
return $this->getRecord()->user_id;
}
function getUser(): user
{
return (new Users)->get($this->getRecord()->user_id);
}
2021-10-09 13:55:25 +03:00
function isAd(): bool /* Эх, костыли... */
{
return false;
}
use Traits\TRichText;
2020-06-07 19:04:43 +03:00
}