You are here

function theme_userreference_select in Content Construction Kit (CCK) 6.3

Same name and namespace in other branches
  1. 6 modules/userreference/userreference.module \theme_userreference_select()
  2. 6.2 modules/userreference/userreference.module \theme_userreference_select()

FAPI theme for an individual elements.

The textfield or select is already rendered by the textfield or select 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

modules/userreference/userreference.module, line 934
Defines a field type for referencing a user from a node.

Code

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