Example #1
0
 /**
  * instance singleton self (DataObjects)
  * @access public
  */
 public static function create()
 {
     if (!isset(self::$_createInstance)) {
         if (is_null(self::$_createInstance)) {
             //$c = __CLASS__;
             self::$_createInstance = new frontend_controller_plugins();
         }
     }
     return self::$_createInstance;
 }