function _webform_defaults_structured_text in Webform Structured Text 7
Same name and namespace in other branches
- 6 structured_text.inc \_webform_defaults_structured_text()
Implements _webform_defaults_component().
File
- ./
structured_text.inc, line 43
Code
function _webform_defaults_structured_text() {
return array(
'name' => '',
'form_key' => NULL,
_webform_structured_text_get_wf_property('required') => 0,
'pid' => 0,
'weight' => 0,
'extra' => array(
'mask' => '',
'auto_skip' => TRUE,
'mask_description' => FALSE,
'mask_regex' => '',
'mask_labels' => '',
'description' => '',
'placeholders' => '',
'centred' => TRUE,
'separate_boxes' => FALSE,
'analysis_display' => FALSE,
'analysis_display_identifying' => '',
'private' => FALSE,
'unique' => FALSE,
),
);
}