mirror of
https://github.com/inretio/WordPress-Plugin-Boilerplate
synced 2024-12-22 20:03:53 +02:00
commit
8920d21b76
2 changed files with 10 additions and 10 deletions
|
@ -52,7 +52,6 @@ class PluginName {
|
||||||
// Register hooks that are fired when the plugin is activated, deactivated, and uninstalled, respectively.
|
// Register hooks that are fired when the plugin is activated, deactivated, and uninstalled, respectively.
|
||||||
register_activation_hook( __FILE__, array( $this, 'activate' ) );
|
register_activation_hook( __FILE__, array( $this, 'activate' ) );
|
||||||
register_deactivation_hook( __FILE__, array( $this, 'deactivate' ) );
|
register_deactivation_hook( __FILE__, array( $this, 'deactivate' ) );
|
||||||
register_uninstall_hook( __FILE__, array( $this, 'uninstall' ) );
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* TODO:
|
* TODO:
|
||||||
|
@ -88,15 +87,6 @@ class PluginName {
|
||||||
// TODO: Define deactivation functionality here
|
// TODO: Define deactivation functionality here
|
||||||
} // end deactivate
|
} // end deactivate
|
||||||
|
|
||||||
/**
|
|
||||||
* Fired when the plugin is uninstalled.
|
|
||||||
*
|
|
||||||
* @param boolean $network_wide True if WPMU superadmin uses "Network Activate" action, false if WPMU is disabled or plugin is activated on an individual blog
|
|
||||||
*/
|
|
||||||
public function uninstall( $network_wide ) {
|
|
||||||
// TODO: Define uninstall functionality here
|
|
||||||
} // end uninstall
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Loads the plugin text domain for translation
|
* Loads the plugin text domain for translation
|
||||||
*/
|
*/
|
||||||
|
|
10
plugin-boilerplate/uninstall.php
Normal file
10
plugin-boilerplate/uninstall.php
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Fired when the plugin is uninstalled.
|
||||||
|
*/
|
||||||
|
|
||||||
|
//if uninstall not called from WordPress exit
|
||||||
|
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) )
|
||||||
|
exit ();
|
||||||
|
|
||||||
|
// TODO: Define uninstall functionality here
|
Loading…
Reference in a new issue