mirror of
https://github.com/inretio/WordPress-Plugin-Boilerplate
synced 2024-11-05 05:12:57 +02:00
026515da85
http://make.wordpress.org/core/handbook/inline-documentation-standards/php-documentation-standards/ Signed-off-by: Tom McFarlin <tom@tommcfarlin.com>
34 lines
609 B
PHP
34 lines
609 B
PHP
<?php
|
|
|
|
/**
|
|
* TODO: Short description (no period for file headers)
|
|
*
|
|
* TODO: Long description.
|
|
*
|
|
* @package Plugin_Name
|
|
* @author Your Name <email@example.com>
|
|
*/
|
|
class Plugin_Name_Activator {
|
|
|
|
/**
|
|
* Short description. (use period)
|
|
*
|
|
* Long description.
|
|
*
|
|
* @since x.x.x
|
|
* @access (for functions: only use if private)
|
|
*
|
|
* @see Function/method/class relied on
|
|
* @link URL
|
|
* @global type $varname Short description.
|
|
*
|
|
* @param type $var Description.
|
|
* @param type $var Optional. Description.
|
|
* @return type Description.
|
|
*/
|
|
public static function activate() {
|
|
|
|
}
|
|
|
|
}
|