You are here

public function AdvancedSettingsForm::cacheSubmit in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/views_ui/src/Form/AdvancedSettingsForm.php \Drupal\views_ui\Form\AdvancedSettingsForm::cacheSubmit()
  2. 9 core/modules/views_ui/src/Form/AdvancedSettingsForm.php \Drupal\views_ui\Form\AdvancedSettingsForm::cacheSubmit()

Submission handler to clear the Views cache.

File

core/modules/views_ui/src/Form/AdvancedSettingsForm.php, line 104

Class

AdvancedSettingsForm
Form builder for the advanced admin settings page.

Namespace

Drupal\views_ui\Form

Code

public function cacheSubmit() {
  views_invalidate_cache();
  $this
    ->messenger()
    ->addStatus($this
    ->t('The cache has been cleared.'));
}