| 1 |
<?php |
| 2 |
|
| 3 |
namespace Premmerce\Premmerce\WordpressSDK\Plugin; |
| 4 |
|
| 5 |
interface PluginInterface |
| 6 |
{ |
| 7 |
/** |
| 8 |
* Plugin entry point |
| 9 |
*/ |
| 10 |
public function run(); |
| 11 |
/** |
| 12 |
* Fired when the plugin is activated |
| 13 |
*/ |
| 14 |
public function activate(); |
| 15 |
/** |
| 16 |
* Fired when the plugin is deactivated |
| 17 |
*/ |
| 18 |
public function deactivate(); |
| 19 |
/** |
| 20 |
* Fired when the plugin is uninstalled |
| 21 |
*/ |
| 22 |
public static function uninstall(); |
| 23 |
} |
| 24 |
|