diff --git a/admin/class-settings.php b/admin/class-adminsettings.php similarity index 98% rename from admin/class-settings.php rename to admin/class-adminsettings.php index dbb4559..2e7d058 100644 --- a/admin/class-settings.php +++ b/admin/class-adminsettings.php @@ -6,7 +6,7 @@ if ( ! defined( 'ABSPATH' ) ) { exit; } -class Settings { +class AdminSettings { /** * Class constructor. @@ -93,4 +93,4 @@ class Settings { } -new Settings(); +new AdminSettings(); diff --git a/admin/class-install.php b/admin/class-install.php new file mode 100644 index 0000000..eee51d9 --- /dev/null +++ b/admin/class-install.php @@ -0,0 +1,17 @@ + array( + 'dh_update_110_options', + ), + ); + +} diff --git a/admin/nmsp-update-functions.php b/admin/nmsp-update-functions.php new file mode 100644 index 0000000..c5bca8b --- /dev/null +++ b/admin/nmsp-update-functions.php @@ -0,0 +1,18 @@ +load_blade( $blade ); diff --git a/uninstall.php b/uninstall.php index f117710..cefddd4 100644 --- a/uninstall.php +++ b/uninstall.php @@ -9,4 +9,7 @@ if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) { exit; } -// Put logic here to undo things when this plugin is uninstalled. +function run_uninstaller() { + // Put logic here to undo things when this plugin is uninstalled. + error_log( 'Uninstall hook activated for plugin at ' . __DIR__ ); +}