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