mirror of
https://github.com/inretio/WordPress-Plugin-Boilerplate
synced 2024-11-05 05:12:57 +02:00
2af01cf653
Making sure that the code comments strictly follow that of the WordPress PHP Documentation Standards
39 lines
568 B
PHP
39 lines
568 B
PHP
<?php
|
|
|
|
/**
|
|
* Short Description (no period)
|
|
*
|
|
* Long Description.
|
|
*
|
|
* @link http://example.com/
|
|
* @since 1.0.0
|
|
*
|
|
* @package Plugin_Name
|
|
* @subpackage Plugin_Name/includes
|
|
*/
|
|
|
|
/**
|
|
* Short Description. (use period)
|
|
*
|
|
* Long Description.
|
|
*
|
|
* @since 1.0.0
|
|
* @package Plugin_Name
|
|
* @subpackage Plugin_Name/includes
|
|
* @author Your Name <email@example.com>
|
|
*/
|
|
class Plugin_Name_Activator {
|
|
|
|
/**
|
|
* Short Description. (use period)
|
|
*
|
|
* Long Description.
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
public static function activate() {
|
|
|
|
}
|
|
|
|
}
|