Product::getBindings

  1. Bitrix24 API (v. 23.675.0)
  2. catalog
  3. Product
  4. getBindings
  • Модуль: catalog
  • Путь к файлу: ~/bitrix/modules/catalog/lib/controller/product.php
  • Класс: BitrixCatalogControllerProduct
  • Вызов: Product::getBindings
static function getBindings(): array
{
	$entity = (new static())->getEntity();
	$class = $entity->getNamespace() . $entity->getName();
	$model = BitrixCatalogModelProduct::class;

	return [
		Event::makeEventName($model,DataManager::EVENT_ON_AFTER_ADD) => $entity->getModule().'.'.$entity->getName().'.on.add',
		Event::makeEventName($model,DataManager::EVENT_ON_AFTER_UPDATE) => $entity->getModule().'.'.$entity->getName().'.on.update',
		Event::makeEventName($class,DataManager::EVENT_ON_DELETE) => $entity->getModule().'.'.$entity->getName().'.on.delete',
	];
}

Добавить комментарий