• Модуль: im
  • Путь к файлу: ~/bitrix/modules/im/lib/V2/Settings/CacheManager.php
  • Класс: BitrixImV2SettingsCacheManager
  • Вызов: CacheManager::getValue
public function getValue(): array
{
	$result = [];
	if ($this->cache->initCache(self::CACHE_TTL, $this->getCacheName(), $this->getCacheDir()))
	{
		$result = $this->cache->getVars();
	}

	return $result;
}