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-activator.php

34 lines
532 B
PHP
Raw Normal View History

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