function _webform_defaults_structured_text in Webform Structured Text 6
Same name and namespace in other branches
- 7 structured_text.inc \_webform_defaults_structured_text()
Implements _webform_defaults_component().
File
- ./
structured_text.inc, line 11
Code
function _webform_defaults_structured_text() {
return array(
'name' => '',
'form_key' => NULL,
'mandatory' => 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,
),
);
}