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