| 1 |
<?php |
| 2 |
|
| 3 |
namespace BitCode\BitForm\Admin\Form\InitJs; |
| 4 |
|
| 5 |
class Stripe |
| 6 |
{ |
| 7 |
public static function init() |
| 8 |
{ |
| 9 |
return <<<STRIPE_INIT_JS |
| 10 |
const src = 'https://js.stripe.com/v3/'; |
| 11 |
const attrs = {}; |
| 12 |
const id = 'bit_stripe_field-' + contentId; |
| 13 |
const initFunc = function(){ |
| 14 |
bf_globals[contentId].inits[fldKey] = getFldInstance(contentId, fldKey, fldType) |
| 15 |
}; |
| 16 |
|
| 17 |
scriptLoader(src, '', attrs, id, initFunc); |
| 18 |
|
| 19 |
STRIPE_INIT_JS; |
| 20 |
} |
| 21 |
} |
| 22 |
|