MaxMind.php in Geocoder 8.2
Same filename and directory in other branches
Namespace
Drupal\geocoder\Plugin\Geocoder\ProviderFile
src/Plugin/Geocoder/Provider/MaxMind.phpView source
<?php
namespace Drupal\geocoder\Plugin\Geocoder\Provider;
use Drupal\geocoder\ProviderUsingHandlerWithAdapterBase;
/**
* Provides a MaxMind geocoder provider plugin.
*
* @GeocoderProvider(
* id = "maxmind",
* name = "MaxMind",
* handler = "\Geocoder\Provider\MaxMind",
* arguments = {
* "apikey" = NULL,
* "service" = "f",
* "usessl" = FALSE
* }
* )
*/
class MaxMind extends ProviderUsingHandlerWithAdapterBase {
}