function ExampleConfigEntityGeneralForm::submitForm

Same name in other branches
  1. 4.0.x tests/modules/ctools_wizard_test/src/Form/ExampleConfigEntityGeneralForm.php \Drupal\ctools_wizard_test\Form\ExampleConfigEntityGeneralForm::submitForm()

Overrides FormInterface::submitForm

File

tests/modules/ctools_wizard_test/src/Form/ExampleConfigEntityGeneralForm.php, line 35

Class

ExampleConfigEntityGeneralForm
Class ExampleConfigEntityForm.

Namespace

Drupal\ctools_wizard_test\Form

Code

public function submitForm(array &$form, FormStateInterface $form_state) {
    $cached_values = $form_state->getTemporaryValue('wizard');
    
    /** @var \Drupal\ctools_wizard_test\Entity\ExampleConfigEntity $page */
    $config_entity = $cached_values['ctools_wizard_test_config_entity'];
    $config_entity->set('id', $form_state->getValue('id'));
    $config_entity->set('label', $form_state->getValue('label'));
}