_webform_edit_textarea

  1. drupal
    1. 6 textarea.inc function
    2. 7 textarea.inc function
Drupal 7 _webform_edit_textarea($component)

Implements _webform_edit_component().

File

sites/all/modules/webform/components/textarea.inc, line 48
Webform module textarea component.

Code

function _webform_edit_textarea($component) {
  $form = array();
  $form['value'] = array(
    '#type' => 'textarea', 
    '#title' => t('Default value'), 
    '#default_value' => $component['value'], 
    '#description' => t('The default value of the field.') . theme('webform_token_help'), 
    '#cols' => 60, 
    '#rows' => 5, 
    '#weight' => 0,
  );
  $form['display']['cols'] = array(
    '#type' => 'textfield', 
    '#title' => t('Width'), 
    '#default_value' => $component['extra']['cols'], 
    '#description' => t('Width of the textarea in columns. This property might not have a visual impact depending on the CSS of your site.') . ' ' . t('Leaving blank will use the default size.'), 
    '#size' => 5, 
    '#maxlength' => 10, 
    '#parents' => array('extra', 'cols'),
  );
  $form['display']['rows'] = array(
    '#type' => 'textfield', 
    '#title' => t('Height'), 
    '#default_value' => $component['extra']['rows'], 
    '#description' => t('Height of the textarea in rows.') . ' ' . t('Leaving blank will use the default size.'), 
    '#size' => 5, 
    '#maxlength' => 10, 
    '#parents' => array('extra', 'rows'),
  );
  $form['display']['resizable'] = array(
    '#type' => 'checkbox', 
    '#title' => t('Resizable'), 
    '#description' => t('Make this field resizable by the user.'), 
    '#weight' => 2, 
    '#default_value' => $component['extra']['resizable'], 
    '#parents' => array('extra', 'resizable'),
  );
  $form['display']['disabled'] = array(
    '#type' => 'checkbox', 
    '#title' => t('Disabled'), 
    '#return_value' => 1, 
    '#description' => t('Make this field non-editable. Useful for setting an unchangeable default value.'), 
    '#weight' => 11, 
    '#default_value' => $component['extra']['disabled'], 
    '#parents' => array('extra', 'disabled'),
  );
  return $form;
}