Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93636569
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
Sat, Nov 30, 08:19
Size
423 B
Mime Type
text/x-php
Expires
Mon, Dec 2, 08:19 (1 d, 20 h)
Engine
blob
Format
Raw Data
Handle
22681062
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