Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98257973
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
Sat, Jan 11, 12:58
Size
613 B
Mime Type
text/x-php
Expires
Mon, Jan 13, 12:58 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23518178
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