You are here

class GeocoderDumper in Geocoder 8.2

Same name and namespace in other branches
  1. 8.3 src/Annotation/GeocoderDumper.php \Drupal\geocoder\Annotation\GeocoderDumper

Defines a geocoder dumper plugin annotation object.

Hierarchy

Expanded class hierarchy of GeocoderDumper

1 file declares its use of GeocoderDumper
DumperPluginManager.php in src/DumperPluginManager.php
8 classes are annotated with GeocoderDumper
AddressText in src/Plugin/Geocoder/Dumper/AddressText.php
Provides an address string geocoder dumper plugin.
Geohash in modules/geocoder_geofield/src/Plugin/Geocoder/Dumper/Geohash.php
Provides a geohash geocoder dumper plugin.
GeoJson in src/Plugin/Geocoder/Dumper/GeoJson.php
Provides a GeoJson geocoder dumper plugin.
Geometry in modules/geocoder_geofield/src/Plugin/Geocoder/Dumper/Geometry.php
Provides a Geometry geocoder dumper plugin.
Gpx in src/Plugin/Geocoder/Dumper/Gpx.php
Provides a GPX geocoder dumper plugin.

... See full list

File

src/Annotation/GeocoderDumper.php, line 10

Namespace

Drupal\geocoder\Annotation
View source
class GeocoderDumper extends GeocoderPluginBase {

  /**
   * The plugin handler.
   *
   * This is the fully qualified class name of the plugin handler.
   *
   * @var string
   */
  public $handler = NULL;

}

Members

Namesort descending Modifiers Type Description Overrides
GeocoderDumper::$handler public property The plugin handler.
GeocoderPluginBase::$id public property The plugin ID.
GeocoderPluginBase::$name public property The human-readable name of the geocoder plugin.
Plugin::$definition protected property The plugin definition read from the class annotation. 1
Plugin::get public function Gets the value of an annotation. Overrides AnnotationInterface::get 5
Plugin::getClass public function Gets the class of the annotated class. Overrides AnnotationInterface::getClass
Plugin::getId public function Gets the unique ID for this annotated class. Overrides AnnotationInterface::getId
Plugin::getProvider public function Gets the name of the provider of the annotated class. Overrides AnnotationInterface::getProvider
Plugin::parse protected function Parses an annotation into its definition.
Plugin::setClass public function Sets the class of the annotated class. Overrides AnnotationInterface::setClass
Plugin::setProvider public function Sets the name of the provider of the annotated class. Overrides AnnotationInterface::setProvider
Plugin::__construct public function Constructs a Plugin object. 2