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 extends ConfigFormBase {
private $libraryDiscovery;
private $currentUser;
public function __construct(ConfigFactoryInterface $configFactory, LibraryDiscovery $libraryDiscovery, AccountProxyInterface $currentUser) {
parent::__construct($configFactory);
$this->libraryDiscovery = $libraryDiscovery;
$this->currentUser = $currentUser;
}
public static function create(ContainerInterface $container) {
return new static($container
->get('config.factory'), $container
->get('library.discovery'), $container
->get('current_user'));
}
public function getFormId() {
return 'flexslider_advanced_settings_form';
}
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();
$this->libraryDiscovery
->clearCachedDefinitions();
parent::submitForm($form, $form_state);
}
protected function getEditableConfigNames() {
return [
'flexslider.settings',
];
}
public function buildForm(array $form, FormStateInterface $form_state) {
$form = [];
$form['library'] = [
'#type' => 'details',
'#title' => 'Library',
'#open' => TRUE,
];
$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'),
];
$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);
}
}