Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F109423751
PhabricatorDashboardViewController.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, Apr 21, 21:58
Size
3 KB
Mime Type
text/x-php
Expires
Wed, Apr 23, 21:58 (2 d)
Engine
blob
Format
Raw Data
Handle
25724919
Attached To
rPH Phabricator
PhabricatorDashboardViewController.php
View Options
<?php
final
class
PhabricatorDashboardViewController
extends
PhabricatorDashboardController
{
private
$id
;
public
function
willProcessRequest
(
array
$data
)
{
$this
->
id
=
$data
[
'id'
];
}
public
function
processRequest
()
{
$request
=
$this
->
getRequest
();
$viewer
=
$request
->
getUser
();
$dashboard
=
id
(
new
PhabricatorDashboardQuery
())
->
setViewer
(
$viewer
)
->
withIDs
(
array
(
$this
->
id
))
->
executeOne
();
if
(!
$dashboard
)
{
return
new
Aphront404Response
();
}
$title
=
$dashboard
->
getName
();
$crumbs
=
$this
->
buildApplicationCrumbs
();
$crumbs
->
addTextCrumb
(
pht
(
'Dashboard %d'
,
$dashboard
->
getID
()));
$header
=
$this
->
buildHeaderView
(
$dashboard
);
$actions
=
$this
->
buildActionView
(
$dashboard
);
$properties
=
$this
->
buildPropertyView
(
$dashboard
);
$timeline
=
$this
->
buildTransactions
(
$dashboard
);
$properties
->
setActionList
(
$actions
);
$box
=
id
(
new
PHUIObjectBoxView
())
->
setHeader
(
$header
)
->
addPropertyList
(
$properties
);
return
$this
->
buildApplicationPage
(
array
(
$crumbs
,
$box
,
$timeline
,
),
array
(
'title'
=>
$title
,
'device'
=>
true
,
));
}
private
function
buildHeaderView
(
PhabricatorDashboard
$dashboard
)
{
$viewer
=
$this
->
getRequest
()->
getUser
();
return
id
(
new
PHUIHeaderView
())
->
setUser
(
$viewer
)
->
setHeader
(
$dashboard
->
getName
())
->
setPolicyObject
(
$dashboard
);
}
private
function
buildActionView
(
PhabricatorDashboard
$dashboard
)
{
$viewer
=
$this
->
getRequest
()->
getUser
();
$id
=
$dashboard
->
getID
();
$actions
=
id
(
new
PhabricatorActionListView
())
->
setObjectURI
(
$this
->
getApplicationURI
(
'view/'
.
$dashboard
->
getID
().
'/'
))
->
setUser
(
$viewer
);
$can_edit
=
PhabricatorPolicyFilter
::
hasCapability
(
$viewer
,
$dashboard
,
PhabricatorPolicyCapability
::
CAN_EDIT
);
$actions
->
addAction
(
id
(
new
PhabricatorActionView
())
->
setName
(
pht
(
'Edit Dashboard'
))
->
setIcon
(
'edit'
)
->
setHref
(
$this
->
getApplicationURI
(
"edit/{$id}/"
))
->
setDisabled
(!
$can_edit
)
->
setWorkflow
(!
$can_edit
));
return
$actions
;
}
private
function
buildPropertyView
(
PhabricatorDashboard
$dashboard
)
{
$viewer
=
$this
->
getRequest
()->
getUser
();
$properties
=
id
(
new
PHUIPropertyListView
())
->
setUser
(
$viewer
)
->
setObject
(
$dashboard
);
$descriptions
=
PhabricatorPolicyQuery
::
renderPolicyDescriptions
(
$viewer
,
$dashboard
);
$properties
->
addProperty
(
pht
(
'Editable By'
),
$descriptions
[
PhabricatorPolicyCapability
::
CAN_EDIT
]);
return
$properties
;
}
private
function
buildTransactions
(
PhabricatorDashboard
$dashboard
)
{
$viewer
=
$this
->
getRequest
()->
getUser
();
$xactions
=
id
(
new
PhabricatorDashboardTransactionQuery
())
->
setViewer
(
$viewer
)
->
withObjectPHIDs
(
array
(
$dashboard
->
getPHID
()))
->
execute
();
$engine
=
id
(
new
PhabricatorMarkupEngine
())
->
setViewer
(
$viewer
);
$timeline
=
id
(
new
PhabricatorApplicationTransactionView
())
->
setUser
(
$viewer
)
->
setObjectPHID
(
$dashboard
->
getPHID
())
->
setTransactions
(
$xactions
);
return
$timeline
;
}
}
Event Timeline
Log In to Comment