Exemplo n.º 1
0
 /**
  * Main Followers_Admin Instance
  *
  * Ensures only one instance of Followers_Admin is loaded or can be loaded.
  *
  * @since 1.0.0
  * @static
  * @return Main Followers_Admin instance
  */
 public static function instance()
 {
     if (is_null(self::$_instance)) {
         self::$_instance = new self();
     }
     return self::$_instance;
 }