View source
<?php
namespace Drupal\geolocation;
use Drupal\Core\Plugin\DefaultPluginManager;
use Drupal\Core\Cache\CacheBackendInterface;
use Drupal\Core\Extension\ModuleHandlerInterface;
use Drupal\Component\Utility\SortArray;
use Drupal\Core\StringTranslation\StringTranslationTrait;
class LocationManager extends DefaultPluginManager {
use StringTranslationTrait;
public function __construct(\Traversable $namespaces, CacheBackendInterface $cache_backend, ModuleHandlerInterface $module_handler) {
parent::__construct('Plugin/geolocation/Location', $namespaces, $module_handler, 'Drupal\\geolocation\\LocationInterface', 'Drupal\\geolocation\\Annotation\\Location');
$this
->alterInfo('geolocation_location_info');
$this
->setCacheBackend($cache_backend, 'geolocation_location');
}
public function getLocationPlugin($id, array $configuration = []) {
if (!$this
->hasDefinition($id)) {
return FALSE;
}
try {
$instance = $this
->createInstance($id, $configuration);
if ($instance) {
return $instance;
}
} catch (\Exception $e) {
return FALSE;
}
return FALSE;
}
public function getLocationOptionsForm(array $settings, $context = NULL) {
$form = [
'#type' => 'table',
'#prefix' => $this
->t('<h3>Centre options</h3>Please note: Each option will, if it can be applied, supersede any following option.'),
'#header' => [
$this
->t('Enable'),
$this
->t('Option'),
$this
->t('Settings'),
$this
->t('Settings'),
],
'#attributes' => [
'id' => 'geolocation-centre-options',
],
'#tabledrag' => [
[
'action' => 'order',
'relationship' => 'sibling',
'group' => 'geolocation-centre-option-weight',
],
],
];
foreach ($this
->getDefinitions() as $location_id => $location_definition) {
$location = $this
->createInstance($location_id);
foreach ($location
->getAvailableLocationOptions($context) as $option_id => $label) {
$option_enable_id = uniqid($option_id . '_enabled');
$weight = isset($settings[$option_id]['weight']) ? $settings[$option_id]['weight'] : 0;
$form[$option_id] = [
'#weight' => $weight,
'#attributes' => [
'class' => [
'draggable',
],
],
'enable' => [
'#attributes' => [
'id' => $option_enable_id,
],
'#type' => 'checkbox',
'#default_value' => isset($settings[$option_id]['enable']) ? $settings[$option_id]['enable'] : FALSE,
],
'option' => [
'#markup' => $label,
],
'weight' => [
'#type' => 'weight',
'#title' => $this
->t('Weight for @option', [
'@option' => $label,
]),
'#title_display' => 'invisible',
'#size' => 4,
'#default_value' => $weight,
'#attributes' => [
'class' => [
'geolocation-centre-option-weight',
],
],
],
'location_plugin_id' => [
'#type' => 'value',
'#value' => $location_id,
],
];
$option_form = $location
->getSettingsForm($option_id, empty($settings[$option_id]['settings']) ? [] : $settings[$option_id]['settings'], $context);
if (!empty($option_form)) {
$option_form['#states'] = [
'visible' => [
':input[id="' . $option_enable_id . '"]' => [
'checked' => TRUE,
],
],
];
$option_form['#type'] = 'item';
$form[$option_id]['settings'] = $option_form;
}
}
}
uasort($form, [
SortArray::class,
'sortByWeightProperty',
]);
return $form;
}
public function getLocation(array $settings, $context = NULL) {
$center = [];
foreach ($settings as $option_id => $option) {
if (empty($option['enable'])) {
continue;
}
if (!$this
->hasDefinition($option['location_plugin_id'])) {
continue;
}
$location_plugin = $this
->createInstance($option['location_plugin_id']);
$plugin_center = $location_plugin
->getCoordinates($option_id, empty($option['settings']) ? [] : $option['settings'], $context);
if (!empty($plugin_center)) {
return $plugin_center;
}
}
return $center;
}
}