openlayers-8.x-4.x-dev/src/MapInteraction.php
src/MapInteraction.php
<?php
namespace Drupal\openlayers;
use Drupal\Core\Form\FormStateInterface;
/**
* Contains details of how a interaction is joined to a map.
*
*/
class MapInteraction {
public $configuration;
public function __construct($configuration, $action) {
if ($action == 'update' || $action == 'delete') {
$this->id = $configuration['id'];
$this->uuid = $configuration['uuid'];
$this->configuration = isset($configuration['data']) ? $configuration['data'] : [];
} else {
$this->id = $configuration;
$this->uuid = \Drupal::service('uuid')->generate();
$this->configuration = [];
}
}
/**
* {@inheritdoc}
*/
public function id() {
return $this->id;
}
/**
* {@inheritdoc}
*/
public function label() {
return \Drupal::config('openlayers.interaction.' . $this->id)->get('label');
}
/**
* {@inheritdoc}
*/
public function getUuid() {
return $this->uuid;
}
/**
* {@inheritdoc}
*/
public function getConfiguration() {
return [
'uuid' => $this->getUuid(),
'id' => $this->id(),
// 'weight' => $this->getWeight(),
'data' => $this->configuration,
];
}
/**
* {@inheritdoc}
*/
/*
public function getSummary() {
$summary = [
'#theme' => 'image_rotate_summary',
'#data' => $this->configuration,
];
// $summary += parent::getSummary();
return $summary;
}
*/
/**
* {@inheritdoc}
*/
public function defaultConfiguration() { // TODO: Where is this called from ?
return [
/*
'base' => 'base',
'title' => 'kkkkkk',
'visible' => 0,
*/
];
}
/**
* {@inheritdoc}
*/
public function buildConfigurationForm(array $form, FormStateInterface $form_state) {
return $form;
}
/**
* {@inheritdoc}
*/
public function validateConfigurationForm(array &$form, FormStateInterface $form_state) {
/*
if (!$form_state->isValueEmpty('bgcolor') && !Color::validateHex($form_state->getValue('bgcolor'))) {
$form_state->setErrorByName('bgcolor', $this->t('Background color must be a hexadecimal color value.'));
}
*/
}
/**
* {@inheritdoc}
*/
public function submitConfigurationForm(array &$form, FormStateInterface $form_state) {
// parent::submitConfigurationForm($form, $form_state);
/*
$this->configuration['base'] = $form_state->getValue('base');
$this->configuration['title'] = $form_state->getValue('title');
$this->configuration['visible'] = $form_state->getValue('visible');
*/
}
}
