PluginProbe
Tiered Pricing Table for WooCommerce / 2.2.2
Tiered Pricing Table for WooCommerce v2.2.2
7.1.7 7.1.5 7.1.4 7.1.1 6.5.0 6.4.0 6.1.0 trunk 1.0 1.1 2.0 2.0.1 2.0.2 2.1 2.1.1 2.1.2 2.2.0 2.2.1 2.2.2 2.2.3 2.3.0 2.3.1 2.3.2 2.3.3 2.3.4 All 90 releases
tier-pricing-table / vendor / premmerce / wordpress-sdk / src / V2 / Plugin / PluginInterface.php

PluginInterface.php in Tiered Pricing Table for WooCommerce 2.2.2, at vendor/premmerce/wordpress-sdk/src/V2/Plugin/PluginInterface.php

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