You are here

function theme_imagepicker_stats in Image Picker 6.2

Same name and namespace in other branches
  1. 7 imagepicker.module \theme_imagepicker_stats()
1 theme call to theme_imagepicker_stats()
imagepicker_group_stats in ./imagepicker.functions.inc
statistics

File

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

Code

function theme_imagepicker_stats($header, $rows, $pref = "", $suff = "", $label = "") {
  $output = $label ? '<fieldset><legend>' . $label . '</legend>' : '';
  $output .= $pref . theme('table', $header, $rows) . $suff;
  $output .= $label ? '</fieldset>' : '';
  return $output;
}