You are here

GeofieldBackend.php in Geofield 8

File

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

namespace Drupal\geofield\Annotation;

use Drupal\Component\Annotation\Plugin;

/**
 * Defines a GeofieldBackend annotation object.
 *
 * @ingroup geofield_api
 *
 * @Annotation
 */
class GeofieldBackend extends Plugin {

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

  /**
   * The administrative label of the geofield backend.
   *
   * @var \Drupal\Core\Annotation\Translation
   *
   * @ingroup plugin_translatable
   */
  public $admin_label = '';

  /**
   * The description of the geofield backend.
   *
   * @var \Drupal\Core\Annotation\Translation
   *
   * @ingroup plugin_translatable
   */
  public $description = '';

}

Classes

Namesort descending Description
GeofieldBackend Defines a GeofieldBackend annotation object.