function IncorrectConfigTargetForm::buildForm

Same name in other branches
  1. 11.x core/modules/system/tests/modules/form_test/src/Form/IncorrectConfigTargetForm.php \Drupal\form_test\Form\IncorrectConfigTargetForm::buildForm()

Overrides ConfigFormBase::buildForm

File

core/modules/system/tests/modules/form_test/src/Form/IncorrectConfigTargetForm.php, line 27

Class

IncorrectConfigTargetForm

Namespace

Drupal\form_test\Form

Code

public function buildForm(array $form, FormStateInterface $form_state) {
    $form['missing_key'] = [
        '#type' => 'textfield',
        '#title' => t('Missing key'),
        '#config_target' => 'form_test.object:does_not_exist',
    ];
    return parent::buildForm($form, $form_state);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.