traits
2 years ago
base-action.php
2 years ago
capture-payment-action.php
2 years ago
get-token.php
2 years ago
pay-now-action.php
2 years ago
base-action.php
35 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace JFB_Modules\Gateways\Paypal\Api_Actions; |
| 5 | |
| 6 | use Jet_Form_Builder\Gateways\Base_Gateway_Action; |
| 7 | use JFB_Modules\Gateways\Module; |
| 8 | |
| 9 | // If this file is called directly, abort. |
| 10 | if ( ! defined( 'WPINC' ) ) { |
| 11 | die; |
| 12 | } |
| 13 | |
| 14 | abstract class Base_Action extends Base_Gateway_Action { |
| 15 | |
| 16 | public function base_url(): string { |
| 17 | return Module::instance()->is_sandbox |
| 18 | ? 'https://api-m.sandbox.paypal.com/' |
| 19 | : 'https://api-m.paypal.com/'; |
| 20 | } |
| 21 | |
| 22 | public function get_request_args(): array { |
| 23 | $args = parent::get_request_args(); |
| 24 | |
| 25 | $args['user-agent'] = sprintf( |
| 26 | 'JetFormBuilder/%s; %s', |
| 27 | jet_form_builder()->get_version(), |
| 28 | get_bloginfo( 'name' ) |
| 29 | ); |
| 30 | |
| 31 | return $args; |
| 32 | } |
| 33 | |
| 34 | } |
| 35 |