Files
wordpress-dev-env/wordpress_plugins/log-viewer/uninstall.php
Felix Förtsch 648ded8896 Initial commit
2020-10-20 14:39:50 +02:00

18 lines
394 B
PHP

<?php
/**
* Fired when the plugin is uninstalled.
*
* @package log-viewer
* @author Markus Fischbacher <fischbacher.markus@gmail.com>
* @license GPL-2.0+
* @link http://wordpress.org/extend/plugins/log-viewer/
* @copyright 2013 Markus Fischbacher
*/
// If uninstall not called from WordPress, then exit
if( !defined( 'WP_UNINSTALL_PLUGIN' ) ) {
exit;
}