• Модуль: location
  • Путь к файлу: ~/bitrix/modules/location/lib/source/osm/externalidbuilder.php
  • Класс: BitrixLocationSourceOsmExternalIdBuilder
  • Вызов: ExternalIdBuilder::buildExternalId
static function buildExternalId(string $osmType, int $osmId): ?string
{
	if (!$osmType || !$osmId)
	{
		return null;
	}

	return sprintf('%s%s', $osmType, $osmId);
}