Skip to content

Instantly share code, notes, and snippets.

@jasonglisson
Last active September 14, 2017 12:39
Show Gist options
  • Save jasonglisson/a762d02b2af88fae3821 to your computer and use it in GitHub Desktop.
Save jasonglisson/a762d02b2af88fae3821 to your computer and use it in GitHub Desktop.
Drupal 7: Module text html field
$levels_value = variable_get('levels_text', array('value' => '', 'format' => NULL));
$form['levels']['levels_text'] = array(
'#type' => 'text_format',
'#title' => t('Levels Text'),
'#size' => 30,
'#required' => FALSE,
'#default_value' => $levels_value['value'],
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment