Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93862170
PhabricatorMailingListsListController.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, Dec 2, 02:23
Size
653 B
Mime Type
text/x-php
Expires
Wed, Dec 4, 02:23 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22716003
Attached To
rPH Phabricator
PhabricatorMailingListsListController.php
View Options
<?php
final
class
PhabricatorMailingListsListController
extends
PhabricatorMailingListsController
{
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
PhabricatorMailingListSearchEngine
())
->
setNavigation
(
$this
->
buildSideNavView
());
return
$this
->
delegateToController
(
$controller
);
}
}
Event Timeline
Log In to Comment