Conditions | 2 |
Paths | 2 |
Total Lines | 12 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
18 | public function __construct() { |
||
19 | $this->id = 'nocks'; |
||
20 | $this->name = 'Nocks - Checkout'; |
||
21 | $this->product_url = 'https://www.nocks.com/'; |
||
22 | $this->dashboard_url = 'https://www.nocks.com/'; |
||
23 | $this->provider = 'nocks'; |
||
24 | |||
25 | // Actions |
||
26 | $function = array( __NAMESPACE__ . '\Listener', 'listen' ); |
||
27 | |||
28 | if ( ! has_action( 'wp_loaded', $function ) ) { |
||
|
|||
29 | add_action( 'wp_loaded', $function ); |
||
30 | } |
||
54 |