You are here

function images_delete_process in Node Gallery 6

2 string references to 'images_delete_process'
node_gallery_images_edit_submit in ./node_gallery.pages.inc
_node_gallery_delete in ./node_gallery.module
Implementation of hook_nodeapi(op='delete').

File

./node_gallery.module, line 441
Node gallery module file.

Code

function images_delete_process($image, &$context) {
  $image
    ->delete();
  $context['results'][] = $image->title;
  $context['message'] = t('Now deleting %node', array(
    '%node' => $image->title,
  ));
}