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