public function youtubechannelSettingsForm::submitForm in YoutubeChannel 8
Same name and namespace in other branches
- 8.3 src/YoutubechannelSettingsForm.php \Drupal\youtubechannel\YoutubechannelSettingsForm::submitForm()
- 8.2 src/YoutubechannelSettingsForm.php \Drupal\youtubechannel\YoutubechannelSettingsForm::submitForm()
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
- src/
YoutubechannelSettingsForm.php, line 135 - Contains \Drupal\youtubechannel\youtubechannelSettingsForm
Class
- youtubechannelSettingsForm
- provides Configure settings.
Namespace
Drupal\youtubechannelCode
public function submitForm(array &$form, FormStateInterface $form_state) {
$this
->config('youtubechannel.settings')
->set('youtubechannel_api_key', $form_state
->getValue('youtubechannel_api_key'))
->set('youtubechannel_id', $form_state
->getValue('youtubechannel_id'))
->set('youtubechannel_video_limit', $form_state
->getValue('youtubechannel_video_limit'))
->set('youtubechannel_video_width', $form_state
->getValue('youtubechannel_video_width'))
->set('youtubechannel_video_height', $form_state
->getValue('youtubechannel_video_height'))
->save();
parent::submitForm($form, $form_state);
}