/**
  * Returns the configuration.
  * @return CommentsConfig
  */
 public static function load()
 {
     return ConfigManager::load(__CLASS__, 'kernel', 'comments-config');
 }
 /**
  * Returns the configuration.
  * @return ContentFormattingConfig
  */
 public static function load()
 {
     return ConfigManager::load(__CLASS__, 'kernel', 'content-formatting');
 }
 /**
  * Returns the configuration.
  * @return ServerEnvironmentConfig
  */
 public static function load()
 {
     return ConfigManager::load(__CLASS__, 'kernel', 'server-environment-config');
 }
 /**
  * Returns the configuration.
  * @return MaintenanceConfig
  */
 public static function load()
 {
     return ConfigManager::load(__CLASS__, 'kernel', 'maintenance');
 }
 /**
  * Returns the configuration.
  * @return CustomizationConfig
  */
 public static function load()
 {
     return ConfigManager::load(__CLASS__, 'kernel', 'customization-config');
 }
 /**
  * Returns the configuration.
  * @return DownloadConfig
  */
 public static function load()
 {
     return ConfigManager::load(__CLASS__, 'download', 'config');
 }
 /**
  * Returns the configuration.
  * @return AuthenticationConfig
  */
 public static function load()
 {
     return ConfigManager::load(__CLASS__, 'kernel', 'authentication-config');
 }
 /**
  * Returns the configuration.
  * @return NewsletterConfig
  */
 public static function load()
 {
     return ConfigManager::load(__CLASS__, 'newsletter', 'config');
 }
 /**
  * Returns the configuration.
  * @return FileUploadConfig
  */
 public static function load()
 {
     return ConfigManager::load(__CLASS__, 'kernel', 'file-upload-config');
 }
 /**
  * Returns the configuration.
  * @return LastUseDateConfig
  */
 public static function load()
 {
     return ConfigManager::load(__CLASS__, 'kernel', 'last-use-date');
 }
 /**
  * @method Load the bugtracker configuration.
  * @return BugtrackerConfig
  */
 public static function load()
 {
     return ConfigManager::load(__CLASS__, 'bugtracker', 'config');
 }
示例#12
0
 /**
  * Returns the configuration.
  * @return GeneralConfig
  */
 public static function load()
 {
     return ConfigManager::load(__CLASS__, 'kernel', 'general-config');
 }
 /**
  * Returs the configuration.
  * @return WritingPadConfig The configuration
  */
 public static function load()
 {
     return ConfigManager::load(__CLASS__, 'kernel', 'writing-pad');
 }
 /**
  * Returns the configuration.
  * @return ContentManagementConfig
  */
 public static function load()
 {
     return ConfigManager::load(__CLASS__, 'kernel', 'content-management');
 }
 /**
  * Returns the configuration.
  * @return ReCaptchaConfig
  */
 public static function load()
 {
     return ConfigManager::load(__CLASS__, 'recaptcha', 'config');
 }
示例#16
0
 /**
  * Returns the configuration.
  * @return ShoutboxConfig
  */
 public static function load()
 {
     return ConfigManager::load(__CLASS__, 'shoutbox', 'config');
 }
 /**
  * @method Load the guestbook configuration.
  * @return GuestbookConfig
  */
 public static function load()
 {
     return ConfigManager::load(__CLASS__, 'guestbook', 'config');
 }
示例#18
0
 /**
  * Returns the configuration.
  * @return SecurityConfig
  */
 public static function load()
 {
     return ConfigManager::load(__CLASS__, 'kernel', 'security');
 }
示例#19
0
 /**
  * @desc Loads and returns the themes cached data.
  * @return themesConfig The cached data
  */
 public static function load()
 {
     return ConfigManager::load(__CLASS__, 'kernel', 'themes');
 }
 /**
  * Returns the configuration.
  * @return UserAccountsConfig
  */
 public static function load()
 {
     return ConfigManager::load(__CLASS__, 'kernel', 'user-accounts');
 }