class Geocode in Search API Location 8
Represents the Raw Location Input.
Plugin annotation
@LocationInput(
id = "geocode",
label = @Translation("Geocoded input"),
description = @Translation("Let user enter an address that will be geocoded."),
)
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
- class \Drupal\search_api\Plugin\HideablePluginBase implements HideablePluginInterface
- class \Drupal\search_api\Plugin\ConfigurablePluginBase implements ConfigurablePluginInterface uses PluginDependencyTrait
- class \Drupal\search_api_location\LocationInput\LocationInputPluginBase implements LocationInputInterface
- class \Drupal\search_api_location_geocoder\Plugin\search_api_location\location_input\Geocode implements ContainerFactoryPluginInterface
- class \Drupal\search_api_location\LocationInput\LocationInputPluginBase implements LocationInputInterface
- class \Drupal\search_api\Plugin\ConfigurablePluginBase implements ConfigurablePluginInterface uses PluginDependencyTrait
- class \Drupal\search_api\Plugin\HideablePluginBase implements HideablePluginInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
Expanded class hierarchy of Geocode
File
- modules/
search_api_location_geocoder/ src/ Plugin/ search_api_location/ location_input/ Geocode.php, line 22
Namespace
Drupal\search_api_location_geocoder\Plugin\search_api_location\location_inputView source
class Geocode extends LocationInputPluginBase implements ContainerFactoryPluginInterface {
/**
* The geocoder service.
*
* @var \Drupal\geocoder\Geocoder
*/
protected $geocoder;
/**
* The geocoder config.
*
* @var \Drupal\Core\Config\ImmutableConfig
*/
protected $geocoderConfig;
/**
* Constructs a Geocode Location input Plugin.
*
* @param array $configuration
* A configuration array containing information about the plugin instance.
* @param string $plugin_id
* The plugin_id for the plugin instance.
* @param mixed $plugin_definition
* The plugin implementation definition.
* @param \Drupal\geocoder\Geocoder $geocoder
* The geocoder service.
* @param \Drupal\Core\Config\ConfigFactoryInterface $config_factory
* A config factory for retrieving required config objects.
*/
public function __construct(array $configuration, $plugin_id, $plugin_definition, Geocoder $geocoder, ConfigFactoryInterface $config_factory) {
parent::__construct($configuration, $plugin_id, $plugin_definition);
$this->geocoder = $geocoder;
$this->geocoderConfig = $config_factory
->get('geocoder.settings');
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
return new static($configuration, $plugin_id, $plugin_definition, $container
->get('geocoder'), $container
->get('config.factory'));
}
/**
* {@inheritdoc}
*/
public function getParsedInput(array $input) {
if (empty($input['value'])) {
throw new \InvalidArgumentException('Input doesn\'t contain a location value.');
}
else {
$active_plugins = $this
->getActivePlugins();
$plugin_options = (array) $this->geocoderConfig
->get('plugins_options');
/** @var \Geocoder\Model\AddressCollection $geocoded_addresses */
$geocoded_addresses = $this->geocoder
->geocode($input['value'], $active_plugins, $plugin_options);
if ($geocoded_addresses) {
return $geocoded_addresses
->first()
->getLatitude() . ',' . $geocoded_addresses
->first()
->getLongitude();
}
}
return NULL;
}
/**
* Gets the active geocoder plugins.
*/
protected function getActivePlugins() {
$plugins = $this->configuration['plugins'];
uasort($plugins, [
SortArray::class,
'sortByWeightProperty',
]);
$active_plugins = [];
foreach ($plugins as $id => $plugin) {
if ($plugin['checked']) {
$active_plugins[$id] = $id;
}
}
return $active_plugins;
}
/**
* {@inheritdoc}
*/
public function defaultConfiguration() {
$configuration = parent::defaultConfiguration();
$configuration['plugins'] = [];
$geocoderpluginmanager = \Drupal::service('plugin.manager.geocoder.provider');
foreach ($geocoderpluginmanager
->getPluginsAsOptions() as $plugin_id => $plugin_name) {
$configuration['plugins'][$plugin_id]['checked'] = 0;
$configuration['plugins'][$plugin_id]['weight'] = 0;
}
return $configuration;
}
/**
* {@inheritdoc}
*/
public function buildConfigurationForm(array $form, FormStateInterface $form_state) {
$geocoderpluginmanager = \Drupal::service('plugin.manager.geocoder.provider');
$form['plugins'] = [
'#type' => 'table',
'#header' => [
$this
->t('Geocoder plugins'),
$this
->t('Weight'),
],
'#tabledrag' => [
[
'action' => 'order',
'relationship' => 'sibling',
'group' => 'plugins-order-weight',
],
],
'#caption' => $this
->t('Select the Geocoder plugins to use, you can reorder them. The first one to return a valid value will be used.'),
];
foreach ($geocoderpluginmanager
->getPluginsAsOptions() as $plugin_id => $plugin_name) {
$form['plugins'][$plugin_id] = [
'checked' => [
'#type' => 'checkbox',
'#title' => $plugin_name,
'#default_value' => $this->configuration['plugins'][$plugin_id]['checked'],
],
'weight' => [
'#type' => 'weight',
'#title' => $this
->t('Weight for @title', [
'@title' => $plugin_name,
]),
'#title_display' => 'invisible',
'#attributes' => [
'class' => [
'plugins-order-weight',
],
],
'#default_value' => $this->configuration['plugins'][$plugin_id]['weight'],
],
'#attributes' => [
'class' => [
'draggable',
],
],
];
}
$form += parent::buildConfigurationForm($form, $form_state);
return $form;
}
/**
* Form validation handler.
*
* @param array $form
* An associative array containing the structure of the plugin form as built
* by static::buildConfigurationForm().
* @param \Drupal\Core\Form\FormStateInterface $form_state
* The current state of the complete form.
*/
public function validateConfigurationForm(array &$form, FormStateInterface $form_state) {
// TODO: Implement validateConfigurationForm() method.
}
/**
* Form submission handler.
*
* @param array $form
* An associative array containing the structure of the plugin form as built
* by static::buildConfigurationForm().
* @param \Drupal\Core\Form\FormStateInterface $form_state
* The current state of the complete form.
*/
public function submitConfigurationForm(array &$form, FormStateInterface $form_state) {
// TODO: Implement submitConfigurationForm() method.
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ConfigurablePluginBase:: |
public | function |
Calculates dependencies for the configured plugin. Overrides DependentPluginInterface:: |
6 |
ConfigurablePluginBase:: |
protected | function | Calculates and adds dependencies of a specific plugin instance. | |
ConfigurablePluginBase:: |
public | function |
Gets this plugin's configuration. Overrides ConfigurableInterface:: |
|
ConfigurablePluginBase:: |
public | function |
Returns the plugin's description. Overrides ConfigurablePluginInterface:: |
|
ConfigurablePluginBase:: |
protected | function | Calculates and returns dependencies of a specific plugin instance. | |
ConfigurablePluginBase:: |
public | function |
Returns the label for use on the administration pages. Overrides ConfigurablePluginInterface:: |
|
ConfigurablePluginBase:: |
protected | function | Wraps the module handler. | |
ConfigurablePluginBase:: |
public | function |
Informs the plugin that some of its dependencies are being removed. Overrides ConfigurablePluginInterface:: |
5 |
ConfigurablePluginBase:: |
public | function |
Sets the configuration for this plugin instance. Overrides ConfigurableInterface:: |
3 |
ConfigurablePluginBase:: |
protected | function | Wraps the theme handler. | |
DependencySerializationTrait:: |
protected | property | An array of entity type IDs keyed by the property name of their storages. | |
DependencySerializationTrait:: |
protected | property | An array of service IDs keyed by property name used for serialization. | |
DependencySerializationTrait:: |
public | function | 1 | |
DependencySerializationTrait:: |
public | function | 2 | |
DependencyTrait:: |
protected | property | The object's dependencies. | |
DependencyTrait:: |
protected | function | Adds multiple dependencies. | |
DependencyTrait:: |
protected | function | Adds a dependency. | |
Geocode:: |
protected | property | The geocoder service. | |
Geocode:: |
protected | property | The geocoder config. | |
Geocode:: |
public | function |
Form constructor. Overrides LocationInputPluginBase:: |
|
Geocode:: |
public static | function |
Creates an instance of the plugin. Overrides ConfigurablePluginBase:: |
|
Geocode:: |
public | function |
Gets default configuration for this plugin. Overrides LocationInputPluginBase:: |
|
Geocode:: |
protected | function | Gets the active geocoder plugins. | |
Geocode:: |
public | function |
Returns the parsed user input. Overrides LocationInputInterface:: |
|
Geocode:: |
public | function |
Form submission handler. Overrides PluginFormInterface:: |
|
Geocode:: |
public | function |
Form validation handler. Overrides PluginFormInterface:: |
|
Geocode:: |
public | function |
Constructs a Geocode Location input Plugin. Overrides ConfigurablePluginBase:: |
|
HideablePluginBase:: |
public | function |
Determines whether this plugin should be hidden in the UI. Overrides HideablePluginInterface:: |
1 |
LocationInputPluginBase:: |
public | function |
Returns a form to configure settings for the plugin. Overrides LocationInputInterface:: |
1 |
LocationInputPluginBase:: |
public | function |
Checks if the location passed in is correct for the current settings. Overrides LocationInputInterface:: |
1 |
MessengerTrait:: |
protected | property | The messenger. | 29 |
MessengerTrait:: |
public | function | Gets the messenger. | 29 |
MessengerTrait:: |
public | function | Sets the messenger. | |
PluginBase:: |
protected | property | Configuration information passed into the plugin. | 1 |
PluginBase:: |
protected | property | The plugin implementation definition. | 1 |
PluginBase:: |
protected | property | The plugin_id. | |
PluginBase:: |
constant | A string which is used to separate base plugin IDs from the derivative ID. | ||
PluginBase:: |
public | function |
Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the definition of the plugin implementation. Overrides PluginInspectionInterface:: |
3 |
PluginBase:: |
public | function |
Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface:: |
|
PluginBase:: |
public | function | Determines if the plugin is configurable. | |
PluginDependencyTrait:: |
protected | function | Calculates and adds dependencies of a specific plugin instance. Aliased as: traitCalculatePluginDependencies | 1 |
PluginDependencyTrait:: |
protected | function | Calculates and returns dependencies of a specific plugin instance. Aliased as: traitGetPluginDependencies | |
PluginDependencyTrait:: |
protected | function | Wraps the module handler. Aliased as: traitModuleHandler | 1 |
PluginDependencyTrait:: |
protected | function | Wraps the theme handler. Aliased as: traitThemeHandler | 1 |
StringTranslationTrait:: |
protected | property | The string translation service. | 1 |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. |