You are here

function theme_cck_list in CCK List 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_list.module, line 314
Defines a field type that outputs data in a list.

Code

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