Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96684211
PhabricatorAuditListController.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
Sun, Dec 29, 19:48
Size
676 B
Mime Type
text/x-php
Expires
Tue, Dec 31, 19:48 (2 d)
Engine
blob
Format
Raw Data
Handle
23225404
Attached To
rPH Phabricator
PhabricatorAuditListController.php
View Options
<?php
final
class
PhabricatorAuditListController
extends
PhabricatorAuditController
{
private
$queryKey
;
private
$name
;
private
$filterStatus
;
public
function
shouldAllowPublic
()
{
return
true
;
}
public
function
willProcessRequest
(
array
$data
)
{
$this
->
queryKey
=
idx
(
$data
,
'queryKey'
);
}
public
function
processRequest
()
{
$request
=
$this
->
getRequest
();
$controller
=
id
(
new
PhabricatorApplicationSearchController
(
$request
))
->
setQueryKey
(
$this
->
queryKey
)
->
setSearchEngine
(
new
PhabricatorCommitSearchEngine
())
->
setNavigation
(
$this
->
buildSideNavView
());
return
$this
->
delegateToController
(
$controller
);
}
}
Event Timeline
Log In to Comment