function taxonomy_test_simple_form

Form builder for testing submission on taxonomy terms overview page.

1 string reference to 'taxonomy_test_simple_form'
taxonomy_test_block_view in modules/simpletest/tests/taxonomy_test.module
Implements hook_block_view().

File

modules/simpletest/tests/taxonomy_test.module, line 164

Code

function taxonomy_test_simple_form($form, &$form_state) {
    $form['submit'] = array(
        '#type' => 'submit',
        '#value' => t('Submit'),
    );
    return $form;
}

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