mirror of
https://github.com/fspc/water-the-theme.git
synced 2025-03-12 15:13:23 -04:00
37 lines
648 B
PHP
37 lines
648 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* Fired during plugin deactivation
|
||
|
*
|
||
|
* @link http://freesoftwarepc.com
|
||
|
* @since 1.0.0
|
||
|
*
|
||
|
* @package Water_The_Theme
|
||
|
* @subpackage Water_The_Theme/includes
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* Fired during plugin deactivation.
|
||
|
*
|
||
|
* This class defines all code necessary to run during the plugin's deactivation.
|
||
|
*
|
||
|
* @since 1.0.0
|
||
|
* @package Water_The_Theme
|
||
|
* @subpackage Water_The_Theme/includes
|
||
|
* @author Jonathan Rosenbaum <gnuser@gmail.com>
|
||
|
*/
|
||
|
class Water_The_Theme_Deactivator {
|
||
|
|
||
|
/**
|
||
|
* Short Description. (use period)
|
||
|
*
|
||
|
* Long Description.
|
||
|
*
|
||
|
* @since 1.0.0
|
||
|
*/
|
||
|
public static function deactivate() {
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|