Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93234862
PhabricatorDashboardMovePanelController.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
Wed, Nov 27, 05:53
Size
2 KB
Mime Type
text/x-php
Expires
Fri, Nov 29, 05:53 (2 d)
Engine
blob
Format
Raw Data
Handle
22598040
Attached To
rPH Phabricator
PhabricatorDashboardMovePanelController.php
View Options
<?php
final
class
PhabricatorDashboardMovePanelController
extends
PhabricatorDashboardController
{
public
function
handleRequest
(
AphrontRequest
$request
)
{
$viewer
=
$request
->
getViewer
();
$id
=
$request
->
getURIData
(
'id'
);
$column_id
=
$request
->
getStr
(
'columnID'
);
$panel_phid
=
$request
->
getStr
(
'objectPHID'
);
$after_phid
=
$request
->
getStr
(
'afterPHID'
);
$before_phid
=
$request
->
getStr
(
'beforePHID'
);
$dashboard
=
id
(
new
PhabricatorDashboardQuery
())
->
setViewer
(
$viewer
)
->
withIDs
(
array
(
$id
))
->
needPanels
(
true
)
->
requireCapabilities
(
array
(
PhabricatorPolicyCapability
::
CAN_VIEW
,
PhabricatorPolicyCapability
::
CAN_EDIT
,
))
->
executeOne
();
if
(!
$dashboard
)
{
return
new
Aphront404Response
();
}
$panels
=
mpull
(
$dashboard
->
getPanels
(),
null
,
'getPHID'
);
$panel
=
idx
(
$panels
,
$panel_phid
);
if
(!
$panel
)
{
return
new
Aphront404Response
();
}
$layout_config
=
$dashboard
->
getLayoutConfigObject
();
$layout_config
->
removePanel
(
$panel_phid
);
$panel_location_grid
=
$layout_config
->
getPanelLocations
();
$column_phids
=
idx
(
$panel_location_grid
,
$column_id
,
array
());
$column_phids
=
array_values
(
$column_phids
);
if
(
$column_phids
)
{
$insert_at
=
0
;
foreach
(
$column_phids
as
$index
=>
$phid
)
{
if
(
$phid
===
$before_phid
)
{
$insert_at
=
$index
;
break
;
}
if
(
$phid
===
$after_phid
)
{
$insert_at
=
$index
+
1
;
break
;
}
}
$new_column_phids
=
$column_phids
;
array_splice
(
$new_column_phids
,
$insert_at
,
0
,
array
(
$panel_phid
));
}
else
{
$new_column_phids
=
array
(
0
=>
$panel_phid
);
}
$panel_location_grid
[
$column_id
]
=
$new_column_phids
;
$layout_config
->
setPanelLocations
(
$panel_location_grid
);
$dashboard
->
setLayoutConfigFromObject
(
$layout_config
);
$dashboard
->
save
();
return
id
(
new
AphrontAjaxResponse
())->
setContent
(
''
);
}
}
Event Timeline
Log In to Comment