• Модуль: catalog
  • Путь к файлу: ~/bitrix/modules/catalog/lib/discount/discountmanager.php
  • Класс: BitrixCatalogDiscountDiscountManager
  • Вызов: DiscountManager::getPriceDataByPriceId
static function getPriceDataByPriceId($priceId)
{
	foreach(self::$preloadedPriceData as $priceData)
	{
		if($priceData['ID'] == $priceId)
		{
			return $priceData;
		}
	}

	return null;
}