function form_test_color

Form constructor for testing #type 'color' elements.

See also

form_test_color_submit()

Related topics

1 string reference to 'form_test_color'
form_test_menu in drupal/core/modules/system/tests/modules/form_test/form_test.module
Implements hook_menu().

File

drupal/core/modules/system/tests/modules/form_test/form_test.module, line 1498
Helper module for the form API tests.

Code

function form_test_color($form, &$form_state) {
  $form['#submit'] = array(
    '_form_test_submit_values_json',
  );
  $form['color'] = array(
    '#type' => 'color',
    '#title' => 'Color',
  );
  $form['submit'] = array(
    '#type' => 'submit',
    '#value' => 'Submit',
  );
  return $form;
}