You are here

MappySettingsForm.php in Mappy 8

Namespace

Drupal\mappy\Form

File

src/Form/MappySettingsForm.php
View source
<?php

namespace Drupal\mappy\Form;

use Drupal\Core\Form\ConfigFormBase;
use Drupal\Core\Form\FormStateInterface;
class MappySettingsForm extends ConfigFormBase {

  /**
   * {@inheritdoc}
   */
  public function getFormId() {
    return 'mappy_admin_settings';
  }

  /**
   * {@inheritdoc}
   */
  protected function getEditableConfigNames() {
    return [
      'mappy.settings',
    ];
  }

  /**
   * {@inheritdoc}
   */
  public function buildForm(array $form, FormStateInterface $form_state) {
    $config = \Drupal::config('mappy.settings');
    $form['google_maps'] = [
      '#type' => 'fieldset',
      '#title' => $this
        ->t('Google Maps'),
      '#weight' => 1,
      '#collapsible' => TRUE,
      '#collapsed' => FALSE,
    ];
    $form['google_maps']['mappy_google_width'] = [
      '#type' => 'textfield',
      '#title' => $this
        ->t('Default width'),
      '#description' => $this
        ->t('Default width of the map. It is used when the parameter is not specified.'),
      '#default_value' => $config
        ->get('google.width'),
      '#size' => 60,
      '#maxlength' => 128,
      '#required' => TRUE,
    ];
    $form['google_maps']['mappy_google_height'] = [
      '#type' => 'textfield',
      '#title' => $this
        ->t('Default height'),
      '#description' => $this
        ->t('Default height of the map. It is used when the parameter is not specified.'),
      '#default_value' => $config
        ->get('google.height'),
      '#size' => 60,
      '#maxlength' => 128,
      '#required' => TRUE,
    ];
    $form['yandex_maps'] = [
      '#type' => 'fieldset',
      '#title' => $this
        ->t('Yandex Maps'),
      '#weight' => 1,
      '#collapsible' => TRUE,
      '#collapsed' => FALSE,
    ];

    // Version list of Yandex.Maps.
    $yandex_verions = [
      1 => '2.0 (old version)',
      2 => '2.1.x',
    ];
    $form['yandex_maps']['mappy_yandex_version'] = [
      '#type' => 'radios',
      '#title' => $this
        ->t('Version of Yandex.Map API'),
      '#default_value' => $config
        ->get('yandex.version'),
      '#options' => $yandex_verions,
      '#description' => $this
        ->t('You can choose, which version of Yandex.Maps will be used.'),
    ];
    $form['yandex_maps']['mappy_yandex_width'] = [
      '#type' => 'textfield',
      '#title' => $this
        ->t('Default width'),
      '#description' => $this
        ->t('Default width of the map. It is used when the parameter is not specified.'),
      '#default_value' => $config
        ->get('yandex.width'),
      '#size' => 60,
      '#maxlength' => 128,
      '#required' => TRUE,
    ];
    $form['yandex_maps']['mappy_yandex_height'] = [
      '#type' => 'textfield',
      '#title' => $this
        ->t('Default height'),
      '#description' => $this
        ->t('Default height of the map. It is used when the parameter is not specified.'),
      '#default_value' => $config
        ->get('yandex.height'),
      '#size' => 60,
      '#maxlength' => 128,
      '#required' => TRUE,
    ];
    $form['loading_settings'] = [
      '#type' => 'fieldset',
      '#title' => $this
        ->t('Mappy.js loading settings'),
      '#weight' => 1,
      '#collapsible' => TRUE,
      '#collapsed' => FALSE,
    ];
    $match_type = [
      0 => $this
        ->t('All pages except those listed'),
      1 => $this
        ->t('Only the listed pages'),
    ];
    $form['loading_settings']['mappy_load_pages_match'] = [
      '#type' => 'radios',
      '#title' => $this
        ->t('Attach Mappy.js on specific pages'),
      '#default_value' => $config
        ->get('loading.type'),
      '#options' => $match_type,
    ];
    $form['loading_settings']['mappy_load_pages_path'] = [
      '#type' => 'textarea',
      '#description' => $this
        ->t("Specify pages by using their paths. Enter one path per line. The '*' character is a wildcard. Example paths are blog for the blog page and blog/* for every personal blog. &lt;front&gt; is the front page."),
      '#default_value' => $config
        ->get('loading.paths'),
    ];
    return parent::buildForm($form, $form_state);
  }

  /**
   * {@inheritdoc}
   */
  public function submitForm(array &$form, FormStateInterface $form_state) {
    $this
      ->config('mappy.settings')
      ->set('google.width', $form_state
      ->getValue('mappy_google_width'))
      ->set('google.height', $form_state
      ->getValue('mappy_google_height'))
      ->set('yandex.width', $form_state
      ->getValue('mappy_yandex_width'))
      ->set('yandex.height', $form_state
      ->getValue('mappy_yandex_height'))
      ->set('yandex.version', $form_state
      ->getValue('mappy_yandex_version'))
      ->set('loading.type', $form_state
      ->getValue('mappy_load_pages_match'))
      ->set('loading.paths', $form_state
      ->getValue('mappy_load_pages_path'))
      ->save();
    parent::submitForm($form, $form_state);
  }

}

Classes

Namesort descending Description
MappySettingsForm