You are here

function theme_isbn_field in ISBN 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

./isbn.module, line 460
Defines ISBN field types.

Code

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