You are here

function theme_image_display in Image 5.2

Same name and namespace in other branches
  1. 5 image.module \theme_image_display()
  2. 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 866

Code

function theme_image_display($node, $label, $url, $attributes) {
  return theme('image', $url, $node->title, $node->title, $attributes, FALSE);
}