Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102039663
PhabricatorProjectListController.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
Sun, Feb 16, 12:00
Size
568 B
Mime Type
text/x-php
Expires
Tue, Feb 18, 12:00 (2 d)
Engine
blob
Format
Raw Data
Handle
24258099
Attached To
rPH Phabricator
PhabricatorProjectListController.php
View Options
<?php
final
class
PhabricatorProjectListController
extends
PhabricatorProjectController
{
public
function
shouldAllowPublic
()
{
return
true
;
}
public
function
handleRequest
(
AphrontRequest
$request
)
{
return
id
(
new
PhabricatorProjectSearchEngine
())
->
setController
(
$this
)
->
buildResponse
();
}
protected
function
buildApplicationCrumbs
()
{
$crumbs
=
parent
::
buildApplicationCrumbs
();
id
(
new
PhabricatorProjectEditEngine
())
->
setViewer
(
$this
->
getViewer
())
->
addActionToCrumbs
(
$crumbs
);
return
$crumbs
;
}
}
Event Timeline
Log In to Comment