Page MenuHomePhorge

PhabricatorNotificationsApplication.php
No OneTemporary

Size
828 B
Referenced Files
None
Subscribers
None

PhabricatorNotificationsApplication.php

<?php
final class PhabricatorNotificationsApplication extends PhabricatorApplication {
public function getBaseURI() {
return '/notification/';
}
public function getShortDescription() {
return pht('Real-Time Updates and Alerts');
}
public function getRoutes() {
return array(
'/notification/' => array(
'(?:(?P<filter>all|unread)/)?'
=> 'PhabricatorNotificationListController',
'panel/' => 'PhabricatorNotificationPanelController',
'individual/' => 'PhabricatorNotificationIndividualController',
'status/' => 'PhabricatorNotificationStatusController',
'clear/' => 'PhabricatorNotificationClearController',
'test/' => 'PhabricatorNotificationTestController',
),
);
}
public function isLaunchable() {
return false;
}
}

File Metadata

Mime Type
text/x-php
Expires
Tue, May 6, 1:12 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
83404
Default Alt Text
PhabricatorNotificationsApplication.php (828 B)

Event Timeline