mirror of
https://github.com/inretio/WordPress-Plugin-Boilerplate
synced 2024-12-22 20:03:53 +02:00
Update inline documentation
This commit is contained in:
parent
ac8e5cfb01
commit
60b58949ce
2 changed files with 4 additions and 4 deletions
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* Plugin Name.
|
* Plugin Name.
|
||||||
*
|
*
|
||||||
* @package Plugin_Name_Admin
|
* @package Plugin_Name\Admin
|
||||||
* @author Your Name <email@example.com>
|
* @author Your Name <email@example.com>
|
||||||
* @license GPL-2.0+
|
* @license GPL-2.0+
|
||||||
* @link http://example.com
|
* @link http://example.com
|
||||||
|
@ -14,7 +14,7 @@
|
||||||
*
|
*
|
||||||
* TODO: Rename this class to a proper name for your plugin.
|
* TODO: Rename this class to a proper name for your plugin.
|
||||||
*
|
*
|
||||||
* @package Plugin_Name_Settings
|
* @package Plugin_Name_Admin
|
||||||
* @author Your Name <email@example.com>
|
* @author Your Name <email@example.com>
|
||||||
*/
|
*/
|
||||||
class Plugin_Name_Admin {
|
class Plugin_Name_Admin {
|
||||||
|
@ -38,7 +38,7 @@ class Plugin_Name_Admin {
|
||||||
protected $plugin_screen_hook_suffix = null;
|
protected $plugin_screen_hook_suffix = null;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Initialize the plugin by setting localization, filters, and administration functions.
|
* Initialize the plugin by loading admin scripts & styles and adding a settings page and menu.
|
||||||
*
|
*
|
||||||
* @since 1.0.0
|
* @since 1.0.0
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -59,7 +59,7 @@ class Plugin_Name {
|
||||||
protected static $instance = null;
|
protected static $instance = null;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Initialize the plugin by setting localization, filters, and administration functions.
|
* Initialize the plugin by setting localization and loading public scripts and styles.
|
||||||
*
|
*
|
||||||
* @since 1.0.0
|
* @since 1.0.0
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in a new issue