GeocoderCountryFormatting.php in Geolocation Field 8.3
Same filename and directory in other branches
Namespace
Drupal\geolocation\AnnotationFile
src/Annotation/GeocoderCountryFormatting.phpView source
<?php
namespace Drupal\geolocation\Annotation;
use Drupal\Component\Annotation\Plugin;
/**
* Defines a GeocoderCountryFormatting annotation object.
*
* @see \Drupal\geolocation\GeocoderCountryFormattingManager
* @see plugin_api
*
* @Annotation
*/
class GeocoderCountryFormatting extends Plugin {
/**
* The ID.
*
* @var string
*/
public $id;
/**
* The country code.
*
* @var string
*/
public $countryCode;
/**
* The geocoder ID.
*
* @var string
*/
public $geocoder;
}
Classes
Name | Description |
---|---|
GeocoderCountryFormatting | Defines a GeocoderCountryFormatting annotation object. |