| 1 |
<?php |
| 2 |
namespace ABlocks\Interfaces; |
| 3 |
|
| 4 |
if ( ! defined( 'ABSPATH' ) ) { |
| 5 |
exit; |
| 6 |
} |
| 7 |
|
| 8 |
interface AddonInterface { |
| 9 |
public static function init(); |
| 10 |
public function define_constants(); |
| 11 |
public function init_addon(); |
| 12 |
public function addon_activation_hook(); |
| 13 |
} |
| 14 |
|