Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98224384
PholioController.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, Jan 11, 05:36
Size
426 B
Mime Type
text/x-php
Expires
Mon, Jan 13, 05:36 (2 d)
Engine
blob
Format
Raw Data
Handle
23535523
Attached To
rPH Phabricator
PholioController.php
View Options
<?php
/**
* @group pholio
*/
abstract
class
PholioController
extends
PhabricatorController
{
public
function
buildSideNav
()
{
$nav
=
new
AphrontSideNavFilterView
();
$nav
->
setBaseURI
(
new
PhutilURI
(
$this
->
getApplicationURI
()));
$nav
->
addLabel
(
'Create'
);
$nav
->
addFilter
(
'new'
,
pht
(
'Create Mock'
));
$nav
->
addLabel
(
'Mocks'
);
$nav
->
addFilter
(
'view/all'
,
pht
(
'All Mocks'
));
return
$nav
;
}
}
Event Timeline
Log In to Comment