function entity_test_form_entity_test_form_alter

Same name and namespace in other branches
  1. 9 core/modules/system/tests/modules/entity_test/entity_test.module \entity_test_form_entity_test_form_alter()
  2. 8.9.x core/modules/system/tests/modules/entity_test/entity_test.module \entity_test_form_entity_test_form_alter()
  3. 10 core/modules/system/tests/modules/entity_test/entity_test.module \entity_test_form_entity_test_form_alter()

Implements hook_form_BASE_FORM_ID_alter().

File

core/modules/system/tests/modules/entity_test/entity_test.module, line 335

Code

function entity_test_form_entity_test_form_alter(&$form) {
    switch (\Drupal::state()->get('entity_test.form.validate.test')) {
        case 'form-level':
            $form['#validate'][] = 'entity_test_form_entity_test_form_validate';
            $form['#validate'][] = 'entity_test_form_entity_test_form_validate_check';
            break;
        case 'button-level':
            $form['actions']['submit']['#validate'][] = 'entity_test_form_entity_test_form_validate';
    }
}

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