function theme_number in Content Construction Kit (CCK) 6
Same name and namespace in other branches
- 6.3 modules/number/number.module \theme_number()
- 6.2 modules/number/number.module \theme_number()
FAPI theme for an individual number element.
The textfield is already rendered by the textfield theme 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/
number/ number.module, line 520 - Defines numeric field types.
Code
function theme_number($element) {
return $element['#children'];
}