xtcentity-2.x-dev/xtcserver/src/Form/XtcServerFormSettings.php
xtcserver/src/Form/XtcServerFormSettings.php
<?php
namespace Drupal\xtcserver\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 XtcServerFormSettings.
*
* @package Drupal\xtcserver\Form
*/
class XtcServerFormSettings 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 XtcServerFormSettings.
*
* @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 'xtcserver_advanced_settings_form';
}
/**
* {@inheritdoc}
*/
public function submitForm(array &$form, FormStateInterface $form_state) {
$config = $this->config('xtcserver.settings');
$config->set('xtcserver_debug', $form_state->getValue('xtcserver_debug'))
->set('xtcserver_css', $form_state->getValue('xtcserver_css'))
->set('xtcserver_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 ['xtcserver.settings'];
}
/**
* {@inheritdoc}
*/
public function buildForm(array $form, FormStateInterface $form_state) {
$form = [];
$form['library'] = [
'#type' => 'details',
'#title' => 'Library',
'#open' => TRUE,
];
// Debug mode toggle.
$form['library']['xtcserver_debug'] = [
'#type' => 'checkbox',
'#title' => $this->t('Enable debug mode'),
'#description' => $this->t('Display debugging information.'),
'#default_value' => $this->config('xtcserver.settings')->get('xtcserver_debug'),
'#access' => $this->currentUser->hasPermission('administer xtcserver'),
];
// Style toggles.
$form['styles'] = [
'#type' => 'details',
'#title' => $this->t('Syles'),
'#open' => TRUE,
];
$form['styles']['xtcserver_css'] = [
'#type' => 'checkbox',
'#title' => $this->t('xtcserver.css'),
'#description' => $this->t('Load the XTC Server base css.'),
'#default_value' => $this->config('xtcserver.settings')->get('xtcserver_css'),
];
$form['styles']['integration_css'] = [
'#type' => 'checkbox',
'#title' => $this->t('xtcserver_img.css'),
'#description' => $this->t('Load the module css fixes.'),
'#default_value' => $this->config('xtcserver.settings')->get('xtcserver_module_css'),
];
return parent::buildForm($form, $form_state);
}
}
