Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93627330
PhortunePaymentMethodEditController.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
Sat, Nov 30, 06:30
Size
2 KB
Mime Type
text/x-php
Expires
Mon, Dec 2, 06:30 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22673400
Attached To
rPH Phabricator
PhortunePaymentMethodEditController.php
View Options
<?php
final
class
PhortunePaymentMethodEditController
extends
PhortuneController
{
public
function
handleRequest
(
AphrontRequest
$request
)
{
$viewer
=
$request
->
getViewer
();
$method_id
=
$request
->
getURIData
(
'id'
);
$method
=
id
(
new
PhortunePaymentMethodQuery
())
->
setViewer
(
$viewer
)
->
withIDs
(
array
(
$method_id
))
->
requireCapabilities
(
array
(
PhabricatorPolicyCapability
::
CAN_VIEW
,
PhabricatorPolicyCapability
::
CAN_EDIT
,
))
->
executeOne
();
if
(!
$method
)
{
return
new
Aphront404Response
();
}
$account
=
$method
->
getAccount
();
$account_uri
=
$this
->
getApplicationURI
(
$account
->
getID
().
'/'
);
if
(
$request
->
isFormPost
())
{
$name
=
$request
->
getStr
(
'name'
);
// TODO: Use ApplicationTransactions
$method
->
setName
(
$name
);
$method
->
save
();
return
id
(
new
AphrontRedirectResponse
())->
setURI
(
$account_uri
);
}
$provider
=
$method
->
buildPaymentProvider
();
$form
=
id
(
new
AphrontFormView
())
->
setUser
(
$viewer
)
->
appendChild
(
id
(
new
AphrontFormTextControl
())
->
setLabel
(
pht
(
'Name'
))
->
setName
(
'name'
)
->
setValue
(
$method
->
getName
()))
->
appendChild
(
id
(
new
AphrontFormStaticControl
())
->
setLabel
(
pht
(
'Details'
))
->
setValue
(
$method
->
getSummary
()))
->
appendChild
(
id
(
new
AphrontFormStaticControl
())
->
setLabel
(
pht
(
'Expires'
))
->
setValue
(
$method
->
getDisplayExpires
()))
->
appendChild
(
id
(
new
AphrontFormSubmitControl
())
->
addCancelButton
(
$account_uri
)
->
setValue
(
pht
(
'Save Changes'
)));
$box
=
id
(
new
PHUIObjectBoxView
())
->
setHeaderText
(
pht
(
'Payment Method'
))
->
setBackground
(
PHUIObjectBoxView
::
BLUE_PROPERTY
)
->
setForm
(
$form
);
$crumbs
=
$this
->
buildApplicationCrumbs
();
$crumbs
->
addTextCrumb
(
$account
->
getName
(),
$account_uri
);
$crumbs
->
addTextCrumb
(
$method
->
getDisplayName
());
$crumbs
->
addTextCrumb
(
pht
(
'Edit'
));
$crumbs
->
setBorder
(
true
);
$header
=
id
(
new
PHUIHeaderView
())
->
setHeader
(
pht
(
'Edit Payment Method'
))
->
setHeaderIcon
(
'fa-pencil'
);
$view
=
id
(
new
PHUITwoColumnView
())
->
setHeader
(
$header
)
->
setFooter
(
array
(
$box
,
));
return
$this
->
newPage
()
->
setTitle
(
pht
(
'Edit Payment Method'
))
->
setCrumbs
(
$crumbs
)
->
appendChild
(
$view
);
}
}
Event Timeline
Log In to Comment