Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98605378
PhabricatorGuideController.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
Tue, Jan 14, 19:29
Size
593 B
Mime Type
text/x-php
Expires
Thu, Jan 16, 19:29 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23604366
Attached To
rPH Phabricator
PhabricatorGuideController.php
View Options
<?php
abstract
class
PhabricatorGuideController
extends
PhabricatorController
{
public
function
buildSideNavView
(
$filter
=
null
,
$for_app
=
false
)
{
$nav
=
new
AphrontSideNavFilterView
();
$nav
->
setBaseURI
(
new
PhutilURI
(
$this
->
getApplicationURI
()));
$nav
->
addLabel
(
pht
(
'Guides'
));
$nav
->
addFilter
(
'/'
,
pht
(
'Welcome'
));
$nav
->
addFilter
(
'install/'
,
pht
(
'Installation Guide'
));
$nav
->
addFilter
(
'quickstart/'
,
pht
(
'Quick Start Guide'
));
return
$nav
;
}
public
function
buildApplicationMenu
()
{
return
$this
->
buildSideNavView
(
null
,
true
)->
getMenu
();
}
}
Event Timeline
Log In to Comment