Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F97599262
PhabricatorDashboardHistoryController.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, Jan 5, 14:47
Size
1 KB
Mime Type
text/x-php
Expires
Tue, Jan 7, 14:47 (2 d)
Engine
blob
Format
Raw Data
Handle
23359477
Attached To
rPH Phabricator
PhabricatorDashboardHistoryController.php
View Options
<?php
final
class
PhabricatorDashboardHistoryController
extends
PhabricatorDashboardController
{
private
$id
;
public
function
willProcessRequest
(
array
$data
)
{
$this
->
id
=
$data
[
'id'
];
}
public
function
processRequest
()
{
$request
=
$this
->
getRequest
();
$viewer
=
$request
->
getUser
();
$id
=
$this
->
id
;
$dashboard_view_uri
=
$this
->
getApplicationURI
(
'view/'
.
$id
.
'/'
);
$dashboard_manage_uri
=
$this
->
getApplicationURI
(
'manage/'
.
$id
.
'/'
);
$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
()),
$dashboard_view_uri
);
$crumbs
->
addTextCrumb
(
pht
(
'Manage'
),
$dashboard_manage_uri
);
$crumbs
->
addTextCrumb
(
pht
(
'History'
));
$timeline
=
$this
->
buildTransactions
(
$dashboard
);
return
$this
->
buildApplicationPage
(
array
(
$crumbs
,
$timeline
,
),
array
(
'title'
=>
$title
,
));
}
private
function
buildTransactions
(
PhabricatorDashboard
$dashboard
)
{
$viewer
=
$this
->
getRequest
()->
getUser
();
$xactions
=
id
(
new
PhabricatorDashboardTransactionQuery
())
->
setViewer
(
$viewer
)
->
withObjectPHIDs
(
array
(
$dashboard
->
getPHID
()))
->
execute
();
$timeline
=
id
(
new
PhabricatorApplicationTransactionView
())
->
setUser
(
$viewer
)
->
setShouldTerminate
(
true
)
->
setObjectPHID
(
$dashboard
->
getPHID
())
->
setTransactions
(
$xactions
);
return
$timeline
;
}
}
Event Timeline
Log In to Comment