You are here

public function ExampleConfigEntityGeneralForm::buildForm in Chaos Tool Suite (ctools) 8.3

Form constructor.

Parameters

array $form: An associative array containing the structure of the form.

\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.

Return value

array The form structure.

Overrides FormInterface::buildForm

File

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

Class

ExampleConfigEntityGeneralForm
Class ExampleConfigEntityForm.

Namespace

Drupal\ctools_wizard_test\Form

Code

public function buildForm(array $form, FormStateInterface $form_state) {
  $cached_values = $form_state
    ->getTemporaryValue('wizard');

  /** @var $page \Drupal\ctools_wizard_test\Entity\ExampleConfigEntity */
  $config_entity = $cached_values['ctools_wizard_test_config_entity'];

  // The label and id will be added by the EntityFormWizardBase.
  return $form;
}