You are here

Austria.php in Geolocation Field 8.2

File

modules/geolocation_google_maps/src/Plugin/geolocation/GeocoderCountryFormatting/Austria.php
View source
<?php

namespace Drupal\geolocation_google_maps\Plugin\geolocation\GeocoderCountryFormatting;

use Drupal\geolocation_google_maps\GoogleCountryFormattingBase;

/**
 * Provides address formatting.
 *
 * @GeocoderCountryFormatting(
 *   id = "google_at",
 *   country_code = "at",
 *   geocoder = "google_geocoding_api",
 * )
 */
class Austria extends GoogleCountryFormattingBase {

  /**
   * {@inheritdoc}
   */
  public function format(array $atomics) {
    $address_elements = parent::format($atomics);
    if ($atomics['streetNumber'] && $atomics['route']) {
      $address_elements['addressLine1'] = $atomics['route'] . ' ' . $atomics['streetNumber'];
    }
    return $address_elements;
  }

}

Classes

Namesort descending Description
Austria Provides address formatting.