GeofieldBackend.php in Geofield 8
Namespace
Drupal\geofield\AnnotationFile
src/Annotation/GeofieldBackend.phpView 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
Name | Description |
---|---|
GeofieldBackend | Defines a GeofieldBackend annotation object. |