예제 #1
0
 /**
  * Getter
  *
  * @return boolean
  */
 public function getUseBundledStyleSheet()
 {
     return EJqueryUiConfig::singleton()->getUseBundledStyleSheet();
 }
예제 #2
0
 /**
  * The singleton method.
  *
  * @return EJqueryUiTheme
  */
 public static function singleton()
 {
     if (!isset(self::$instance)) {
         $c = __CLASS__;
         self::$instance = new $c();
     }
     return self::$instance;
 }