class Wkb in Geocoder 7.2
Same name and namespace in other branches
- 8.3 src/Plugin/Geocoder/Dumper/Wkb.php \Drupal\geocoder\Plugin\Geocoder\Dumper\Wkb
- 8.2 src/Plugin/Geocoder/Dumper/Wkb.php \Drupal\geocoder\Plugin\Geocoder\Dumper\Wkb
Class Wkb.
Plugin annotation
@GeocoderPlugin(
id = "wkb",
name = "WKB",
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\Wkb implements DumperInterface
- class \Drupal\geocoder\Plugin\Geocoder\Dumper implements DumperInterface
Expanded class hierarchy of Wkb
File
- src/
Plugin/ Geocoder/ Dumper/ Wkb.php, line 22 - The Wkb plugin.
Namespace
Drupal\geocoder\Plugin\Geocoder\DumperView source
class Wkb extends Dumper implements DumperInterface {
/**
* @inheritdoc
*/
public function dump(Address $address) {
$handler = new \Geocoder\Dumper\Wkb();
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 |
Wkb:: |
public | function |
@inheritdoc Overrides Dumper:: |