You are here

function webform_matrix_array in Webform Matrix Component 7

Unseriaze matrix components values.

2 calls to webform_matrix_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 753
Webform module matrix component.

Code

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