Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96238159
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
Tue, Dec 24, 01:22
Size
564 B
Mime Type
text/x-php
Expires
Thu, Dec 26, 01:22 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23142020
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