You are here

function _webform_defaults_textarea in Webform 7.4

Same name and namespace in other branches
  1. 5.2 components/textarea.inc \_webform_defaults_textarea()
  2. 6.3 components/textarea.inc \_webform_defaults_textarea()
  3. 6.2 components/textarea.inc \_webform_defaults_textarea()
  4. 7.3 components/textarea.inc \_webform_defaults_textarea()

Implements _webform_defaults_component().

File

components/textarea.inc, line 11
Webform module textarea component.

Code

function _webform_defaults_textarea() {
  return array(
    'name' => '',
    'form_key' => NULL,
    'pid' => 0,
    'weight' => 0,
    'value' => '',
    'required' => 0,
    'extra' => array(
      'cols' => '',
      'rows' => '',
      'title_display' => 0,
      'resizable' => 1,
      'disabled' => 0,
      'description' => '',
      'description_above' => FALSE,
      'placeholder' => '',
      'attributes' => array(),
      'private' => FALSE,
      'analysis' => FALSE,
    ),
  );
}