• Модуль: iblock
  • Путь к файлу: ~/bitrix/modules/iblock/classes/general/comp_parameters.php
  • Класс: CIBlockParameters
  • Вызов: CIBlockParameters::getCatalogPrices
static function getCatalogPrices()
{
	if (!isset(self::$catalogPriceCache))
	{
		self::$catalogPriceCache = array();
		if (self::$catalogIncluded === null)
			self::$catalogIncluded = Loader::includeModule('catalog');
		if (self::$catalogIncluded)
			self::$catalogPriceCache = CCatalogGroup::GetListArray();
	}
	return self::$catalogPriceCache;
}