You are here

function theme_imagepicker_multitask_delete_form in Image Picker 6.2

Same name and namespace in other branches
  1. 7 imagepicker.module \theme_imagepicker_multitask_delete_form()

File

./imagepicker.module, line 1879
Enables permitted roles to upload images for insertion into configured nodes.

Code

function theme_imagepicker_multitask_delete_form($form) {
  $output = '';
  $count = $form['countnids']['#value'];
  $output .= '<p>' . t('You have selected %c to be deleted', array(
    '%c' => format_plural($count, '1 image', '@count images'),
  )) . '</p>';
  $output .= drupal_render($form);
  return $output;
}