Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93548355
PhabricatorApplicationNotifications.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
Fri, Nov 29, 15:43
Size
767 B
Mime Type
text/x-php
Expires
Sun, Dec 1, 15:43 (1 d, 22 h)
Engine
blob
Format
Raw Data
Handle
22661912
Attached To
rPH Phabricator
PhabricatorApplicationNotifications.php
View Options
<?php
final
class
PhabricatorApplicationNotifications
extends
PhabricatorApplication
{
public
function
getBaseURI
()
{
return
'/notification/'
;
}
public
function
getShortDescription
()
{
return
pht
(
'Beep Beep Bloop'
);
}
public
function
getRoutes
()
{
return
array
(
'/notification/'
=>
array
(
'(?:(?P<filter>all|unread)/)?'
=>
'PhabricatorNotificationListController'
,
'panel/'
=>
'PhabricatorNotificationPanelController'
,
'individual/'
=>
'PhabricatorNotificationIndividualController'
,
'status/'
=>
'PhabricatorNotificationStatusController'
,
'clear/'
=>
'PhabricatorNotificationClearController'
,
),
);
}
public
function
shouldAppearInLaunchView
()
{
return
false
;
}
}
Event Timeline
Log In to Comment