2014-04-11 17:36:13 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
2014-04-26 01:58:07 +03:00
|
|
|
* Short Description (no period for file headers)
|
2014-04-11 17:36:13 +03:00
|
|
|
*
|
2014-04-26 01:58:07 +03:00
|
|
|
* Long Description.
|
2014-04-11 17:36:13 +03:00
|
|
|
*
|
2014-04-26 01:58:07 +03:00
|
|
|
* @link URL
|
|
|
|
* @since x.x.x (if available)
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Component
|
2014-04-11 17:36:13 +03:00
|
|
|
*/
|
|
|
|
class Plugin_Name_Deactivator {
|
|
|
|
|
|
|
|
/**
|
2014-04-26 01:21:25 +03:00
|
|
|
* TODO: Short description. (use period)
|
2014-04-11 17:36:13 +03:00
|
|
|
*
|
2014-04-26 01:21:25 +03:00
|
|
|
* TODO: Long description.
|
2014-04-11 17:36:13 +03:00
|
|
|
*
|
|
|
|
* @since x.x.x
|
|
|
|
*
|
|
|
|
* @param type $var Description.
|
|
|
|
* @param array $args {
|
|
|
|
* Short description about this hash.
|
|
|
|
*
|
|
|
|
* @type type $var Description.
|
|
|
|
* @type type $var Description.
|
|
|
|
* }
|
|
|
|
* @param type $var Description.
|
|
|
|
*/
|
|
|
|
public static function deactivate() {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-04-26 01:39:31 +03:00
|
|
|
}
|