Path: blob/master/src/applications/notification/application/PhabricatorNotificationsApplication.php
12256 views
<?php12final class PhabricatorNotificationsApplication extends PhabricatorApplication {34public function getName() {5return pht('Notifications');6}78public function getBaseURI() {9return '/notification/';10}1112public function getShortDescription() {13return pht('Real-Time Updates and Alerts');14}1516public function getIcon() {17return 'fa-bell';18}1920public function getRoutes() {21return array(22'/notification/' => array(23'(?:query/(?P<queryKey>[^/]+)/)?'24=> 'PhabricatorNotificationListController',25'panel/' => 'PhabricatorNotificationPanelController',26'individual/' => 'PhabricatorNotificationIndividualController',27'clear/' => 'PhabricatorNotificationClearController',28'test/' => 'PhabricatorNotificationTestController',29),30);31}3233public function isLaunchable() {34return false;35}3637}383940