Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91177931
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
Fri, Nov 8, 16:47
Size
423 B
Mime Type
text/x-php
Expires
Sun, Nov 10, 16:47 (2 d)
Engine
blob
Format
Raw Data
Handle
22213152
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
(
'Daemons'
);
$nav
->
addFilter
(
'/'
,
'Console'
);
$nav
->
addFilter
(
'log'
,
'All Daemons'
);
$nav
->
addFilter
(
'log/combined'
,
'Combined Log'
);
return
$nav
;
}
}
Event Timeline
Log In to Comment