• Модуль: location
  • Путь к файлу: ~/bitrix/modules/location/lib/entity/address/converter/arrayconverter.php
  • Класс: Bitrix\Location\Entity\Address\Converter\ArrayConverter
  • Вызов: ArrayConverter::convertFieldsToArray
static function convertFieldsToArray(array $fieldsValues): array
{
	$result = [];

	foreach ($fieldsValues as $type => $value)
	{
		$result[$type] = $value;
	}

	return $result;
}