| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | public function __construct() { |
||
| 9 | $this->url = 'https://secure.ogone.com/'; |
||
| 10 | $this->product_url = __( 'https://payment-services.ingenico.com/nl/en', 'pronamic_ideal' ); |
||
|
|
|||
| 11 | $this->dashboard_url = 'https://secure.ogone.com/'; |
||
| 12 | $this->provider = 'ogone'; |
||
| 13 | |||
| 14 | // Actions. |
||
| 15 | $function = array( __NAMESPACE__ . '\Listener', 'listen' ); |
||
| 16 | |||
| 17 | if ( ! has_action( 'wp_loaded', $function ) ) { |
||
| 18 | add_action( 'wp_loaded', $function ); |
||
| 19 | } |
||
| 26 |