mirror of
https://github.com/inretio/WordPress-Plugin-Boilerplate
synced 2024-11-04 21:02:58 +02:00
39 lines
571 B
PHP
39 lines
571 B
PHP
<?php
|
|
|
|
/**
|
|
* Short Description (no period)
|
|
*
|
|
* Long Description.
|
|
*
|
|
* @link http://example.com
|
|
* @since 1.0.0
|
|
*
|
|
* @package Plugin_Name
|
|
* @subpackage Plugin_Name/includes
|
|
*/
|
|
|
|
/**
|
|
* Short Description. (use period)
|
|
*
|
|
* Long Description.
|
|
*
|
|
* @since 1.0.0
|
|
* @package Plugin_Name
|
|
* @subpackage Plugin_Name/includes
|
|
* @author Your Name <email@example.com>
|
|
*/
|
|
class Plugin_Name_Deactivator {
|
|
|
|
/**
|
|
* Short Description. (use period)
|
|
*
|
|
* Long Description.
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
public static function deactivate() {
|
|
|
|
}
|
|
|
|
}
|