You are here

function theme_imagepicker_multitask_groups_form in Image Picker 7

Same name and namespace in other branches
  1. 6.2 imagepicker.module \theme_imagepicker_multitask_groups_form()

File

./imagepicker.module, line 2040
@author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL

Code

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