public FileSystemForm::submitForm(array &$form, FormStateInterface $form_state)
Form submission handler.
Parameters
array $form: An associative array containing the structure of the form.
\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.
Overrides ConfigFormBase::submitForm
File
- core/modules/system/src/Form/FileSystemForm.php, line 140
Class
- FileSystemForm
- Configure file system settings for this site.
Namespace
Drupal\system\Form
Code
public function submitForm(array &$form, FormStateInterface $form_state) { $config = $this->config('system.file') ->set('path.temporary', $form_state->getValue('file_temporary_path')) ->set('temporary_maximum_age', $form_state->getValue('temporary_maximum_age')); if ($form_state->hasValue('file_default_scheme')) { $config->set('default_scheme', $form_state->getValue('file_default_scheme')); } $config->save(); parent::submitForm($form, $form_state); }
Please login to continue.