• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/integration/location/format.php
  • Класс: Bitrix\Crm\Integration\location\Format
  • Вызов: Format::onInitialFormatCodeSet
static function onInitialFormatCodeSet(): EventResult
{
	$crmAddressFormatCode = EntityAddressFormatter::getFormatID();
	$locAddressFormatCode = static::getLocationFormatCode($crmAddressFormatCode);

	if($locAddressFormatCode)
	{
		$result = new EventResult(
			EventResult::SUCCESS,
			[
				"formatCode" => $locAddressFormatCode
			],
			'location'
		);
	}
	else
	{
		$result = new EventResult(EventResult::ERROR);
	}

	return $result;
}