Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F97578457
PhabricatorDashboardPanelRenderController.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, 10:16
Size
1 KB
Mime Type
text/x-php
Expires
Tue, Jan 7, 10:16 (2 d)
Engine
blob
Format
Raw Data
Handle
23430219
Attached To
rPH Phabricator
PhabricatorDashboardPanelRenderController.php
View Options
<?php
final
class
PhabricatorDashboardPanelRenderController
extends
PhabricatorDashboardController
{
public
function
shouldAllowPublic
()
{
return
true
;
}
public
function
handleRequest
(
AphrontRequest
$request
)
{
$viewer
=
$request
->
getViewer
();
$id
=
$request
->
getURIData
(
'id'
);
$panel
=
id
(
new
PhabricatorDashboardPanelQuery
())
->
setViewer
(
$viewer
)
->
withIDs
(
array
(
$id
))
->
executeOne
();
if
(!
$panel
)
{
return
new
Aphront404Response
();
}
if
(
$request
->
isAjax
())
{
$parent_phids
=
$request
->
getStrList
(
'parentPanelPHIDs'
,
null
);
if
(
$parent_phids
===
null
)
{
throw
new
Exception
(
pht
(
'Required parameter `parentPanelPHIDs` is not present in '
.
'request.'
));
}
}
else
{
$parent_phids
=
array
();
}
$rendered_panel
=
id
(
new
PhabricatorDashboardPanelRenderingEngine
())
->
setViewer
(
$viewer
)
->
setPanel
(
$panel
)
->
setPanelPHID
(
$panel
->
getPHID
())
->
setParentPanelPHIDs
(
$parent_phids
)
->
setHeaderMode
(
$request
->
getStr
(
'headerMode'
))
->
setDashboardID
(
$request
->
getInt
(
'dashboardID'
))
->
renderPanel
();
if
(
$request
->
isAjax
())
{
return
id
(
new
AphrontAjaxResponse
())
->
setContent
(
array
(
'panelMarkup'
=>
hsprintf
(
'%s'
,
$rendered_panel
),
));
}
$crumbs
=
$this
->
buildApplicationCrumbs
()
->
addTextCrumb
(
pht
(
'Panels'
),
$this
->
getApplicationURI
(
'panel/'
))
->
addTextCrumb
(
$panel
->
getMonogram
(),
'/'
.
$panel
->
getMonogram
())
->
addTextCrumb
(
pht
(
'Standalone View'
))
->
setBorder
(
true
);
$view
=
id
(
new
PHUIBoxView
())
->
addClass
(
'dashboard-view'
)
->
appendChild
(
$rendered_panel
);
return
$this
->
newPage
()
->
setTitle
(
array
(
pht
(
'Panel'
),
$panel
->
getName
()))
->
setCrumbs
(
$crumbs
)
->
appendChild
(
$view
);
}
}
Event Timeline
Log In to Comment