2014-04-11 10:36:13 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
2014-04-30 22:32:27 -04:00
|
|
|
* Short description (no period for file headers)
|
2014-04-11 10:36:13 -04:00
|
|
|
*
|
2014-04-30 22:32:27 -04:00
|
|
|
* Long description.
|
2014-04-11 10:36:13 -04:00
|
|
|
*
|
2014-05-03 15:06:57 -04:00
|
|
|
* @package Plugin_Name
|
|
|
|
* @subpackage Plugin_name/includes
|
2014-04-11 10:36:13 -04:00
|
|
|
*/
|
2014-04-30 22:32:27 -04:00
|
|
|
|
|
|
|
/**
|
2014-05-03 15:06:57 -04:00
|
|
|
* Define a short description for what this class does.
|
2014-04-30 22:32:27 -04:00
|
|
|
*
|
2014-05-03 15:06:57 -04:00
|
|
|
* Define a longer description for the purpose of this class.
|
2014-04-30 22:32:27 -04:00
|
|
|
*
|
|
|
|
* @author Your Name <email@example.com>
|
|
|
|
* @license GPL-2.0+
|
|
|
|
* @link http://example.com
|
|
|
|
* @copyright 2014 Your Name or Company Name
|
|
|
|
*/
|
2014-04-11 10:36:13 -04:00
|
|
|
class Plugin_Name_Activator {
|
|
|
|
|
|
|
|
/**
|
2014-04-25 18:58:07 -04:00
|
|
|
* Short description. (use period)
|
2014-04-11 10:36:13 -04:00
|
|
|
*
|
2014-04-25 18:58:07 -04:00
|
|
|
* Long description.
|
2014-04-11 10:36:13 -04:00
|
|
|
*
|
2014-04-30 22:32:27 -04:00
|
|
|
* @since x.x.x
|
|
|
|
* @link URL
|
2014-04-11 10:36:13 -04:00
|
|
|
*/
|
|
|
|
public static function activate() {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-04-25 18:39:31 -04:00
|
|
|
}
|