Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F3295215
PhabricatorDashboardPanelRenderController.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
2 KB
Referenced Files
None
Subscribers
None
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
(
)
;
}
$engine
=
id
(
new
PhabricatorDashboardPanelRenderingEngine
(
)
)
->
setViewer
(
$viewer
)
->
setPanel
(
$panel
)
->
setPanelPHID
(
$panel
->
getPHID
(
)
)
->
setParentPanelPHIDs
(
$parent_phids
)
->
setMovable
(
$request
->
getBool
(
'movable'
)
)
->
setHeaderMode
(
$request
->
getStr
(
'headerMode'
)
)
->
setPanelKey
(
$request
->
getStr
(
'panelKey'
)
)
;
$context_phid
=
$request
->
getStr
(
'contextPHID'
)
;
if
(
$context_phid
)
{
$context
=
id
(
new
PhabricatorObjectQuery
(
)
)
->
setViewer
(
$viewer
)
->
withPHIDs
(
array
(
$context_phid
)
)
->
executeOne
(
)
;
if
(
!
$context
)
{
return
new
Aphront404Response
(
)
;
}
$engine
->
setContextObject
(
$context
)
;
}
$rendered_panel
=
$engine
->
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
)
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Thu, Mar 27, 01:31 (1 w, 3 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1223931
Default Alt Text
PhabricatorDashboardPanelRenderController.php (2 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment