form_base_test.inc

Same filename and directory in other branches
  1. 9 core/tests/Drupal/Tests/Core/Form/fixtures/form_base_test.inc
  2. 8.9.x core/tests/Drupal/Tests/Core/Form/fixtures/form_base_test.inc
  3. 11.x core/tests/Drupal/Tests/Core/Form/fixtures/form_base_test.inc

File

core/tests/Drupal/Tests/Core/Form/fixtures/form_base_test.inc

View source
<?php


/**
 * @file
 * Functions in the global namespace for \Drupal\Tests\Core\Form\FormTestBase.
 */

declare (strict_types=1);

/**
 * Creates a test form.
 *
 * @return array
 *   The form array
 */
function test_form_id() {
  $form['test'] = [
    '#type' => 'textfield',
    '#title' => 'Test',
  ];
  $form['options'] = [
    '#type' => 'radios',
    '#options' => [
      'foo' => 'foo',
      'bar' => 'bar',
    ],
  ];
  $form['value'] = [
    '#type' => 'value',
    '#value' => 'bananas',
  ];
  $form['actions'] = [
    '#type' => 'actions',
  ];
  $form['actions']['submit'] = [
    '#type' => 'submit',
    '#value' => 'Submit',
  ];
  return $form;
}

Functions

Title Deprecated Summary
test_form_id Creates a test form.

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