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

35 lines
542 B
PHP
Raw Normal View History

<?php
/**
2021-04-29 20:57:30 +01:00
* File providing `Footnotes_Deactivator` class.
*
2021-04-29 20:57:30 +01:00
* @package footnotes
2021-04-27 10:04:13 +01:00
* @subpackage includes
2021-04-29 20:57:30 +01:00
*
* @since 2.8.0
*/
/**
2021-04-29 20:57:30 +01:00
* Class providing action(s) on plugin deactivation.
*
* This class defines all code necessary to run during the plugin's deactivation.
*
2021-04-29 20:57:30 +01:00
* @package footnotes
* @subpackage includes
*
* @since 2.8.0
*/
2021-04-26 11:54:58 +01:00
class Footnotes_Deactivator {
/**
2021-04-29 20:57:30 +01:00
* Runs when the plugin is deactivated.
*
* Currently NOP.
*
2021-04-29 20:57:30 +01:00
* @since 2.8.0
*/
public static function deactivate() {
// Nothing yet.
}
}