You are here

class Geolocation in Geolocation Field 8.2

Same name in this branch
  1. 8.2 src/Feeds/Target/Geolocation.php \Drupal\geolocation\Feeds\Target\Geolocation
  2. 8.2 src/Plugin/Geocoder/Dumper/Geolocation.php \Drupal\geolocation\Plugin\Geocoder\Dumper\Geolocation
  3. 8.2 src/Plugin/Geocoder/Field/Geolocation.php \Drupal\geolocation\Plugin\Geocoder\Field\Geolocation
Same name and namespace in other branches
  1. 8.3 src/Plugin/Geocoder/Field/Geolocation.php \Drupal\geolocation\Plugin\Geocoder\Field\Geolocation
  2. 8 src/Plugin/Geocoder/Field/Geolocation.php \Drupal\geolocation\Plugin\Geocoder\Field\Geolocation

Provides a geolocation geocoder field plugin.

Plugin annotation


@GeocoderField(
  id = "geolocation",
  label = @Translation("Geolocation field plugin"),
  field_types = {
    "geolocation"
  }
)

Hierarchy

  • class \Drupal\geolocation\Plugin\Geocoder\Field\Geolocation extends \Drupal\geocoder_field\Plugin\Geocoder\Field\DefaultField

Expanded class hierarchy of Geolocation

15 string references to 'Geolocation'
geolocation.info.yml in ./geolocation.info.yml
geolocation.info.yml
geolocation_address.info.yml in modules/geolocation_address/geolocation_address.info.yml
modules/geolocation_address/geolocation_address.info.yml
geolocation_demo.info.yml in modules/geolocation_demo/geolocation_demo.info.yml
modules/geolocation_demo/geolocation_demo.info.yml
geolocation_geofield.info.yml in modules/geolocation_geofield/geolocation_geofield.info.yml
modules/geolocation_geofield/geolocation_geofield.info.yml
geolocation_google_maps.info.yml in modules/geolocation_google_maps/geolocation_google_maps.info.yml
modules/geolocation_google_maps/geolocation_google_maps.info.yml

... See full list

File

src/Plugin/Geocoder/Field/Geolocation.php, line 20

Namespace

Drupal\geolocation\Plugin\Geocoder\Field
View source
class Geolocation extends DefaultField {

  /**
   * {@inheritdoc}
   */
  public function getSettingsForm(FieldConfigInterface $field, array $form, FormStateInterface &$form_state) {
    $element = parent::getSettingsForm($field, $form, $form_state);

    // Hard-wire the dumper for geolocation fields.
    $element['dumper'] = [
      '#type' => 'value',
      '#value' => 'geolocation',
    ];
    return $element;
  }

}

Members