function form_test_group_details

Builds a simple form to test the #group property on #type 'details'.

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

Code

function form_test_group_details() {
  $form['details'] = array(
    '#type' => 'details',
    '#title' => 'Root element',
  );
  $form['meta'] = array(
    '#type' => 'details',
    '#title' => 'Group element',
    '#group' => 'details',
  );
  $form['meta']['element'] = array(
    '#type' => 'textfield',
    '#title' => 'Nest in details element',
  );
  return $form;
}