• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/basketpropertiesbase.php
  • Класс: BitrixSaleBasketPropertiesCollectionBase
  • Вызов: BasketPropertiesCollectionBase::getPropertyValues
public function getPropertyValues()
{
	$result = array();

	/** @var BasketPropertyItemBase $property */
	foreach($this->collection as $property)
	{
		$value = $property->getFieldValues();
		$propertyValue = static::bringingPropertyValue($value);
		if (!$propertyValue)
		{
			continue;
		}

		$result[$propertyValue['CODE']] = $propertyValue;
	}

	return $result;
}