theme_imagecache

contributions/imagecache/imagecache.module, line 658

Versions
5
theme_imagecache($namespace, $path, $alt = '', $title = '', $attributes = null)
6
theme_imagecache($namespace, $path, $alt = '', $title = '', $attributes = NULL)

Code

<?php
function theme_imagecache($namespace, $path, $alt = '', $title = '', $attributes = null) {
  // check is_null so people can intentionally pass an empty array of attributes to override
  // the defaults completely... if 
  if (is_null($attributes)) {
    $attributes['class'] = 'imagecache imagecache-'. $namespace;
  } 
  $attributes = drupal_attributes($attributes);
  $imagecache_url = imagecache_create_url($namespace, $path);
  return '<img src="'. $imagecache_url .'" alt="'. check_plain($alt) .'" title="'. check_plain($title) .'" '. $attributes .' />';
}
?>