Page MenuHomePhorge

PhabricatorNotificationsApplication.php
No OneTemporary

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;
}
}

File Metadata

Mime Type
text/x-php
Expires
Sun, Mar 23, 19:49 (1 w, 5 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1153371
Default Alt Text
PhabricatorNotificationsApplication.php (892 B)

Event Timeline