Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93013053
PhabricatorConduitListController.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
Mon, Nov 25, 14:12
Size
594 B
Mime Type
text/x-php
Expires
Wed, Nov 27, 14:12 (2 d)
Engine
blob
Format
Raw Data
Handle
22557635
Attached To
rPH Phabricator
PhabricatorConduitListController.php
View Options
<?php
final
class
PhabricatorConduitListController
extends
PhabricatorConduitController
{
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
PhabricatorConduitSearchEngine
())
->
setNavigation
(
$this
->
buildSideNavView
());
return
$this
->
delegateToController
(
$controller
);
}
}
Event Timeline
Log In to Comment