PluginProbe
Premmerce / 1.0
Premmerce v1.0
trunk 1.0 1.1 1.2 1.2.1 1.3 1.3.10 1.3.11 1.3.12 1.3.13 1.3.14 1.3.15 1.3.16 1.3.17 1.3.18 1.3.19 1.3.2 1.3.20 1.3.21 1.3.22 1.3.23 1.3.3 1.3.4 1.3.5 1.3.6 All 28 releases
premmerce / sdk / Plugin / PluginInterface.php

PluginInterface.php in Premmerce 1.0, at sdk/Plugin/PluginInterface.php

24 lines 442 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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