You are here

function theme_flickrfield_flickrid in Flickr 6

Theme function for the Flickr ID form element.

The textfield is already rendered by the textfield theme and the html output lives in $element['#children'].

File

field/flickrfield.module, line 648
Defines a Flickr field type.

Code

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