mirror of
https://github.com/openvk/openvk
synced 2024-11-11 01:19:53 +03:00
30 lines
991 B
PHP
30 lines
991 B
PHP
<?php declare(strict_types=1);
|
|
namespace openvk\Web\Presenters;
|
|
|
|
final class NotificationPresenter extends OpenVKPresenter
|
|
{
|
|
protected $presenterName = "notification";
|
|
|
|
function renderFeed(): void
|
|
{
|
|
$this->assertUserLoggedIn();
|
|
|
|
$archive = $this->queryParam("act") === "archived";
|
|
$count = $this->user->identity->getNotificationsCount($archive);
|
|
|
|
if($count == 0 && $this->queryParam("act") == NULL) {
|
|
$mode = "archived";
|
|
$archive = true;
|
|
} else {
|
|
$mode = $archive ? "archived" : "new";
|
|
}
|
|
|
|
$this->template->mode = $mode;
|
|
$this->template->page = (int) ($this->queryParam("p") ?? 1);
|
|
$this->template->iterator = iterator_to_array($this->user->identity->getNotifications($this->template->page, $archive));
|
|
$this->template->count = $count;
|
|
|
|
$this->user->identity->updateNotificationOffset();
|
|
$this->user->identity->save();
|
|
}
|
|
}
|