mirror of
https://github.com/felixfoertsch/wordpress-dev-env.git
synced 2026-04-18 15:28:44 +02:00
18 lines
394 B
PHP
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;
|
|
}
|
|
|
|
|