Page MenuHomec4science

PhabricatorNotificationsApplication.php
No OneTemporary

File Metadata

Created
Sun, Sep 8, 02:06

PhabricatorNotificationsApplication.php

<?php
final class PhabricatorNotificationsApplication extends PhabricatorApplication {
public function getName() {
return pht('Notifications');
}
public function getBaseURI() {
return '/notification/';
}
public function getShortDescription() {
return pht('Real-Time Updates and Alerts');
}
public function getIcon() {
return 'fa-bell';
}
public function getRoutes() {
return array(
'/notification/' => array(
'(?:query/(?P<queryKey>[^/]+)/)?'
=> 'PhabricatorNotificationListController',
'panel/' => 'PhabricatorNotificationPanelController',
'individual/' => 'PhabricatorNotificationIndividualController',
'clear/' => 'PhabricatorNotificationClearController',
'test/' => 'PhabricatorNotificationTestController',
),
);
}
public function isLaunchable() {
return false;
}
}

Event Timeline