ConfigurationForm.php in Thunder 8.5
File
modules/thunder_media/src/Form/ConfigurationForm.php
View source
<?php
namespace Drupal\thunder_media\Form;
use Drupal\Core\Form\ConfigFormBase;
use Drupal\Core\Form\FormStateInterface;
class ConfigurationForm extends ConfigFormBase {
protected function getEditableConfigNames() {
return [
'thunder_media.settings',
];
}
public function getFormId() {
return 'configuration_form';
}
public function buildForm(array $form, FormStateInterface $form_state) {
$config = $this
->config('thunder_media.settings');
$form['enable_filename_transliteration'] = [
'#type' => 'checkbox',
'#title' => $this
->t('Enable filename transliteration'),
'#description' => $this
->t('Enable this checkbox to clean filenames before saving the files.'),
'#default_value' => $config
->get('enable_filename_transliteration'),
];
$form['enable_filefield_remove_button'] = [
'#type' => 'checkbox',
'#title' => $this
->t('Enable file field remove button'),
'#description' => $this
->t('Enable this checkbox to enable remove buttons for file fields on inline entity forms.'),
'#default_value' => $config
->get('enable_filefield_remove_button'),
];
return parent::buildForm($form, $form_state);
}
public function submitForm(array &$form, FormStateInterface $form_state) {
parent::submitForm($form, $form_state);
$this
->config('thunder_media.settings')
->set('enable_filename_transliteration', $form_state
->getValue('enable_filename_transliteration'))
->set('enable_filefield_remove_button', $form_state
->getValue('enable_filefield_remove_button'))
->save();
}
}