• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/delivery/services/manager.php
  • Класс: BitrixSaleDeliveryServicesManager
  • Вызов: Manager::getIdCodeCached
static function getIdCodeCached($value, $type)
{
	$result = false;
	$ttl = 315360000;
	$cacheId = "SALE_DELIVERY_ID_CODE_MAP_".($type == "id" ? "I" : "C")."_".$value;
	$cacheManager = BitrixMainApplication::getInstance()->getManagedCache();

	if($cacheManager->read($ttl, $cacheId))
		$result = $cacheManager->get($cacheId);

	return $result;
}