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

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

	return $result;
}