function RssFeedsForm::submitForm

Same name in other branches
  1. 8.9.x core/modules/system/src/Form/RssFeedsForm.php \Drupal\system\Form\RssFeedsForm::submitForm()

Overrides ConfigFormBase::submitForm

File

core/modules/system/src/Form/RssFeedsForm.php, line 51

Class

RssFeedsForm
Configure RSS settings for this site.

Namespace

Drupal\system\Form

Code

public function submitForm(array &$form, FormStateInterface $form_state) {
    $this->config('system.rss')
        ->set('items.view_mode', $form_state->getValue('feed_view_mode'))
        ->save();
    parent::submitForm($form, $form_state);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.