function theme_linkimagefield_widget in Link Image Field 6
FormAPI theme function. Theme the output of an image field.
Parameters
arrayreference $element:
Return value
string
File
- ./
linkimagefield_widget.inc, line 111 - linkimagefield widget code @author John Young <john@codeandcreative.com>
Code
function theme_linkimagefield_widget(&$element) {
drupal_add_css(drupal_get_path('module', 'imagefield') . '/imagefield.css');
return theme('form_element', $element, $element['#children']);
}