Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F114981389
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
Thu, May 29, 04:51
Size
623 B
Mime Type
text/x-php
Expires
Sat, May 31, 04:51 (2 d)
Engine
blob
Format
Raw Data
Handle
26438825
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