• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/entitymarker.php
  • Класс: BitrixSaleEntityMarker
  • Вызов: EntityMarker::getEntityType
static function getEntityType(InternalsEntity $entity)
{
	$typeList = static::getEntityTypeList();

	foreach ($typeList as $type => $entityClass)
	{
		if ($entity instanceof $entityClass)
		{
			return $type;
		}
	}

	return null;
}