Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F106764381
PhabricatorHomeQuickCreateController.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
Mon, Mar 31, 07:07
Size
816 B
Mime Type
text/x-php
Expires
Wed, Apr 2, 07:07 (7 h, 6 m)
Engine
blob
Format
Raw Data
Handle
25256634
Attached To
rPH Phabricator
PhabricatorHomeQuickCreateController.php
View Options
<?php
final
class
PhabricatorHomeQuickCreateController
extends
PhabricatorHomeController
{
public
function
processRequest
()
{
$viewer
=
$this
->
getRequest
()->
getUser
();
$items
=
$this
->
getCurrentApplication
()->
loadAllQuickCreateItems
(
$viewer
);
$list
=
id
(
new
PHUIObjectItemListView
())
->
setUser
(
$viewer
);
foreach
(
$items
as
$item
)
{
$list
->
addItem
(
id
(
new
PHUIObjectItemView
())
->
setHeader
(
$item
->
getName
())
->
setWorkflow
(
$item
->
getWorkflow
())
->
setHref
(
$item
->
getHref
()));
}
$crumbs
=
$this
->
buildApplicationCrumbs
();
$crumbs
->
addTextCrumb
(
pht
(
'Quick Create'
));
return
$this
->
buildApplicationPage
(
array
(
$crumbs
,
$list
,
),
array
(
'title'
=>
pht
(
'Quick Create'
),
));
}
}
Event Timeline
Log In to Comment