• Модуль: catalog
  • Путь к файлу: ~/bitrix/modules/catalog/lib/integration/pullmanager.php
  • Класс: BitrixCatalogIntegrationPullManager
  • Вызов: PullManager::getEventName
static function getEventName(string $eventName, $entityType = ''): string
{
	if(!empty($entityType) && (is_string($entityType) || is_numeric($entityType)))
	{
		$eventName .= '_' . $entityType;
	}

	return $eventName;
}