Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F99061677
ManiphestController.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
Sat, Jan 18, 19:48
Size
1 KB
Mime Type
text/x-php
Expires
Mon, Jan 20, 19:48 (2 d)
Engine
blob
Format
Raw Data
Handle
23699312
Attached To
rPH Phabricator
ManiphestController.php
View Options
<?php
abstract
class
ManiphestController
extends
PhabricatorController
{
public
function
buildApplicationMenu
()
{
return
$this
->
buildSideNavView
(
true
)->
getMenu
();
}
public
function
buildSideNavView
(
$for_app
=
false
)
{
$user
=
$this
->
getRequest
()->
getUser
();
$nav
=
new
AphrontSideNavFilterView
();
$nav
->
setBaseURI
(
new
PhutilURI
(
$this
->
getApplicationURI
()));
if
(
$for_app
)
{
$nav
->
addFilter
(
'create'
,
pht
(
'Create Task'
));
}
id
(
new
ManiphestTaskSearchEngine
())
->
setViewer
(
$user
)
->
addNavigationItems
(
$nav
->
getMenu
());
$nav
->
addLabel
(
pht
(
'Reports'
));
$nav
->
addFilter
(
'report'
,
pht
(
'Reports'
));
$nav
->
selectFilter
(
null
);
return
$nav
;
}
protected
function
buildApplicationCrumbs
()
{
$crumbs
=
parent
::
buildApplicationCrumbs
();
$crumbs
->
addAction
(
id
(
new
PHUIListItemView
())
->
setName
(
pht
(
'Create Task'
))
->
setHref
(
$this
->
getApplicationURI
(
'task/create/'
))
->
setIcon
(
'create'
));
return
$crumbs
;
}
protected
function
renderSingleTask
(
ManiphestTask
$task
)
{
$user
=
$this
->
getRequest
()->
getUser
();
$phids
=
$task
->
getProjectPHIDs
();
if
(
$task
->
getOwnerPHID
())
{
$phids
[]
=
$task
->
getOwnerPHID
();
}
$handles
=
id
(
new
PhabricatorHandleQuery
())
->
setViewer
(
$user
)
->
withPHIDs
(
$phids
)
->
execute
();
$view
=
id
(
new
ManiphestTaskListView
())
->
setUser
(
$user
)
->
setShowSubpriorityControls
(
true
)
->
setShowBatchControls
(
true
)
->
setHandles
(
$handles
)
->
setTasks
(
array
(
$task
));
return
$view
;
}
}
Event Timeline
Log In to Comment