Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96192489
DrydockLogListController.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, Dec 23, 15:15
Size
613 B
Mime Type
text/x-php
Expires
Wed, Dec 25, 15:15 (1 d, 19 h)
Engine
blob
Format
Raw Data
Handle
23141731
Attached To
rPH Phabricator
DrydockLogListController.php
View Options
<?php
final
class
DrydockLogListController
extends
DrydockLogController
{
private
$queryKey
;
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
DrydockLogSearchEngine
())
->
setNavigation
(
$this
->
buildSideNavView
());
return
$this
->
delegateToController
(
$controller
);
}
}
Event Timeline
Log In to Comment