Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F120098637
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
Tue, Jul 1, 22:39
Size
558 B
Mime Type
text/x-php
Expires
Thu, Jul 3, 22:39 (2 d)
Engine
blob
Format
Raw Data
Handle
27138389
Attached To
rPH Phabricator
PhabricatorPasteListController.php
View Options
<?php
final
class
PhabricatorPasteListController
extends
PhabricatorPasteController
{
public
function
shouldAllowPublic
()
{
return
true
;
}
public
function
handleRequest
(
AphrontRequest
$request
)
{
return
id
(
new
PhabricatorPasteSearchEngine
())
->
setController
(
$this
)
->
buildResponse
();
}
protected
function
buildApplicationCrumbs
()
{
$crumbs
=
parent
::
buildApplicationCrumbs
();
id
(
new
PhabricatorPasteEditEngine
())
->
setViewer
(
$this
->
getViewer
())
->
addActionToCrumbs
(
$crumbs
);
return
$crumbs
;
}
}
Event Timeline
Log In to Comment