Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F116372299
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
Fri, Jun 6, 11:48
Size
1 KB
Mime Type
text/x-php
Expires
Sun, Jun 8, 11:48 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
26597374
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