2014-04-11 17:36:13 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
2014-08-19 00:00:09 +03:00
|
|
|
* Fired during plugin activation
|
2014-07-29 22:56:12 +03:00
|
|
|
*
|
2014-07-29 23:55:10 +03:00
|
|
|
* @link http://example.com
|
2014-07-29 22:56:12 +03:00
|
|
|
* @since 1.0.0
|
2014-04-11 17:36:13 +03:00
|
|
|
*
|
2014-05-03 22:06:57 +03:00
|
|
|
* @package Plugin_Name
|
2014-05-03 22:28:04 +03:00
|
|
|
* @subpackage Plugin_Name/includes
|
2014-04-11 17:36:13 +03:00
|
|
|
*/
|
2014-05-01 05:32:27 +03:00
|
|
|
|
|
|
|
/**
|
2014-08-19 00:00:09 +03:00
|
|
|
* Fired during plugin activation.
|
2014-05-01 05:32:27 +03:00
|
|
|
*
|
2014-08-19 00:00:09 +03:00
|
|
|
* This class defines all code necessary to run during the plugin's activation.
|
2014-05-01 05:32:27 +03:00
|
|
|
*
|
2014-07-29 22:56:12 +03:00
|
|
|
* @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>
|
2014-05-01 05:32:27 +03:00
|
|
|
*/
|
2014-04-11 17:36:13 +03:00
|
|
|
class Plugin_Name_Activator {
|
|
|
|
|
|
|
|
/**
|
2014-07-29 22:56:12 +03:00
|
|
|
* Short Description. (use period)
|
2014-04-11 17:36:13 +03:00
|
|
|
*
|
2014-07-29 22:56:12 +03:00
|
|
|
* Long Description.
|
2014-04-11 17:36:13 +03:00
|
|
|
*
|
2014-05-03 22:28:04 +03:00
|
|
|
* @since 1.0.0
|
2014-04-11 17:36:13 +03:00
|
|
|
*/
|
|
|
|
public static function activate() {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-04-26 01:39:31 +03:00
|
|
|
}
|