• Модуль: location
  • Путь к файлу: ~/bitrix/modules/location/lib/entity/address.php
  • Класс: BitrixLocationEntityAddress
  • Вызов: Address::getAllFieldsValues
public function getAllFieldsValues(): array
{
	$result = [];

	foreach ($this->getFieldCollection() as $field)
	{
		$result[$field->getType()] = $field->getValue();
	}

	return $result;
}