• Модуль: catalog
  • Путь к файлу: ~/bitrix/modules/catalog/lib/controller/productpropertybase.php
  • Класс: BitrixCatalogControllerProductPropertyBase
  • Вызов: ProductPropertyBase::getPropertyById
protected function getPropertyById(int $id)
{
	static $map = [];

	if (!isset($map[$id]))
	{
		$map[$id] = PropertyTable::getById($id)->fetch();
	}

	return $map[$id];
}