mirror of
https://github.com/inretio/WordPress-Plugin-Boilerplate
synced 2024-12-22 11:53:53 +02:00
parent
e2dafd3473
commit
cd1f367899
1 changed files with 11 additions and 3 deletions
|
@ -40,13 +40,21 @@ License:
|
|||
class PluginName {
|
||||
|
||||
/*--------------------------------------------*
|
||||
* Attributes
|
||||
* Properties
|
||||
*--------------------------------------------*/
|
||||
|
||||
/** Refers to a single instance of this class. */
|
||||
/**
|
||||
* Refers to a single instance of this class.
|
||||
* @access private
|
||||
* @var object
|
||||
*/
|
||||
private static $instance = null;
|
||||
|
||||
/** Refers to the slug of the plugin screen. */
|
||||
/**
|
||||
* Refers to the slug of the plugin screen.
|
||||
* @access private
|
||||
* @var string
|
||||
*/
|
||||
private $plugin_screen_slug = null;
|
||||
|
||||
/*--------------------------------------------*
|
||||
|
|
Loading…
Reference in a new issue