FreeGeoIp.php in Geocoder 8.3
Same filename and directory in other branches
Namespace
Drupal\geocoder\Plugin\Geocoder\ProviderFile
src/Plugin/Geocoder/Provider/FreeGeoIp.phpView source
<?php
namespace Drupal\geocoder\Plugin\Geocoder\Provider;
use Drupal\geocoder\ConfigurableProviderUsingHandlerWithAdapterBase;
/**
* Provides a FreeGeoIp geocoder provider plugin.
*
* @GeocoderProvider(
* id = "freegeoip",
* name = "FreeGeoIp",
* handler = "\Geocoder\Provider\FreeGeoIp\FreeGeoIp",
* arguments = {
* "baseUrl" = "https://freegeoip.net/json/%s"
* }
* )
*/
class FreeGeoIp extends ConfigurableProviderUsingHandlerWithAdapterBase {
}