You are here

function theme_cck_table in CCK Table Field 6

FAPI theme for an individual text elements.

The textfield or textarea is already rendered by the textfield or textarea themes and the html output lives in $element['#children']. Override this theme to make custom changes to the output.

$element['#field_name'] contains the field name $element['#delta] is the position of this element in the group

File

./cck_table.module, line 360
Defines a field type that outputs data in a table.

Code

function theme_cck_table($element) {
  return $element['#children'];
}