Contributions API

theme_userreference_select

Definition

theme_userreference_select($element)
contributions/cck/modules/userreference/userreference.module, line 849

Description

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

Code

<?php
function theme_userreference_select($element) {
  return $element['#children'];
}
?>