openlayers-8.x-4.x-dev/src/Form/MapControlAddForm.php

src/Form/MapControlAddForm.php
<?php

namespace Drupal\openlayers\Form;

use Drupal\Core\Form\FormStateInterface;
use Drupal\openlayers\OpenlayersMapInterface;

//use Drupal\image\ImageEffectManager;
//use Drupal\openlayers\ImageStyleInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;

/**
 * Provides an add form for image effects.
 *
 * @internal
 */
class MapControlAddForm extends MapControlFormBase {

  /**
   * The image effect manager.
   *
   * @var \Drupal\image\ImageEffectManager
   */
//  protected $effectManager;

  /**
   * Constructs a new ImageEffectAddForm.
   *
   * @param \Drupal\image\ImageEffectManager $effect_manager
   *   The image effect manager.
   */
//  public function __construct(ImageEffectManager $effect_manager) {
//    $this->effectManager = $effect_manager;
//  }

  /**
   * {@inheritdoc}
   */
//  public static function create(ContainerInterface $container) {
//    return new static(
//      $container->get('plugin.manager.image.effect')
//    );
//  }

  /**
   * {@inheritdoc}
   */
  public function buildForm(array $form, FormStateInterface $form_state, OpenlayersMapInterface $map = NULL, $control = NULL) {
    $form = parent::buildForm($form, $form_state, $map, $control);
    $form['#title'] = $this->t('Add %label control to map', ['%label' => $this->mapControl->label()]);   
    $form['actions']['submit']['#value'] = $this->t('Add control');

    return $form;
  }

  /**
   * {@inheritdoc}
   */
  protected function prepareOpenlayersControl($control) {
/*    
    $image_effect = $this->effectManager->createInstance($image_effect);
    // Set the initial weight so this effect comes last.
    $image_effect->setWeight(count($this->imageStyle->getEffects()));
*/
    return $control;
  }

}

Главная | Обратная связь

drupal hosting | друпал хостинг | it patrol .inc