class Geometry in Geocoder 7.2
Same name in this branch
- 7.2 src/Geocoder/Dumper/Geometry.php \Geocoder\Dumper\Geometry
- 7.2 src/Plugin/Geocoder/Dumper/Geometry.php \Drupal\geocoder\Plugin\Geocoder\Dumper\Geometry
Class Geometry.
Plugin annotation
@GeocoderPlugin(
id = "geometry",
name = "Geometry",
type = "Dumper"
)
Hierarchy
- class \Drupal\geocoder\Plugin\GeocoderPlugin extends \Drupal\Component\Plugin\PluginBase implements GeocoderPluginInterface
- class \Drupal\geocoder\Plugin\Geocoder\Dumper implements DumperInterface
- class \Drupal\geocoder\Plugin\Geocoder\Dumper\Geometry implements DumperInterface
- class \Drupal\geocoder\Plugin\Geocoder\Dumper implements DumperInterface
Expanded class hierarchy of Geometry
File
- src/
Plugin/ Geocoder/ Dumper/ Geometry.php, line 22 - The Geometry plugin.
Namespace
Drupal\geocoder\Plugin\Geocoder\DumperView source
class Geometry extends Dumper implements DumperInterface {
/**
* @inheritdoc
*/
public function dump(Address $address) {
$handler = new \Geocoder\Dumper\Geometry();
return $handler
->dump($address);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
GeocoderPlugin:: |
public | function |
Get a cache object based on the cache ID. Overrides GeocoderPluginInterface:: |
|
GeocoderPlugin:: |
public | function |
Stores data in the persistent cache. Overrides GeocoderPluginInterface:: |
|
GeocoderPlugin:: |
public | function |
Generates a cache ID based on the arguments. Overrides GeocoderPluginInterface:: |
|
GeocoderPlugin:: |
public | function |
Get the object's configuration. Overrides GeocoderPluginInterface:: |
|
GeocoderPlugin:: |
public | function |
Init method launched after object initialization. Overrides GeocoderPluginInterface:: |
18 |
GeocoderPlugin:: |
public | function |
Set the object's configuration. Overrides GeocoderPluginInterface:: |
|
GeocoderPlugin:: |
public | function | GeocoderPlugin constructor. | 1 |
Geometry:: |
public | function |
@inheritdoc Overrides Dumper:: |