function _webform_defaults_matrix in Webform Matrix Component 6
Same name and namespace in other branches
- 7.4 components/matrix.inc \_webform_defaults_matrix()
 - 7 components/matrix.inc \_webform_defaults_matrix()
 - 7.2 components/matrix.inc \_webform_defaults_matrix()
 - 7.3 components/matrix.inc \_webform_defaults_matrix()
 
Implements _webform_defaults_component().
File
- components/
matrix.inc, line 11  - Webform module matrix component.
 
Code
function _webform_defaults_matrix() {
  return array(
    'name' => '',
    'form_key' => NULL,
    'pid' => 0,
    'weight' => 0,
    'value' => '',
    'mandatory' => 0,
    'extra' => array(
      'matrix_col' => '1',
      'matrix_row' => '1',
      'title_display' => 0,
      'description' => '',
      'private' => FALSE,
    ),
  );
}