2014-04-11 17:36:13 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
2014-04-26 01:21:25 +03:00
|
|
|
* TODO: Short description (no period for file headers)
|
2014-04-11 17:36:13 +03:00
|
|
|
*
|
2014-04-26 01:21:25 +03:00
|
|
|
* TODO: Long description.
|
2014-04-11 17:36:13 +03:00
|
|
|
*
|
|
|
|
* @package Plugin_Name
|
|
|
|
* @author Your Name <email@example.com>
|
|
|
|
*/
|
|
|
|
class Plugin_Name_Activator {
|
|
|
|
|
|
|
|
/**
|
2014-04-26 01:58:07 +03:00
|
|
|
* Short description. (use period)
|
2014-04-11 17:36:13 +03:00
|
|
|
*
|
2014-04-26 01:58:07 +03:00
|
|
|
* Long description.
|
2014-04-11 17:36:13 +03:00
|
|
|
*
|
|
|
|
* @since x.x.x
|
2014-04-26 01:58:07 +03:00
|
|
|
* @access (for functions: only use if private)
|
2014-04-11 17:36:13 +03:00
|
|
|
*
|
2014-04-26 01:58:07 +03:00
|
|
|
* @see Function/method/class relied on
|
|
|
|
* @link URL
|
|
|
|
* @global type $varname Short description.
|
2014-04-11 17:36:13 +03:00
|
|
|
*
|
2014-04-26 01:58:07 +03:00
|
|
|
* @param type $var Description.
|
|
|
|
* @param type $var Optional. Description.
|
|
|
|
* @return type Description.
|
2014-04-11 17:36:13 +03:00
|
|
|
*/
|
|
|
|
public static function activate() {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-04-26 01:39:31 +03:00
|
|
|
}
|