public ViewEditForm::submitDisplayEnable($form, FormStateInterface $form_state)
Submit handler to enable a disabled display.
File
- core/modules/views_ui/src/ViewEditForm.php, line 592
Class
- ViewEditForm
- Form controller for the Views edit form.
Namespace
Drupal\views_ui
Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | 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' , array ( 'view' => $view ->id(), 'display_id' => $id , )); } |
Please login to continue.