Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F112652077
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
Mon, May 12, 00:09
Size
615 B
Mime Type
text/x-php
Expires
Wed, May 14, 00:09 (2 d)
Engine
blob
Format
Raw Data
Handle
26079864
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
;
}
public
function
buildApplicationCrumbs
()
{
$crumbs
=
parent
::
buildApplicationCrumbs
();
$crumbs
->
addTextCrumb
(
pht
(
'Logs'
),
$this
->
getApplicationURI
(
'log/'
));
return
$crumbs
;
}
}
Event Timeline
Log In to Comment