You are here

function andromeda_slideshow_load_type in Andromeda Slideshow 7.2

Same name and namespace in other branches
  1. 7 andromeda_slideshow.module \andromeda_slideshow_load_type()

Loads a slideshow type by the type name

1 call to andromeda_slideshow_load_type()
andromeda_slideshow_build_type in ./andromeda_slideshow.module
Builds a slideshow type by its name

File

./andromeda_slideshow.module, line 592
Slideshow for the Andromeda (http://drupal.org/project/andromeda) Theme

Code

function andromeda_slideshow_load_type($type) {
  $types = andromeda_slideshow_get_types();
  return isset($types[$type]) ? $types[$type] : '';
}