You are here

MapProvider.php in Geolocation Field 8.3

Same filename and directory in other branches
  1. 8.2 src/Annotation/MapProvider.php

File

src/Annotation/MapProvider.php
View source
<?php

namespace Drupal\geolocation\Annotation;

use Drupal\Component\Annotation\Plugin;

/**
 * Defines a MapProvider annotation object.
 *
 * @see \Drupal\geolocation\MapProviderManager
 * @see plugin_api
 *
 * @Annotation
 */
class MapProvider extends Plugin {

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

  /**
   * The name of the MapProvider.
   *
   * @var \Drupal\Core\Annotation\Translation
   *
   * @ingroup plugin_translatable
   */
  public $name;

  /**
   * The description of the MapProvider.
   *
   * @var \Drupal\Core\Annotation\Translation
   *
   * @ingroup plugin_translatable
   */
  public $description;

}

Classes

Namesort descending Description
MapProvider Defines a MapProvider annotation object.