Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92730827
PassphraseCredentialListController.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, Nov 23, 05:37
Size
589 B
Mime Type
text/x-php
Expires
Mon, Nov 25, 05:37 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22499704
Attached To
rPH Phabricator
PassphraseCredentialListController.php
View Options
<?php
final
class
PassphraseCredentialListController
extends
PassphraseController
{
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
PassphraseCredentialSearchEngine
())
->
setNavigation
(
$this
->
buildSideNavView
());
return
$this
->
delegateToController
(
$controller
);
}
}
Event Timeline
Log In to Comment