You are here

function theme_tablefield in TableField 6

Same name and namespace in other branches
  1. 7.3 tablefield.module \theme_tablefield()

Theme function for form display

File

./tablefield.module, line 190
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($element) {
  return $element['#children'];
}