You are here

function theme_imagepicker_groups_form in Image Picker 6.2

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

File

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

Code

function theme_imagepicker_groups_form($form) {
  $output = '';
  $form['groupsave']['group_public_roles']['#prefix'] = '<div id="wrap-group-public-roles">';
  $form['groupsave']['group_public_roles']['#suffix'] = '</div>';
  $output .= drupal_render($form);
  return $output;
}