You are here

GeocoderField.php in Geocoder 8.3

Same filename and directory in other branches
  1. 8.2 modules/geocoder_field/src/Annotation/GeocoderField.php

File

modules/geocoder_field/src/Annotation/GeocoderField.php
View source
<?php

namespace Drupal\geocoder_field\Annotation;

use Drupal\Component\Annotation\Plugin;

/**
 * Defines a geocoder field plugin annotation object.
 *
 * @Annotation
 */
class GeocoderField extends Plugin {

  /**
   * The plugin ID.
   *
   * @var string
   */
  public $id;

  /**
   * The human-readable name of the geocoder field plugin.
   *
   * @var \Drupal\Core\Annotation\Translation
   *
   * @ingroup plugin_translatable
   */
  public $label;

  /**
   * A list of field types to be handled by this plugin.
   *
   * @var array
   */
  public $fieldTypes;

}

Classes

Namesort descending Description
GeocoderField Defines a geocoder field plugin annotation object.