mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-11 17:32:41 +01:00
a29b5b070f
Test Plan: Looked at a diff with inline comment. Reviewers: epriestley Reviewed By: epriestley CC: Korvin, epriestley, aran Differential Revision: https://secure.phabricator.com/D7549
51 lines
1.3 KiB
PHP
51 lines
1.3 KiB
PHP
<?php
|
|
|
|
final class PhabricatorNotificationPanelController
|
|
extends PhabricatorNotificationController {
|
|
|
|
public function processRequest() {
|
|
|
|
$request = $this->getRequest();
|
|
$user = $request->getUser();
|
|
|
|
$query = new PhabricatorNotificationQuery();
|
|
$query->setViewer($user);
|
|
$query->setUserPHID($user->getPHID());
|
|
$query->setLimit(15);
|
|
|
|
$stories = $query->execute();
|
|
|
|
if ($stories) {
|
|
$builder = new PhabricatorNotificationBuilder($stories);
|
|
$notifications_view = $builder->buildView();
|
|
$content = $notifications_view->render();
|
|
} else {
|
|
$content = phutil_tag_div(
|
|
'phabricator-notification no-notifications',
|
|
pht('You have no notifications.'));
|
|
}
|
|
|
|
$content = hsprintf(
|
|
'<div class="phabricator-notification-header">%s</div>'.
|
|
'%s'.
|
|
'<div class="phabricator-notification-view-all">%s</div>',
|
|
pht('Notifications'),
|
|
$content,
|
|
phutil_tag(
|
|
'a',
|
|
array(
|
|
'href' => '/notification/',
|
|
),
|
|
'View All Notifications'));
|
|
|
|
$unread_count = id(new PhabricatorFeedStoryNotification())
|
|
->countUnread($user);
|
|
|
|
$json = array(
|
|
'content' => $content,
|
|
'number' => (int)$unread_count,
|
|
);
|
|
|
|
return id(new AphrontAjaxResponse())->setContent($json);
|
|
}
|
|
}
|