1
0
Fork 0
mirror of https://github.com/inretio/WordPress-Plugin-Boilerplate synced 2024-05-20 12:12:10 +03:00
WordPress-Plugin-Boilerplate/plugin-name/trunk/includes/class-plugin-name-activator.php

39 lines
567 B
PHP
Raw Normal View History

<?php
/**
* Short Description (no period)
*
* Long Description.
*
* @link http://example.com
* @since 1.0.0
*
2014-05-03 22:06:57 +03:00
* @package Plugin_Name
2014-05-03 22:28:04 +03:00
* @subpackage Plugin_Name/includes
*/
/**
* Short Description. (use period)
*
* Long Description.
*
* @since 1.0.0
2014-05-03 22:28:04 +03:00
* @package Plugin_Name
* @subpackage Plugin_Name/includes
* @author Your Name <email@example.com>
*/
class Plugin_Name_Activator {
/**
* Short Description. (use period)
*
* Long Description.
*
2014-05-03 22:28:04 +03:00
* @since 1.0.0
*/
public static function activate() {
}
}