function _webform_defaults_textfield in Webform 7.3
Same name and namespace in other branches
- 5.2 components/textfield.inc \_webform_defaults_textfield()
- 6.3 components/textfield.inc \_webform_defaults_textfield()
- 6.2 components/textfield.inc \_webform_defaults_textfield()
- 7.4 components/textfield.inc \_webform_defaults_textfield()
Implements _webform_defaults_component().
File
- components/
textfield.inc, line 11 - Webform module textfield component.
Code
function _webform_defaults_textfield() {
return array(
'name' => '',
'form_key' => NULL,
'pid' => 0,
'weight' => 0,
'value' => '',
'mandatory' => 0,
'extra' => array(
'width' => '',
'maxlength' => '',
'field_prefix' => '',
'field_suffix' => '',
'disabled' => 0,
'unique' => 0,
'title_display' => 0,
'description' => '',
'attributes' => array(),
'private' => FALSE,
),
);
}