Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93069741
DivinerAtomListController.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, 23:37
Size
591 B
Mime Type
text/x-php
Expires
Wed, Nov 27, 23:37 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22567086
Attached To
rPH Phabricator
DivinerAtomListController.php
View Options
<?php
final
class
DivinerAtomListController
extends
DivinerController
{
private
$key
;
public
function
shouldAllowPublic
()
{
return
true
;
}
public
function
willProcessRequest
(
array
$data
)
{
$this
->
key
=
idx
(
$data
,
'key'
,
'all'
);
}
public
function
processRequest
()
{
$request
=
$this
->
getRequest
();
$controller
=
id
(
new
PhabricatorApplicationSearchController
())
->
setQueryKey
(
$this
->
key
)
->
setSearchEngine
(
new
DivinerAtomSearchEngine
())
->
setNavigation
(
$this
->
buildSideNavView
());
return
$this
->
delegateToController
(
$controller
);
}
}
Event Timeline
Log In to Comment