Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F109979197
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, Apr 24, 05:27
Size
1 KB
Mime Type
text/x-php
Expires
Sat, Apr 26, 05:27 (2 d)
Engine
blob
Format
Raw Data
Handle
25724426
Attached To
rPH Phabricator
DrydockLeaseController.php
View Options
<?php
abstract
class
DrydockLeaseController
extends
DrydockController
{
private
$resource
;
public
function
setResource
(
$resource
)
{
$this
->
resource
=
$resource
;
return
$this
;
}
public
function
getResource
()
{
return
$this
->
resource
;
}
public
function
buildSideNavView
()
{
$nav
=
new
AphrontSideNavFilterView
();
$nav
->
setBaseURI
(
new
PhutilURI
(
$this
->
getApplicationURI
()));
$engine
=
id
(
new
DrydockLeaseSearchEngine
())
->
setViewer
(
$this
->
getRequest
()->
getUser
());
if
(
$this
->
getResource
())
{
$engine
->
setResource
(
$this
->
getResource
());
}
$engine
->
addNavigationItems
(
$nav
->
getMenu
());
$nav
->
selectFilter
(
null
);
return
$nav
;
}
protected
function
buildApplicationCrumbs
()
{
$crumbs
=
parent
::
buildApplicationCrumbs
();
$resource
=
$this
->
getResource
();
if
(
$resource
)
{
$id
=
$resource
->
getID
();
$crumbs
->
addTextCrumb
(
pht
(
'Resources'
),
$this
->
getApplicationURI
(
'resource/'
));
$crumbs
->
addTextCrumb
(
$resource
->
getResourceName
(),
$this
->
getApplicationURI
(
"resource/{$id}/"
));
$crumbs
->
addTextCrumb
(
pht
(
'Leases'
),
$this
->
getApplicationURI
(
"resource/{$id}/leases/"
));
}
else
{
$crumbs
->
addTextCrumb
(
pht
(
'Leases'
),
$this
->
getApplicationURI
(
'lease/'
));
}
return
$crumbs
;
}
}
Event Timeline
Log In to Comment