Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92692778
PhabricatorAuditController.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
Fri, Nov 22, 20:14
Size
543 B
Mime Type
text/x-php
Expires
Sun, Nov 24, 20:14 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22488057
Attached To
rPH Phabricator
PhabricatorAuditController.php
View Options
<?php
abstract
class
PhabricatorAuditController
extends
PhabricatorController
{
public
function
buildSideNavView
()
{
$user
=
$this
->
getRequest
()->
getUser
();
$nav
=
new
AphrontSideNavFilterView
();
$nav
->
setBaseURI
(
new
PhutilURI
(
$this
->
getApplicationURI
()));
id
(
new
PhabricatorCommitSearchEngine
())
->
setViewer
(
$user
)
->
addNavigationItems
(
$nav
->
getMenu
());
$nav
->
selectFilter
(
null
);
return
$nav
;
}
public
function
buildApplicationMenu
()
{
return
$this
->
buildSideNavView
()->
getMenu
();
}
}
Event Timeline
Log In to Comment