Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F447940
PhabricatorDaemonsApplication.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
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 Phabricator Daemons'
);
}
public
function
getBaseURI
()
{
return
'/daemon/'
;
}
public
function
getTitleGlyph
()
{
return
"
\x
E2
\x
98
\x
AF"
;
}
public
function
getIconName
()
{
return
'daemon'
;
}
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'
,
'task/(?P<id>[1-9]
\d
*)/(?P<action>[^/]+)/'
=>
'PhabricatorWorkerTaskUpdateController'
,
'log/'
=>
array
(
''
=>
'PhabricatorDaemonLogListController'
,
'combined/'
=>
'PhabricatorDaemonCombinedLogController'
,
'(?P<id>[1-9]
\d
*)/'
=>
'PhabricatorDaemonLogViewController'
,
),
'event/(?P<id>[1-9]
\d
*)/'
=>
'PhabricatorDaemonLogEventViewController'
,
),
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, May 4, 5:38 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
66199
Default Alt Text
PhabricatorDaemonsApplication.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment