1
0
Fork 0
mirror of https://github.com/inretio/WordPress-Plugin-Boilerplate synced 2024-05-02 19:33:16 +03:00

updating the docblock and removing inline tabs in favor of spaces

fixes #38
This commit is contained in:
Tom McFarlin 2013-05-12 08:28:30 -04:00
parent 49abd665ef
commit c98aee2d55

View file

@ -2,13 +2,17 @@
/** /**
* Fired when the plugin is uninstalled. * Fired when the plugin is uninstalled.
* *
* @package PluginName * @package PluginName
* @since 1.0.0 * @author TODO
* @license GPL-2.0+
* @link TODO
* @version 1.0.0
* @since 1.0.0
*/ */
// If uninstall, not called from WordPress exit // If uninstall, not called from WordPress, then exit
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) { if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
exit(); exit();
} }
// TODO: Define uninstall functionality here // TODO: Define uninstall functionality here