You are here

function andromeda_slideshow_new_image in Andromeda Slideshow 7.2

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

Creates a new image object

2 calls to andromeda_slideshow_new_image()
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

File

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

Code

function andromeda_slideshow_new_image() {
  $image = new stdClass();
  return $image;
}