openlayers-8.x-4.x-dev/src/Plugin/Interaction/DragBox/DragBox.php
src/Plugin/Interaction/DragBox/DragBox.php
<?php
namespace Drupal\openlayers\Plugin\Interaction\DragBox;
use Drupal\Core\Form\FormStateInterface;
use Drupal\openlayers\Types\Interaction;
/**
* FIX - Insert short comment here.
*
* @OpenlayersPlugin(
* id = "ol_interaction_dragbox",
* label = @Translation("Drag Box"),
* description = @Translation("TODO..."),
* service = "openlayers.Interaction:DragBox",
* library = "openlayers-plugin-interaction-dragbox",
* is_configurable = "true",
* type = "interaction"
* )
*/
class DragBox extends Interaction {
/**
* {@inheritdoc}
*/
public function buildConfigurationForm(array $form, FormStateInterface $form_state) {
return $form;
}
}
