You are here

function matrix_custom_processing_example in Matrix field 8.2

Same name and namespace in other branches
  1. 7.2 matrix.module \matrix_custom_processing_example()

Example function for performing a custom calculation on some data

Parameters

$data: Array of data to process

Return value

A string to store

File

./matrix.module, line 982
Contains matrix.module.

Code

function matrix_custom_processing_example($data) {
  return implode(',', $data);
}