function batch_test_simple_form

Form constructor for a batch selection form.

See also

batch_test_simple_form_submit()

1 string reference to 'batch_test_simple_form'
batch_test_menu in drupal/core/modules/system/tests/modules/batch_test/batch_test.module
Implements hook_menu().

File

drupal/core/modules/system/tests/modules/batch_test/batch_test.module, line 100
Helper module for the Batch API tests.

Code

function batch_test_simple_form() {
  $form['batch'] = array(
    '#type' => 'select',
    '#title' => 'Choose batch',
    '#options' => array(
      'batch_0' => 'batch 0',
      'batch_1' => 'batch 1',
      'batch_2' => 'batch 2',
      'batch_3' => 'batch 3',
      'batch_4' => 'batch 4',
    ),
  );
  $form['submit'] = array(
    '#type' => 'submit',
    '#value' => 'Submit',
  );
  return $form;
}