1
0
Fork 0
mirror of https://github.com/inretio/WordPress-Plugin-Boilerplate synced 2024-04-28 09:23:15 +03:00

Adding documentation to two missing functions

Fixes #192
This commit is contained in:
Tom McFarlin 2014-07-30 15:03:33 -04:00
parent 918ee9e5f9
commit 43ee54a0ee
2 changed files with 8 additions and 4 deletions

View file

@ -17,9 +17,13 @@
*/
/**
* Short Description. (use period)
* The core plugin file.
*
* Long Description.
* This is the core plugin file that 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.
*
* @since 1.0.0
* @package Plugin_Name

View file

@ -45,8 +45,8 @@ register_activation_hook( __FILE__, array( 'Plugin_Name_Activator', 'activate' )
register_activation_hook( __FILE__, array( 'Plugin_Name_Deactivator', 'deactivate' ) );
/**
* The base class used to define certain functionality and attributes used in both
* the the dashboard-specific and public-facing functionality.
* This is the core plugin file 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';