Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101663569
NuanceSourceCreateController.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, Feb 12, 14:10
Size
1 KB
Mime Type
text/x-php
Expires
Fri, Feb 14, 14:10 (2 d)
Engine
blob
Format
Raw Data
Handle
24162726
Attached To
rPH Phabricator
NuanceSourceCreateController.php
View Options
<?php
final
class
NuanceSourceCreateController
extends
NuanceController
{
public
function
handleRequest
(
AphrontRequest
$request
)
{
$can_edit
=
$this
->
requireApplicationCapability
(
NuanceSourceManageCapability
::
CAPABILITY
);
$viewer
=
$this
->
getViewer
();
$map
=
NuanceSourceDefinition
::
getAllDefinitions
();
$cancel_uri
=
$this
->
getApplicationURI
(
'source/'
);
if
(
$request
->
isFormPost
())
{
$type
=
$request
->
getStr
(
'type'
);
if
(
isset
(
$map
[
$type
]))
{
$uri
=
$this
->
getApplicationURI
(
'source/new/'
.
$type
.
'/'
);
return
id
(
new
AphrontRedirectResponse
())->
setURI
(
$uri
);
}
}
$source_types
=
id
(
new
AphrontFormRadioButtonControl
())
->
setName
(
'type'
)
->
setLabel
(
pht
(
'Source Type'
));
foreach
(
$map
as
$type
=>
$definition
)
{
$source_types
->
addButton
(
$type
,
$definition
->
getName
(),
$definition
->
getSourceDescription
());
}
$form
=
id
(
new
AphrontFormView
())
->
setUser
(
$viewer
)
->
appendChild
(
$source_types
)
->
appendChild
(
id
(
new
AphrontFormSubmitControl
())
->
setValue
(
pht
(
'Continue'
))
->
addCancelButton
(
$cancel_uri
));
$box
=
id
(
new
PHUIObjectBoxView
())
->
setHeaderText
(
pht
(
'Choose Source Type'
))
->
appendChild
(
$form
);
$crumbs
=
$this
->
buildApplicationCrumbs
();
$crumbs
->
addTextCrumb
(
pht
(
'Sources'
),
$cancel_uri
);
$crumbs
->
addTextCrumb
(
pht
(
'New'
));
return
$this
->
buildApplicationPage
(
array
(
$crumbs
,
$box
,
),
array
(
'title'
=>
pht
(
'Choose Source Type'
),
));
}
}
Event Timeline
Log In to Comment