uninstall.php 326 B

12345678910111213141516
  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. // If uninstall, not called from WordPress, then exit
  10. if( !defined( 'WP_UNINSTALL_PLUGIN' ) ) {
  11. exit;
  12. }
  13. // TODO: Define uninstall functionality here