interfaces
1 year ago
traits
1 year ago
action-factory.php
1 year ago
base-api-action.php
1 year ago
create-tags-action.php
1 year ago
get-categories-action.php
1 year ago
get-categories-interests-action.php
1 year ago
get-fields-action.php
1 year ago
get-lists-action.php
1 year ago
put-member-in-list-action.php
1 year ago
base-api-action.php
27 lines
| 1 | <?php |
| 2 | |
| 3 | namespace JFB_Modules\Actions_V2\Mailchimp\Api; |
| 4 | |
| 5 | use JFB_Modules\Gateways\Base_Gateway_Action; |
| 6 | |
| 7 | class Base_Api_Action extends Base_Gateway_Action { |
| 8 | |
| 9 | public function base_url(): string { |
| 10 | return 'https://{domain}.api.mailchimp.com/3.0/'; |
| 11 | } |
| 12 | |
| 13 | public function set_domain( string $domain ): self { |
| 14 | return $this->set_path( |
| 15 | array( |
| 16 | 'domain' => $domain, |
| 17 | ) |
| 18 | ); |
| 19 | } |
| 20 | |
| 21 | public function set_basic_auth( $token ): Base_Gateway_Action { |
| 22 | // phpcs:ignore WordPress.PHP.DiscouragedPHPFunctions |
| 23 | return parent::set_basic_auth( base64_encode( 'user:' . $token ) ); |
| 24 | } |
| 25 | |
| 26 | } |
| 27 |