Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F107060326
PhabricatorBadgesListController.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
Fri, Apr 4, 02:58
Size
564 B
Mime Type
text/x-php
Expires
Sun, Apr 6, 02:58 (2 d)
Engine
blob
Format
Raw Data
Handle
25342150
Attached To
rPH Phabricator
PhabricatorBadgesListController.php
View Options
<?php
final
class
PhabricatorBadgesListController
extends
PhabricatorBadgesController
{
public
function
shouldAllowPublic
()
{
return
true
;
}
public
function
handleRequest
(
AphrontRequest
$request
)
{
return
id
(
new
PhabricatorBadgesSearchEngine
())
->
setController
(
$this
)
->
buildResponse
();
}
protected
function
buildApplicationCrumbs
()
{
$crumbs
=
parent
::
buildApplicationCrumbs
();
id
(
new
PhabricatorBadgesEditEngine
())
->
setViewer
(
$this
->
getViewer
())
->
addActionToCrumbs
(
$crumbs
);
return
$crumbs
;
}
}
Event Timeline
Log In to Comment