mirror of
https://github.com/inretio/WordPress-Plugin-Boilerplate
synced 2024-12-22 11:53:53 +02:00
updating the docblocks and adding whitespace to the end of the file
This commit is contained in:
parent
4f2719b2eb
commit
c10b371d67
3 changed files with 35 additions and 34 deletions
|
@ -1,10 +1,15 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* Define a short description for what this class does.
|
||||
* Define a short description for what this class does (no period)
|
||||
*
|
||||
* @since x.x.x
|
||||
* @package TODO
|
||||
* @package Plugin_Name
|
||||
* @subpackage Plugin_Name/admin
|
||||
* @author Your Name <email@example.com>
|
||||
* @license GPL-2.0+
|
||||
* @link http://example.com
|
||||
* @copyright 2014 Your Name or Company Name
|
||||
* @since 1.0.0
|
||||
*/
|
||||
|
||||
/**
|
||||
|
@ -12,11 +17,9 @@
|
|||
*
|
||||
* Define a longer description for the purpose of this class.
|
||||
*
|
||||
* @package TODO
|
||||
* @author Your Name <your@email.com>
|
||||
* @license GPL-2.0+
|
||||
* @link URL
|
||||
* @copyright 2014 Your Name of Your Company Name
|
||||
* @package Plugin_Name
|
||||
* @subpackage Plugin_Name/admin
|
||||
* @author Your Name <email@example.com>
|
||||
*/
|
||||
class Plugin_Name_Admin_Loader {
|
||||
|
||||
|
@ -26,8 +29,7 @@ class Plugin_Name_Admin_Loader {
|
|||
* Long description.
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @link URL
|
||||
* @param type $plugin_name_admin TODO
|
||||
* @param type $plugin_name_admin A reference to the Plugin_Name_Admin class that defines the functions for the hooks.
|
||||
*/
|
||||
public function run( $plugin_name_admin ) {
|
||||
|
||||
|
@ -38,11 +40,6 @@ class Plugin_Name_Admin_Loader {
|
|||
*
|
||||
* Each hook then corresponds to a public function defined within the Plugin_Name_Admin
|
||||
* class.
|
||||
*
|
||||
* For example:
|
||||
*
|
||||
* add_action( 'save_post' array( $plugin_name_admin, 'save_post' ) );
|
||||
* add_filter( 'the_content', array( $plugin_name_admin, 'update_the_content' ) );
|
||||
*/
|
||||
|
||||
add_action( 'admin_enqueue_scripts', array( $plugin_name_admin, 'enqueue_styles' ) );
|
||||
|
@ -50,4 +47,4 @@ class Plugin_Name_Admin_Loader {
|
|||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,10 +1,15 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* Define a short description for what this class does.
|
||||
* Define a short description for what this class does (no period)
|
||||
*
|
||||
* @since x.x.x
|
||||
* @package TODO
|
||||
* @package Plugin_Name
|
||||
* @subpackage Plugin_Name/admin
|
||||
* @author Your Name <email@example.com>
|
||||
* @license GPL-2.0+
|
||||
* @link http://example.com
|
||||
* @copyright 2014 Your Name or Company Name
|
||||
* @since 1.0.0
|
||||
*/
|
||||
|
||||
/**
|
||||
|
@ -12,11 +17,9 @@
|
|||
*
|
||||
* Define a longer description for the purpose of this class.
|
||||
*
|
||||
* @package TODO
|
||||
* @author Your Name <your@email.com>
|
||||
* @license GPL-2.0+
|
||||
* @link URL
|
||||
* @copyright 2014 Your Name of Your Company Name
|
||||
* @package Plugin_Name
|
||||
* @subpackage Plugin_Name/admin
|
||||
* @author Your Name <email@example.com>
|
||||
*/
|
||||
class Plugin_Name_Admin {
|
||||
|
||||
|
@ -26,7 +29,6 @@ class Plugin_Name_Admin {
|
|||
* Long description.
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @link URL
|
||||
*/
|
||||
public function enqueue_styles() {
|
||||
|
||||
|
@ -52,7 +54,6 @@ class Plugin_Name_Admin {
|
|||
* Long description.
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @link URL
|
||||
*/
|
||||
public function enqueue_scripts() {
|
||||
|
||||
|
|
|
@ -1,10 +1,15 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* Define a short description for what this file does.
|
||||
* Define a short description for what this file does (no period)
|
||||
*
|
||||
* @since x.x.x
|
||||
* @package TODO
|
||||
* @package Plugin_Name
|
||||
* @subpackage Plugin_Name/admin/partials
|
||||
* @author Your Name <email@example.com>
|
||||
* @license GPL-2.0+
|
||||
* @link http://example.com
|
||||
* @copyright 2014 Your Name or Company Name
|
||||
* @since 1.0.0
|
||||
*/
|
||||
|
||||
/**
|
||||
|
@ -12,11 +17,9 @@
|
|||
*
|
||||
* Define a longer description for the purpose of this file.
|
||||
*
|
||||
* @package TODO
|
||||
* @author Your Name <your@email.com>
|
||||
* @license GPL-2.0+
|
||||
* @link URL
|
||||
* @copyright 2014 Your Name of Your Company Name
|
||||
* @package Plugin_Name
|
||||
* @subpackage Plugin_Name/admin/partials
|
||||
* @author Your Name <email@example.com>
|
||||
*/
|
||||
?>
|
||||
|
||||
|
|
Loading…
Reference in a new issue