Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F3281199
PhabricatorDaemonsApplication.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
1 KB
Referenced Files
None
Subscribers
None
PhabricatorDaemonsApplication.php
View Options
<?php
final
class
PhabricatorDaemonsApplication
extends
PhabricatorApplication
{
public
function
getName
(
)
{
return
pht
(
'Daemons'
)
;
}
public
function
getShortDescription
(
)
{
return
pht
(
'Manage Daemons'
)
;
}
public
function
getBaseURI
(
)
{
return
'/daemon/'
;
}
public
function
getTitleGlyph
(
)
{
return
"\xE2\x98\xAF"
;
}
public
function
getIcon
(
)
{
return
'fa-pied-piper-alt'
;
}
public
function
getApplicationGroup
(
)
{
return
self
::
GROUP_ADMIN
;
}
public
function
canUninstall
(
)
{
return
false
;
}
public
function
getEventListeners
(
)
{
return
array
(
new
PhabricatorDaemonEventListener
(
)
,
)
;
}
public
function
getRoutes
(
)
{
return
array
(
'/daemon/'
=>
array
(
''
=>
'PhabricatorDaemonConsoleController'
,
'task/(?P<id>[1-9]\d*)/'
=>
'PhabricatorWorkerTaskDetailController'
,
'log/'
=>
array
(
''
=>
'PhabricatorDaemonLogListController'
,
'(?P<id>[1-9]\d*)/'
=>
'PhabricatorDaemonLogViewController'
,
)
,
'bulk/'
=>
array
(
'(?:query/(?P<queryKey>[^/]+)/)?'
=>
'PhabricatorDaemonBulkJobListController'
,
'monitor/(?P<id>\d+)/'
=>
'PhabricatorDaemonBulkJobMonitorController'
,
'view/(?P<id>\d+)/'
=>
'PhabricatorDaemonBulkJobViewController'
,
)
,
)
,
)
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, Mar 23, 20:01 (1 w, 5 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1255347
Default Alt Text
PhabricatorDaemonsApplication.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment