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