| Total Complexity | 5 |
| Total Lines | 38 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 17 | class Integration extends AbstractIntegration { |
||
| 18 | public function __construct() { |
||
| 19 | $this->id = 'buckaroo'; |
||
| 20 | $this->name = 'Buckaroo - HTML'; |
||
| 21 | $this->url = 'https://plaza.buckaroo.nl/'; |
||
| 22 | $this->product_url = __( 'http://www.buckaroo-payments.com', 'pronamic_ideal' ); |
||
|
|
|||
| 23 | $this->dashboard_url = 'https://plaza.buckaroo.nl/'; |
||
| 24 | $this->provider = 'buckaroo'; |
||
| 25 | |||
| 26 | // Actions |
||
| 27 | $function = array( __NAMESPACE__ . '\Listener', 'listen' ); |
||
| 28 | |||
| 29 | if ( ! has_action( 'wp_loaded', $function ) ) { |
||
| 30 | add_action( 'wp_loaded', $function ); |
||
| 31 | } |
||
| 32 | } |
||
| 33 | |||
| 34 | public function get_config_factory_class() { |
||
| 36 | } |
||
| 37 | |||
| 38 | public function get_settings_class() { |
||
| 40 | } |
||
| 41 | |||
| 42 | /** |
||
| 43 | * Get required settings for this integration. |
||
| 44 | * |
||
| 45 | * @link https://github.com/wp-premium/gravityforms/blob/1.9.16/includes/fields/class-gf-field-multiselect.php#L21-L42 |
||
| 46 | * @since 1.2.2 |
||
| 47 | * @return array |
||
| 48 | */ |
||
| 49 | public function get_settings() { |
||
| 55 | } |
||
| 56 | } |
||
| 57 |