You are here

function theme_tablefield_formatter_default in TableField 6

Theme function for default table display

File

./tablefield.module, line 183
This module provides a set of fields that can be used to store tabular data with a node. The implementation uses a custom CCK widget.

Code

function theme_tablefield_formatter_default($element) {
  return $element['#item']['value'];
}