• Модуль: seo
  • Путь к файлу: ~/bitrix/modules/seo/lib/leadads/service.php
  • Класс: Bitrix\Seo\LeadAds\Service
  • Вызов: Service::getTypeByEngine
static function getTypeByEngine(string $engineCode): ?string
{
	foreach (static::getTypes() as $type)
	{
		if ($engineCode === static::getEngineCode($type))
		{
			return $type;
		}
	}

	return null;
}