Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F97247149
PhortuneCreditCardForm.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, Jan 3, 18:46
Size
2 KB
Mime Type
text/x-php
Expires
Sun, Jan 5, 18:46 (2 d)
Engine
blob
Format
Raw Data
Handle
23363946
Attached To
rPH Phabricator
PhortuneCreditCardForm.php
View Options
<?php
final
class
PhortuneCreditCardForm
{
private
$formID
;
private
$scripts
=
array
();
private
$user
;
private
$errors
=
array
();
private
$cardNumberError
;
private
$cardCVCError
;
private
$cardExpirationError
;
public
function
setUser
(
PhabricatorUser
$user
)
{
$this
->
user
=
$user
;
return
$this
;
}
public
function
setErrors
(
array
$errors
)
{
$this
->
errors
=
$errors
;
return
$this
;
}
public
function
addScript
(
$script_uri
)
{
$this
->
scripts
[]
=
$script_uri
;
return
$this
;
}
public
function
getFormID
()
{
if
(!
$this
->
formID
)
{
$this
->
formID
=
celerity_generate_unique_node_id
();
}
return
$this
->
formID
;
}
public
function
buildForm
()
{
$form_id
=
$this
->
getFormID
();
require_celerity_resource
(
'phortune-credit-card-form-css'
);
require_celerity_resource
(
'phortune-credit-card-form'
);
require_celerity_resource
(
'aphront-tooltip-css'
);
Javelin
::
initBehavior
(
'phabricator-tooltips'
);
$form
=
new
AphrontFormView
();
foreach
(
$this
->
scripts
as
$script
)
{
$form
->
appendChild
(
phutil_tag
(
'script'
,
array
(
'type'
=>
'text/javascript'
,
'src'
=>
$script
,
)));
}
$errors
=
$this
->
errors
;
$e_number
=
isset
(
$errors
[
PhortuneErrCode
::
ERR_CC_INVALID_NUMBER
])
?
pht
(
'Invalid'
)
:
true
;
$e_cvc
=
isset
(
$errors
[
PhortuneErrCode
::
ERR_CC_INVALID_CVC
])
?
pht
(
'Invalid'
)
:
true
;
$e_expiry
=
isset
(
$errors
[
PhortuneErrCode
::
ERR_CC_INVALID_EXPIRY
])
?
pht
(
'Invalid'
)
:
null
;
$form
->
setID
(
$form_id
)
->
appendChild
(
id
(
new
AphrontFormMarkupControl
())
->
setLabel
(
''
)
->
setValue
(
javelin_tag
(
'div'
,
array
(
'class'
=>
'credit-card-logos'
,
'sigil'
=>
'has-tooltip'
,
'meta'
=>
array
(
'tip'
=>
'We support Visa, Mastercard, American Express, '
.
'Discover, JCB, and Diners Club.'
,
'size'
=>
440
,
)
))))
->
appendChild
(
id
(
new
AphrontFormTextControl
())
->
setLabel
(
'Card Number'
)
->
setDisableAutocomplete
(
true
)
->
setSigil
(
'number-input'
)
->
setError
(
$e_number
))
->
appendChild
(
id
(
new
AphrontFormTextControl
())
->
setLabel
(
'CVC'
)
->
setDisableAutocomplete
(
true
)
->
setSigil
(
'cvc-input'
)
->
setError
(
$e_cvc
))
->
appendChild
(
id
(
new
PhortuneMonthYearExpiryControl
())
->
setLabel
(
'Expiration'
)
->
setUser
(
$this
->
user
)
->
setError
(
$e_expiry
));
return
$form
;
}
}
Event Timeline
Log In to Comment