Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F114380541
PhabricatorDaemonController.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
Sun, May 25, 12:47
Size
443 B
Mime Type
text/x-php
Expires
Tue, May 27, 12:47 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
26390729
Attached To
rPH Phabricator
PhabricatorDaemonController.php
View Options
<?php
abstract
class
PhabricatorDaemonController
extends
PhabricatorController
{
protected
function
buildSideNavView
()
{
$nav
=
new
AphrontSideNavFilterView
();
$nav
->
setBaseURI
(
new
PhutilURI
(
$this
->
getApplicationURI
()));
$nav
->
addLabel
(
pht
(
'Daemons'
));
$nav
->
addFilter
(
'/'
,
pht
(
'Console'
));
$nav
->
addFilter
(
'log'
,
pht
(
'All Daemons'
));
$nav
->
addFilter
(
'log/combined'
,
pht
(
'Combined Log'
));
return
$nav
;
}
}
Event Timeline
Log In to Comment