Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F105873995
PhabricatorDashboardAddPanelController.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
Thu, Mar 20, 11:22
Size
3 KB
Mime Type
text/x-php
Expires
Sat, Mar 22, 11:22 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
25063871
Attached To
rPH Phabricator
PhabricatorDashboardAddPanelController.php
View Options
<?php
final
class
PhabricatorDashboardAddPanelController
extends
PhabricatorDashboardController
{
public
function
handleRequest
(
AphrontRequest
$request
)
{
$viewer
=
$request
->
getViewer
();
$id
=
$request
->
getURIData
(
'id'
);
$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
();
}
$redirect_uri
=
$this
->
getApplicationURI
(
'arrange/'
.
$dashboard
->
getID
().
'/'
);
$v_panel
=
head
(
$request
->
getArr
(
'panel'
));
$e_panel
=
true
;
$errors
=
array
();
if
(
$request
->
isFormPost
())
{
if
(
strlen
(
$v_panel
))
{
$panel
=
id
(
new
PhabricatorDashboardPanelQuery
())
->
setViewer
(
$viewer
)
->
withIDs
(
array
(
$v_panel
))
->
executeOne
();
if
(!
$panel
)
{
$errors
[]
=
pht
(
'Not a valid panel.'
);
$e_panel
=
pht
(
'Invalid'
);
}
$on_dashboard
=
$dashboard
->
getPanels
();
$on_ids
=
mpull
(
$on_dashboard
,
null
,
'getID'
);
if
(
array_key_exists
(
$v_panel
,
$on_ids
))
{
$p_name
=
$panel
->
getName
();
$errors
[]
=
pht
(
'Panel "%s" already exists on dashboard.'
,
$p_name
);
$e_panel
=
pht
(
'Invalid'
);
}
}
else
{
$errors
[]
=
pht
(
'Select a panel to add.'
);
$e_panel
=
pht
(
'Required'
);
}
if
(!
$errors
)
{
PhabricatorDashboardTransactionEditor
::
addPanelToDashboard
(
$viewer
,
PhabricatorContentSource
::
newFromRequest
(
$request
),
$panel
,
$dashboard
,
$request
->
getInt
(
'column'
,
0
));
return
id
(
new
AphrontRedirectResponse
())->
setURI
(
$redirect_uri
);
}
}
$panels
=
id
(
new
PhabricatorDashboardPanelQuery
())
->
setViewer
(
$viewer
)
->
withArchived
(
false
)
->
execute
();
if
(!
$panels
)
{
return
$this
->
newDialog
()
->
setTitle
(
pht
(
'No Panels Exist Yet'
))
->
appendParagraph
(
pht
(
'You have not created any dashboard panels yet, so you can not '
.
'add an existing panel.'
))
->
appendParagraph
(
pht
(
'Instead, add a new panel.'
))
->
addCancelButton
(
$redirect_uri
);
}
$form
=
id
(
new
AphrontFormView
())
->
setUser
(
$viewer
)
->
addHiddenInput
(
'column'
,
$request
->
getInt
(
'column'
))
->
appendRemarkupInstructions
(
pht
(
'Choose a panel to add to this dashboard:'
))
->
appendChild
(
id
(
new
AphrontFormTokenizerControl
())
->
setUser
(
$this
->
getViewer
())
->
setDatasource
(
new
PhabricatorDashboardPanelDatasource
())
->
setLimit
(
1
)
->
setName
(
'panel'
)
->
setLabel
(
pht
(
'Panel'
)));
return
$this
->
newDialog
()
->
setTitle
(
pht
(
'Add Panel'
))
->
setErrors
(
$errors
)
->
appendChild
(
$form
->
buildLayoutView
())
->
addCancelButton
(
$redirect_uri
)
->
addSubmitButton
(
pht
(
'Add Panel'
));
}
}
Event Timeline
Log In to Comment