/**
  * Кэш личных настроек пользователя
  *
  * @return CArrayList|null
  */
 private static function getCacheUserSettings()
 {
     if (is_null(self::$_cacheUserSettings)) {
         self::$_cacheUserSettings = new CArrayList();
     }
     return self::$_cacheUserSettings;
 }