Ejemplo n.º 1
0
 /**
  * Create / Get the instance of this class.
  *
  * @return WP2D_Options Instance of this class.
  */
 public static function instance()
 {
     if (!isset(self::$_instance)) {
         self::$_instance = new self();
         self::$_instance->_setup();
     }
     return self::$_instance;
 }