Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F99216866
PhabricatorFeedListController.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
Wed, Jan 22, 11:48
Size
584 B
Mime Type
text/x-php
Expires
Fri, Jan 24, 11:48 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23741645
Attached To
rPH Phabricator
PhabricatorFeedListController.php
View Options
<?php
final
class
PhabricatorFeedListController
extends
PhabricatorFeedController
{
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
PhabricatorFeedSearchEngine
())
->
setNavigation
(
$this
->
buildSideNavView
());
return
$this
->
delegateToController
(
$controller
);
}
}
Event Timeline
Log In to Comment