• Модуль: catalog
  • Путь к файлу: ~/bitrix/modules/catalog/lib/product/catalogprovider.php
  • Класс: BitrixCatalogProductCatalogProvider
  • Вызов: CatalogProvider::getHitCache
static function getHitCache($type, $key, array $fields = array())
	{
		if (!empty(self::$hitCache[$type]) && !empty(self::$hitCache[$type][$key]))
		{
			if (static::isExistsHitCache($type, $key, $fields))
			{
				return self::$hitCache[$type][$key];
			}
		}

		return false;
	}