Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F567837
PhabricatorSubscriptionsApplication.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
918 B
Referenced Files
None
Subscribers
None
PhabricatorSubscriptionsApplication.php
View Options
<?php
final
class
PhabricatorSubscriptionsApplication
extends
PhabricatorApplication
{
public
function
getName
()
{
return
pht
(
'Subscriptions'
);
}
public
function
isLaunchable
()
{
return
false
;
}
public
function
canUninstall
()
{
return
false
;
}
public
function
getEventListeners
()
{
return
array
(
new
PhabricatorSubscriptionsUIEventListener
(),
);
}
public
function
getRoutes
()
{
return
array
(
'/subscriptions/'
=>
array
(
'(?P<action>add|delete)/'
.
'(?P<phid>[^/]+)/'
=>
'PhabricatorSubscriptionsEditController'
,
'mute/'
=>
array
(
'(?P<phid>[^/]+)/'
=>
'PhabricatorSubscriptionsMuteController'
,
),
'list/(?P<phid>[^/]+)/'
=>
'PhabricatorSubscriptionsListController'
,
'transaction/(?P<type>add|rem)/(?<phid>[^/]+)/'
=>
'PhabricatorSubscriptionsTransactionController'
,
),
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, May 13, 1:01 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
107819
Default Alt Text
PhabricatorSubscriptionsApplication.php (918 B)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment