Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101342050
PhabricatorCountdownListController.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, Feb 8, 00:34
Size
646 B
Mime Type
text/x-php
Expires
Mon, Feb 10, 00:34 (2 d)
Engine
blob
Format
Raw Data
Handle
24140055
Attached To
rPH Phabricator
PhabricatorCountdownListController.php
View Options
<?php
final
class
PhabricatorCountdownListController
extends
PhabricatorCountdownController
{
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
PhabricatorCountdownSearchEngine
())
->
setNavigation
(
$this
->
buildSideNavView
());
return
$this
->
delegateToController
(
$controller
);
}
}
Event Timeline
Log In to Comment