Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F123373210
PhabricatorPasteListController.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, Jul 26, 22:25
Size
588 B
Mime Type
text/x-php
Expires
Mon, Jul 28, 22:25 (2 d)
Engine
blob
Format
Raw Data
Handle
27669133
Attached To
rPH Phabricator
PhabricatorPasteListController.php
View Options
<?php
final
class
PhabricatorPasteListController
extends
PhabricatorPasteController
{
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
PhabricatorPasteSearchEngine
())
->
setNavigation
(
$this
->
buildSideNavView
());
return
$this
->
delegateToController
(
$controller
);
}
}
Event Timeline
Log In to Comment