1
0
Fork 0
mirror of https://github.com/inretio/WordPress-Plugin-Boilerplate synced 2024-05-02 11:23:15 +03:00

removing redundant section headers since properties, constructors, and functions

This commit is contained in:
Tom McFarlin 2013-05-10 07:45:32 -04:00
parent 5f8dbab63b
commit ae0394724e

View file

@ -56,10 +56,6 @@ if ( ! defined('PLUGIN_NAME_VERSION' ) ) {
*/ */
class PluginName { class PluginName {
/*--------------------------------------------*
* Properties
*--------------------------------------------*/
/** /**
* Refers to a single instance of this class. * Refers to a single instance of this class.
* *
@ -74,10 +70,6 @@ class PluginName {
*/ */
protected $plugin_screen_slug = null; protected $plugin_screen_slug = null;
/*--------------------------------------------*
* Constructor
*--------------------------------------------*/
/** /**
* Creates or returns an instance of this class. * Creates or returns an instance of this class.
* *
@ -286,10 +278,6 @@ class PluginName {
include_once('views/admin.php'); include_once('views/admin.php');
} }
/*--------------------------------------------*
* Core Functions
*---------------------------------------------*/
/* /*
* NOTE: Actions are points in the execution of a page or process * NOTE: Actions are points in the execution of a page or process
* lifecycle that WordPress fires. * lifecycle that WordPress fires.