uninstall.php (329B)
1 <?php 2 /** 3 * Fired when the plugin is uninstalled. 4 * 5 * @package ReduxFramework\Uninstall 6 * @author Dovy Paukstys <info@simplerain.com> 7 * @since 3.0.0 8 */ 9 10 // If uninstall, not called from WordPress, then exit. 11 if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) { 12 exit; 13 } 14 15 // TODO: Define uninstall functionality here.