function theme_imagecache_display in ImageCache 5
Theme an img tag for displaying the image.
File
- ./
imagecache.module, line 706 - Dynamic image resizer and image cacher.
Code
function theme_imagecache_display($node, $label, $url, $attributes) {
return '<img src="' . check_url($url) . '" alt="' . check_plain($node->title) . '" title="' . check_plain($node->title) . '" ' . drupal_attributes($attributes) . ' />';
}