You are here

function theme_imagepicker_quota in Image Picker 6.2

Same name and namespace in other branches
  1. 7 imagepicker.module \theme_imagepicker_quota()
1 theme call to theme_imagepicker_quota()
imagepicker_admin_images in ./imagepicker.admin.inc

File

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

Code

function theme_imagepicker_quota($form, $message, $label) {
  $output = $label ? '<fieldset><legend>' . $label . '</legend>' : '';
  $output .= $message ? '<div class="messages">' . $message . '</div>' : '';
  $output .= $form;
  $output .= $label ? '</fieldset>' : '';
  return $output;
}