Merge pull request #122 from rockaut/master

Update class-plugin-name-admin.php
This commit is contained in:
Tom McFarlin 2013-11-11 15:03:14 -08:00
commit 4a4d3f524d
1 changed files with 18 additions and 0 deletions

View File

@ -48,6 +48,15 @@ class Plugin_Name_Admin {
* @since 1.0.0
*/
private function __construct() {
/*
* TODO :
*
* - Decomment following lines if the admin class should only be available for super admins
*/
/* if( ! is_super_admin() ) {
return;
} */
/*
* Call $plugin_slug from public plugin class.
@ -90,6 +99,15 @@ class Plugin_Name_Admin {
* @return object A single instance of this class.
*/
public static function get_instance() {
/*
* TODO :
*
* - Decomment following lines if the admin class should only be available for super admins
*/
/* if( ! is_super_admin() ) {
return;
} */
// If the single instance hasn't been set, set it now.
if ( null == self::$instance ) {