You are here

function _photos_prep_editlist in Album Photos 7.3

Prepare photos editlist form.

2 calls to _photos_prep_editlist()
photos_edit_page in inc/photos.edit.inc
Image management.
_photos_edit_page_album in inc/photos.edit.inc
Album image management page.

File

inc/photos.edit.inc, line 670
Handles uploading and editing images.

Code

function _photos_prep_editlist($images = array()) {
  $output = '';
  $output .= theme('pager');
  $edit_form = drupal_get_form('photos_editlist_form', $images);
  $output .= drupal_render($edit_form);
  $output .= theme('pager');
  return $output;
}