Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F104122027
DrydockLogController.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, Mar 6, 14:33
Size
618 B
Mime Type
text/x-php
Expires
Sat, Mar 8, 14:33 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
24685549
Attached To
rPH Phabricator
DrydockLogController.php
View Options
<?php
abstract
class
DrydockLogController
extends
DrydockController
{
public
function
buildSideNavView
()
{
$nav
=
new
AphrontSideNavFilterView
();
$nav
->
setBaseURI
(
new
PhutilURI
(
$this
->
getApplicationURI
()));
id
(
new
DrydockLogSearchEngine
())
->
setViewer
(
$this
->
getRequest
()->
getUser
())
->
addNavigationItems
(
$nav
->
getMenu
());
$nav
->
selectFilter
(
null
);
return
$nav
;
}
protected
function
buildApplicationCrumbs
()
{
$crumbs
=
parent
::
buildApplicationCrumbs
();
$crumbs
->
addTextCrumb
(
pht
(
'Logs'
),
$this
->
getApplicationURI
(
'log/'
));
return
$crumbs
;
}
}
Event Timeline
Log In to Comment