mirror of
https://github.com/openvk/openvk
synced 2024-12-23 00:51:03 +03:00
Support: Links and New lines are present now (fixes #38)
This commit is contained in:
parent
2ce3a1ae9d
commit
820c9c22fe
2 changed files with 14 additions and 3 deletions
|
@ -43,7 +43,11 @@ class Ticket extends RowModel
|
|||
|
||||
function getContext(): string
|
||||
{
|
||||
return $this->getRecord()->text;
|
||||
$text = $this->getRecord()->text;
|
||||
$text = $this->formatLinks($text);
|
||||
$text = $this->removeZalgo($text);
|
||||
$text = nl2br($text);
|
||||
return $text;
|
||||
}
|
||||
|
||||
function getTime(): DateTime
|
||||
|
@ -70,4 +74,6 @@ class Ticket extends RowModel
|
|||
{
|
||||
return (new Users)->get($this->getRecord()->user_id);
|
||||
}
|
||||
|
||||
use Traits\TRichText;
|
||||
}
|
||||
|
|
|
@ -59,12 +59,17 @@ class TicketComment extends RowModel
|
|||
|
||||
function getContext(): string
|
||||
{
|
||||
return $this->getRecord()->text;
|
||||
$text = $this->getRecord()->text;
|
||||
$text = $this->formatLinks($text);
|
||||
$text = $this->removeZalgo($text);
|
||||
$text = nl2br($text);
|
||||
return $text;
|
||||
}
|
||||
|
||||
function getTime(): DateTime
|
||||
{
|
||||
return new DateTime($this->getRecord()->created);
|
||||
}
|
||||
|
||||
|
||||
use Traits\TRichText;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue