Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92657259
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
Fri, Nov 22, 11:29
Size
584 B
Mime Type
text/x-php
Expires
Sun, Nov 24, 11:29 (2 d)
Engine
blob
Format
Raw Data
Handle
22479526
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
()
{
$controller
=
id
(
new
PhabricatorApplicationSearchController
())
->
setQueryKey
(
$this
->
queryKey
)
->
setSearchEngine
(
new
PhabricatorFlagSearchEngine
())
->
setNavigation
(
$this
->
buildSideNavView
());
return
$this
->
delegateToController
(
$controller
);
}
}
Event Timeline
Log In to Comment