function form_test_placeholder_test

Builds a form to test the placeholder attribute.

1 string reference to 'form_test_placeholder_test'
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 1575
Helper module for the form API tests.

Code

function form_test_placeholder_test($form, &$form_state) {
  foreach (array(
    'textfield',
    'textarea',
    'url',
    'password',
    'search',
    'tel',
    'email',
    'number',
  ) as $type) {
    $form[$type] = array(
      '#type' => $type,
      '#title' => $type,
      '#placeholder' => 'placeholder-text',
    );
  }
  return $form;
}