| 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 = '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 | } |
||
| 57 |