You are here

function theme_imagepicker_display_block in Image Picker 7

Same name and namespace in other branches
  1. 6.2 imagepicker.module \theme_imagepicker_display_block()
1 theme call to theme_imagepicker_display_block()
imagepicker_display_block in ./imagepicker.module
Function to display the contents of a block.

File

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

Code

function theme_imagepicker_display_block($variables) {
  $content = $variables['content'];
  $output = '';
  $output .= '<div class="imgp_display_block">' . $content . '</div>';
  return $output;
}