You are here

function theme_matrix_output in Matrix field 8.2

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

Theme a set of elements into a table

1 theme call to theme_matrix_output()
matrix_field_formatter_view in ./matrix.module
Implements hook_field_formatter_view().

File

./matrix.module, line 584
Contains matrix.module.

Code

function theme_matrix_output($variables) {
  return _theme('table', array(
    'header' => $variables['header'],
    'rows' => $variables['rows'],
  ));
}