Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98251374
DrydockLeaseController.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, 11:36
Size
623 B
Mime Type
text/x-php
Expires
Mon, Jan 13, 11:36 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23541329
Attached To
rPH Phabricator
DrydockLeaseController.php
View Options
<?php
abstract
class
DrydockLeaseController
extends
DrydockController
{
public
function
buildSideNavView
()
{
$nav
=
new
AphrontSideNavFilterView
();
$nav
->
setBaseURI
(
new
PhutilURI
(
$this
->
getApplicationURI
()));
id
(
new
DrydockLeaseSearchEngine
())
->
setViewer
(
$this
->
getRequest
()->
getUser
())
->
addNavigationItems
(
$nav
->
getMenu
());
$nav
->
selectFilter
(
null
);
return
$nav
;
}
public
function
buildApplicationCrumbs
()
{
$crumbs
=
parent
::
buildApplicationCrumbs
();
$crumbs
->
addTextCrumb
(
pht
(
'Leases'
),
$this
->
getApplicationURI
(
'lease/'
));
return
$crumbs
;
}
}
Event Timeline
Log In to Comment