function theme_image_display in Image 5
Same name and namespace in other branches
- 5.2 image.module \theme_image_display()
- 6 image.module \theme_image_display()
Theme an img tag for displaying the image.
1 theme call to theme_image_display()
- image_display in ./
image.module - Create an <img> tag for an image.
File
- ./
image.module, line 803
Code
function theme_image_display($node, $label, $url, $attributes) {
return theme('image', $url, $node->title, $node->title, $attributes, FALSE);
}