Skip to content

Instantly share code, notes, and snippets.

@pixel5
Created June 1, 2015 18:22
Show Gist options
  • Save pixel5/695895f3ee33c34c7d80 to your computer and use it in GitHub Desktop.
Save pixel5/695895f3ee33c34c7d80 to your computer and use it in GitHub Desktop.
input-group example form
<?php
function inputgroup_example_form($form,&$form_state) {
$form = array();
$form['i'] = array(
'#type' => 'textfield',
'#attributes' => array(
'placeholder' => 'input-groups in drupal!',
),
'#input_group' => TRUE,
'#field_prefix' => "&lt;/&gt;",
);
return $form;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment