Conditions | 2 |
Paths | 2 |
Total Lines | 13 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
18 | public function __construct() { |
||
19 | $this->id = 'icepay-ideal'; |
||
20 | $this->name = 'ICEPAY'; |
||
21 | $this->url = 'https://icepay.com/'; |
||
22 | $this->product_url = __( 'https://icepay.com/nl/en/pricing-and-accounts/', 'pronamic_ideal' ); |
||
|
|||
23 | $this->dashboard_url = 'https://portal.icepay.com/'; |
||
24 | $this->provider = 'icepay'; |
||
25 | |||
26 | // Actions |
||
27 | $function = array( __NAMESPACE__ . '\Listener', 'listen' ); |
||
28 | |||
29 | if ( ! has_action( 'wp_loaded', $function ) ) { |
||
30 | add_action( 'wp_loaded', $function ); |
||
31 | } |
||
57 |