You are here

function _webform_matrix_component_array in Webform Matrix Component 7.4

Same name and namespace in other branches
  1. 6 components/matrix.inc \_webform_matrix_component_array()
  2. 7.2 components/matrix.inc \_webform_matrix_component_array()
  3. 7.3 components/matrix.inc \_webform_matrix_component_array()

Unseriaze matrix components values.

2 calls to _webform_matrix_component_array()
_webform_analysis_matrix in components/matrix.inc
Implements _webform_analysis_component().
_webform_csv_data_matrix in components/matrix.inc
Implements _webform_csv_data_component().

File

components/matrix.inc, line 731
Webform module matrix component.

Code

function _webform_matrix_component_array($value) {
  return $value != '' ? unserialize($value) : "";
}