Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F455332
PhabricatorDashboardPanelEditproController.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
PhabricatorDashboardPanelEditproController.php
View Options
<?php
final
class
PhabricatorDashboardPanelEditproController
extends
PhabricatorDashboardController
{
public
function
handleRequest
(
AphrontRequest
$request
)
{
$engine
=
id
(
new
PhabricatorDashboardPanelEditEngine
())
->
setController
(
$this
);
$id
=
$request
->
getURIData
(
'id'
);
if
(!
$id
)
{
$list_uri
=
$this
->
getApplicationURI
(
'panel/'
);
$panel_type
=
$request
->
getStr
(
'panelType'
);
$panel_types
=
PhabricatorDashboardPanelType
::
getAllPanelTypes
();
if
(
empty
(
$panel_types
[
$panel_type
]))
{
return
$this
->
buildPanelTypeResponse
(
$list_uri
);
}
$engine
->
addContextParameter
(
'panelType'
,
$panel_type
)
->
setPanelType
(
$panel_type
);
}
return
$engine
->
buildResponse
();
}
private
function
buildPanelTypeResponse
(
$cancel_uri
)
{
$panel_types
=
PhabricatorDashboardPanelType
::
getAllPanelTypes
();
$viewer
=
$this
->
getViewer
();
$request
=
$this
->
getRequest
();
$e_type
=
null
;
$errors
=
array
();
if
(
$request
->
isFormPost
())
{
$e_type
=
pht
(
'Required'
);
$errors
[]
=
pht
(
'To create a new dashboard panel, you must select a panel type.'
);
}
$type_control
=
id
(
new
AphrontFormRadioButtonControl
())
->
setLabel
(
pht
(
'Panel Type'
))
->
setName
(
'panelType'
)
->
setError
(
$e_type
);
foreach
(
$panel_types
as
$key
=>
$type
)
{
$type_control
->
addButton
(
$key
,
$type
->
getPanelTypeName
(),
$type
->
getPanelTypeDescription
());
}
$form
=
id
(
new
AphrontFormView
())
->
setUser
(
$viewer
)
->
appendRemarkupInstructions
(
pht
(
'Choose the type of dashboard panel to create:'
))
->
appendChild
(
$type_control
);
if
(
$request
->
isAjax
())
{
return
$this
->
newDialog
()
->
setTitle
(
pht
(
'Add New Panel'
))
->
setWidth
(
AphrontDialogView
::
WIDTH_FORM
)
->
setErrors
(
$errors
)
->
appendForm
(
$form
)
->
addCancelButton
(
$cancel_uri
)
->
addSubmitButton
(
pht
(
'Continue'
));
}
$form
->
appendChild
(
id
(
new
AphrontFormSubmitControl
())
->
setValue
(
pht
(
'Continue'
))
->
addCancelButton
(
$cancel_uri
));
$title
=
pht
(
'Create Dashboard Panel'
);
$header_icon
=
'fa-plus-square'
;
$crumbs
=
$this
->
buildApplicationCrumbs
();
$crumbs
->
addTextCrumb
(
pht
(
'Panels'
),
$this
->
getApplicationURI
(
'panel/'
));
$crumbs
->
addTextCrumb
(
pht
(
'New Panel'
));
$crumbs
->
setBorder
(
true
);
$box
=
id
(
new
PHUIObjectBoxView
())
->
setHeaderText
(
pht
(
'Panel'
))
->
setFormErrors
(
$errors
)
->
setBackground
(
PHUIObjectBoxView
::
BLUE_PROPERTY
)
->
setForm
(
$form
);
$header
=
id
(
new
PHUIHeaderView
())
->
setHeader
(
$title
)
->
setHeaderIcon
(
$header_icon
);
$view
=
id
(
new
PHUITwoColumnView
())
->
setHeader
(
$header
)
->
setFooter
(
$box
);
return
$this
->
newPage
()
->
setTitle
(
$title
)
->
setCrumbs
(
$crumbs
)
->
appendChild
(
$view
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 5, 6:54 AM (1 d, 23 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
69915
Default Alt Text
PhabricatorDashboardPanelEditproController.php (2 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment