mirror of
https://github.com/inretio/WordPress-Plugin-Boilerplate
synced 2024-12-22 11:53:53 +02:00
Improving docblocks
* Documenting the plugin file * Changing the docblock to read 'class', not 'file' Related #199
This commit is contained in:
parent
6d6f6399f7
commit
f3133d8cb5
2 changed files with 12 additions and 10 deletions
|
@ -1,10 +1,10 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* The core plugin file
|
||||
* The core plugin class
|
||||
*
|
||||
* This is the core plugin file that is used to define internationalization,
|
||||
* dashboard-specific hooks, and public-facing site hooks.
|
||||
* This is used to define internationalization, dashboard-specific hooks, and
|
||||
* public-facing site hooks.
|
||||
*
|
||||
* Also maintains the unique identifier of this plugin as well as the current
|
||||
* version of the plugin.
|
||||
|
@ -17,10 +17,10 @@
|
|||
*/
|
||||
|
||||
/**
|
||||
* The core plugin file.
|
||||
* The core plugin class
|
||||
*
|
||||
* This is the core plugin file that is used to define internationalization,
|
||||
* dashboard-specific hooks, and public-facing site hooks.
|
||||
* This is used to define internationalization, dashboard-specific hooks, and
|
||||
* public-facing site hooks.
|
||||
*
|
||||
* Also maintains the unique identifier of this plugin as well as the current
|
||||
* version of the plugin.
|
||||
|
|
|
@ -1,10 +1,12 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
/**
|
||||
* Short Description (no period for file headers)
|
||||
* The plugin bootstrap file
|
||||
*
|
||||
* Long Description.
|
||||
* This file is read my WordPress to generate the plugin information in the plugin
|
||||
* Dashboard. This file also includes all of the dependencies used by the plugin,
|
||||
* registers the activation and deactivation functions, and defines a function
|
||||
* this starts the plugin.
|
||||
*
|
||||
* @link URL
|
||||
* @since 1.0.0
|
||||
|
@ -45,7 +47,7 @@ register_activation_hook( __FILE__, array( 'Plugin_Name_Activator', 'activate' )
|
|||
register_activation_hook( __FILE__, array( 'Plugin_Name_Deactivator', 'deactivate' ) );
|
||||
|
||||
/**
|
||||
* This is the core plugin file that is used to define internationalization,
|
||||
* The core plugin class that is used to define internationalization,
|
||||
* dashboard-specific hooks, and public-facing site hooks.
|
||||
*/
|
||||
require_once plugin_dir_path( __FILE__ ) . 'includes/class-plugin-name.php';
|
||||
|
|
Loading…
Reference in a new issue