Last active
September 14, 2017 12:39
-
-
Save jasonglisson/a762d02b2af88fae3821 to your computer and use it in GitHub Desktop.
Drupal 7: Module text html field
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$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