• Модуль: catalog
  • Путь к файлу: ~/bitrix/modules/catalog/lib/controller/productpropertysection.php
  • Класс: BitrixCatalogControllerProductPropertySection
  • Вызов: ProductPropertySection::getAction
public function getAction(int $propertyId): ?array
{
	$checkPropertyResult = $this->checkProperty($propertyId);
	if (!$checkPropertyResult->isSuccess())
	{
		$this->addErrors($checkPropertyResult->getErrors());
		return null;
	}

	return ['PRODUCT_PROPERTY_SECTION' => $this->get($propertyId)];
}