Skip to content

Instantly share code, notes, and snippets.

@shrop
Created September 19, 2016 10:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shrop/96e18955af156c83e3ca74c193575392 to your computer and use it in GitHub Desktop.
Save shrop/96e18955af156c83e3ca74c193575392 to your computer and use it in GitHub Desktop.
Drupal Form API fieldset example
$form['who_are_you'] = array(
'#type' => 'fieldset',
'#title' => t('Who are you?'),
'#weight' => 5,
);
$form['who_are_you']['first_name'] = array(
'#type' => 'textfield',
'#title' => 'First Name',
'#required' => TRUE,
'#maxlength' => 255,
'#size' => 35,
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment