You are here

FlexsliderFormSettings.php in Flex Slider 8.2

File

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

namespace Drupal\flexslider\Form;

use Drupal\Core\Asset\LibraryDiscovery;
use Drupal\Core\Config\ConfigFactoryInterface;
use Drupal\Core\Form\ConfigFormBase;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Session\AccountProxyInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;

/**
 * Class FlexsliderFormSettings.
 *
 * @package Drupal\flexslider\Form
 */
class FlexsliderFormSettings extends ConfigFormBase {

  /**
   * The library discovery service.
   *
   * @var \Drupal\Core\Asset\LibraryDiscovery
   */
  private $libraryDiscovery;

  /**
   * The current user account service.
   *
   * @var \Drupal\Core\Session\AccountProxyInterface
   */
  private $currentUser;

  /**
   * Constructs a new FlexSliderFormSettings.
   *
   * @param \Drupal\Core\Config\ConfigFactoryInterface $configFactory
   *   The config factory service.
   * @param \Drupal\Core\Asset\LibraryDiscovery $libraryDiscovery
   *   The library discovery service.
   * @param \Drupal\Core\Session\AccountProxyInterface $currentUser
   *   The user account service.
   */
  public function __construct(ConfigFactoryInterface $configFactory, LibraryDiscovery $libraryDiscovery, AccountProxyInterface $currentUser) {
    parent::__construct($configFactory);
    $this->libraryDiscovery = $libraryDiscovery;
    $this->currentUser = $currentUser;
  }

  /**
   * Use Symfony's ContainerInterface to declare dependency for constructor.
   *
   * {@inheritdoc}
   */
  public static function create(ContainerInterface $container) {
    return new static($container
      ->get('config.factory'), $container
      ->get('library.discovery'), $container
      ->get('current_user'));
  }

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

  /**
   * {@inheritdoc}
   */
  public function submitForm(array &$form, FormStateInterface $form_state) {
    $config = $this
      ->config('flexslider.settings');
    $config
      ->set('flexslider_debug', $form_state
      ->getValue('flexslider_debug'))
      ->set('flexslider_css', $form_state
      ->getValue('flexslider_css'))
      ->set('flexslider_module_css', $form_state
      ->getValue('integration_css'))
      ->save();

    // Invalidate the library discovery cache to update new assets.
    $this->libraryDiscovery
      ->clearCachedDefinitions();
    parent::submitForm($form, $form_state);
  }

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

  /**
   * {@inheritdoc}
   */
  public function buildForm(array $form, FormStateInterface $form_state) {
    $form = [];
    $form['library'] = [
      '#type' => 'details',
      '#title' => 'Library',
      '#open' => TRUE,
    ];

    // Debug mode toggle.
    $form['library']['flexslider_debug'] = [
      '#type' => 'checkbox',
      '#title' => $this
        ->t('Enable debug mode'),
      '#description' => $this
        ->t('Load the human-readable version of the FlexSlider library.'),
      '#default_value' => $this
        ->config('flexslider.settings')
        ->get('flexslider_debug'),
      '#access' => $this->currentUser
        ->hasPermission('administer flexslider'),
    ];

    // Style toggles.
    $form['styles'] = [
      '#type' => 'details',
      '#title' => $this
        ->t('Syles'),
      '#open' => TRUE,
    ];
    $form['styles']['flexslider_css'] = [
      '#type' => 'checkbox',
      '#title' => $this
        ->t('flexslider.css'),
      '#description' => $this
        ->t('Load the FlexSlider base css.'),
      '#default_value' => $this
        ->config('flexslider.settings')
        ->get('flexslider_css'),
    ];
    $form['styles']['integration_css'] = [
      '#type' => 'checkbox',
      '#title' => $this
        ->t('flexslider_img.css'),
      '#description' => $this
        ->t('Load the module css fixes.'),
      '#default_value' => $this
        ->config('flexslider.settings')
        ->get('flexslider_module_css'),
    ];
    return parent::buildForm($form, $form_state);
  }

}

Classes

Namesort descending Description
FlexsliderFormSettings Class FlexsliderFormSettings.