function andromeda_slideshow_image_load in Andromeda Slideshow 7
Same name and namespace in other branches
- 7.2 andromeda_slideshow.module \andromeda_slideshow_image_load()
Loads an image by its $siid
Parameters
$siid: The image siid
File
- ./
andromeda_slideshow.module, line 412 - Slideshow for the Andromeda (http://drupal.org/project/andromeda) Theme
Code
function andromeda_slideshow_image_load($siid) {
$image = andromeda_slideshow_load_images(array(
$siid,
));
return isset($image[$siid]) ? $image[$siid] : '';
}