mirror of
https://github.com/openvk/openvk
synced 2024-11-11 09:29:29 +03:00
13 lines
378 B
PHP
13 lines
378 B
PHP
<?php declare(strict_types=1);
|
|
namespace openvk\Web\Presenters;
|
|
|
|
use openvk\Web\Models\Entities\BannedLink;
|
|
use openvk\Web\Models\Repositories\BannedLinks;
|
|
|
|
final class BannedLinkPresenter extends OpenVKPresenter
|
|
{
|
|
function renderView(int $lid) {
|
|
$this->template->link = (new BannedLinks)->get($lid);
|
|
$this->template->to = $this->queryParam("to");
|
|
}
|
|
}
|