1
0
Fork 0
mirror of https://github.com/inretio/WordPress-Plugin-Boilerplate synced 2024-04-26 00:21:04 +03:00

Added an uninstall hook

This commit is contained in:
Greg Johnson 2012-11-11 01:48:16 -06:00
parent f522cbd0e2
commit d9b406b8dd

View file

@ -51,6 +51,7 @@ class PluginName {
register_activation_hook( __FILE__, array( $this, 'activate' ) );
register_deactivation_hook( __FILE__, array( $this, 'deactivate' ) );
register_uninstall_hook( __FILE__, array( $this, 'uninstall' ) );
/*
* TODO:
@ -86,6 +87,15 @@ class PluginName {
// TODO define deactivation functionality here
} // end deactivate
/**
* Fired when the plugin is uninstalled.
*
* @params $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
*/