Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101987834
PhabricatorFlagListController.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 15, 21:55
Size
628 B
Mime Type
text/x-php
Expires
Mon, Feb 17, 21:55 (2 d)
Engine
blob
Format
Raw Data
Handle
24256993
Attached To
rPH Phabricator
PhabricatorFlagListController.php
View Options
<?php
final
class
PhabricatorFlagListController
extends
PhabricatorFlagController
{
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
PhabricatorFlagSearchEngine
())
->
setNavigation
(
$this
->
buildSideNavView
());
return
$this
->
delegateToController
(
$controller
);
}
}
Event Timeline
Log In to Comment