Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102068482
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
Sun, Feb 16, 19:09
Size
569 B
Mime Type
text/x-php
Expires
Tue, Feb 18, 19:09 (2 d)
Engine
blob
Format
Raw Data
Handle
24274632
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
()
{
$controller
=
id
(
new
PhabricatorApplicationSearchController
())
->
setQueryKey
(
$this
->
queryKey
)
->
setSearchEngine
(
new
DrydockLogSearchEngine
())
->
setNavigation
(
$this
->
buildSideNavView
());
return
$this
->
delegateToController
(
$controller
);
}
}
Event Timeline
Log In to Comment