PluginProbe ʕ •ᴥ•ʔ
SEO SIMPLE PACK / 2.2.3
SEO SIMPLE PACK v2.2.3
1.1.3 1.1.4 1.1.5 1.1.6 1.1.7 1.1.8 1.1.9 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 2.0.0 2.1.0 2.1.1 2.2.0 2.2.1 2.2.2 2.2.3 2.2.4 2.2.5 2.2.6 2.2.7 2.2.8 2.2.9 2.3.0 2.3.1 2.4.0 2.4.1 2.4.2 2.5.0 2.5.1 3.0.0 3.1.0 3.1.1 3.1.2 3.2.0 3.2.1 3.3.0 3.3.1 3.4.0 3.5.0 3.5.1 3.5.2 3.6.0 3.6.1 3.6.2 3.6.3 3.7.0 trunk 1.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.1.0 1.1.1 1.1.2
seo-simple-pack / class / activate.php
seo-simple-pack / class Last commit date
trait 5 years ago __branch.php 5 years ago activate.php 5 years ago data.php 5 years ago hooks.php 5 years ago menu.php 5 years ago metabox.php 5 years ago output.php 5 years ago utility.php 5 years ago
activate.php
36 lines
1 <?php
2
3 class SSP_Activate {
4
5 /**
6 * 外部からのインスタンス化を防ぐ
7 */
8 private function __construct() {}
9
10
11 /**
12 * プラグイン有効化時の処理
13 * Function for the plugin activated.
14 */
15 // public static function plugin_activate() {}
16
17
18 /**
19 * プラグイン停止時の処理
20 * Function for the plugin deactivated.
21 */
22 // public static function plugin_deactivate() {}
23
24
25 /**
26 * プラグインアンインストール時の処理
27 * Function for the plugin uninstalled.
28 */
29 public static function plugin_uninstall() {
30 foreach ( SSP_Data::DB_NAME as $db_name ) {
31 delete_option( $db_name );
32 }
33 }
34
35 }
36