This repository has been archived on 2023-08-16. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
footnotes/src/includes/class-footnotes-deactivator.php

34 lines
544 B
PHP
Raw Normal View History

<?php
/**
* Fired during plugin deactivation
*
* @since 2.8.0
*
* @package footnotes
* @subpackage footnotes/includes
*/
/**
* Fired during plugin deactivation.
*
* This class defines all code necessary to run during the plugin's deactivation.
*
* @since 2.8.0
* @package footnotes
* @subpackage footnotes/includes
*/
class Plugin_Name_Deactivator {
/**
* Runs when the Plugin is deactivated.
*
* Currently NOP.
*
* @since 2.8.0
*/
public static function deactivate() {
// Nothing yet.
}
}