function andromeda_slideshow_new_slideshow in Andromeda Slideshow 7.2
Same name and namespace in other branches
- 7 andromeda_slideshow.module \andromeda_slideshow_new_slideshow()
Creates a new slideshow object
5 calls to andromeda_slideshow_new_slideshow()
- andromeda_slideshow_delete_form in includes/
andromeda_slideshow.forms.inc - Delete a slideshow form
- andromeda_slideshow_form in includes/
andromeda_slideshow.forms.inc - Add and edit slideshow form
- andromeda_slideshow_image_delete_form in includes/
andromeda_slideshow.forms.inc - Delete form for a slideshow image
- andromeda_slideshow_image_form in includes/
andromeda_slideshow.forms.inc - Add and edit image form
- andromeda_slideshow_manage_form in includes/
andromeda_slideshow.forms.inc - Manage images for a slideshow form
File
- ./
andromeda_slideshow.module, line 231 - Slideshow for the Andromeda (http://drupal.org/project/andromeda) Theme
Code
function andromeda_slideshow_new_slideshow() {
$slideshow = new stdClass();
return $slideshow;
}