public ViewFormBase::init(FormStateInterface $form_state)
Initialize the form state and the entity before the first form build.
Overrides EntityForm::init
File
- core/modules/views_ui/src/ViewFormBase.php, line 25
 
Class
- ViewFormBase
 - Base form for Views forms.
 
Namespace
Drupal\views_ui
Code
public function init(FormStateInterface $form_state) {
  parent::init($form_state);
  // @todo Remove the need for this.
  $form_state->loadInclude('views_ui', 'inc', 'admin');
  $form_state->set('view', $this->entity);
}
Please login to continue.