Boilerplate to develop Wordpress Plugins
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
429 B

4 years ago
  1. <?php
  2. /**
  3. * Fired during plugin deactivation.
  4. *
  5. * This class defines all code necessary to run during the plugin's deactivation.
  6. *
  7. * @since 1.0.0
  8. * @package Test
  9. * @subpackage Test/includes
  10. * @author test <test>
  11. *
  12. */
  13. if (!defined('ABSPATH')) {
  14. exit; // Exit if accessed directly
  15. }
  16. class Test_Deactivator
  17. {
  18. /**
  19. *
  20. *
  21. * @since 1.0.0
  22. */
  23. public static function deactivate()
  24. {
  25. }
  26. }