Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93145737
PhabricatorNotificationsApplication.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Tue, Nov 26, 13:38
Size
899 B
Mime Type
text/x-php
Expires
Thu, Nov 28, 13:38 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22581926
Attached To
rPH Phabricator
PhabricatorNotificationsApplication.php
View Options
<?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
getRoutes
()
{
return
array
(
'/notification/'
=>
array
(
'(?:query/(?P<queryKey>[^/]+)/)?'
=>
'PhabricatorNotificationListController'
,
'panel/'
=>
'PhabricatorNotificationPanelController'
,
'individual/'
=>
'PhabricatorNotificationIndividualController'
,
'status/'
=>
'PhabricatorNotificationStatusController'
,
'clear/'
=>
'PhabricatorNotificationClearController'
,
'test/'
=>
'PhabricatorNotificationTestController'
,
),
);
}
public
function
isLaunchable
()
{
return
false
;
}
}
Event Timeline
Log In to Comment