public function ViewEditForm::submitDisplayEnable in Drupal 9
Same name and namespace in other branches
- 8 core/modules/views_ui/src/ViewEditForm.php \Drupal\views_ui\ViewEditForm::submitDisplayEnable()
- 10 core/modules/views_ui/src/ViewEditForm.php \Drupal\views_ui\ViewEditForm::submitDisplayEnable()
Submit handler to enable a disabled display.
File
- core/
modules/ views_ui/ src/ ViewEditForm.php, line 637
Class
- ViewEditForm
- Form controller for the Views edit form.
Namespace
Drupal\views_uiCode
public function submitDisplayEnable($form, FormStateInterface $form_state) {
$view = $this->entity;
$id = $form_state
->get('display_id');
// setOption doesn't work because this would might affect upper displays
$view
->getExecutable()->displayHandlers
->get($id)
->setOption('enabled', TRUE);
// Store in cache
$view
->cacheSet();
// Redirect to the top-level edit page.
$form_state
->setRedirect('entity.view.edit_display_form', [
'view' => $view
->id(),
'display_id' => $id,
]);
}