function theme_imagepicker_display_block in Image Picker 6.2        
                          
                  
                        Same name and namespace in other branches
- 7 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 1915
- Enables permitted roles to upload images for insertion into configured nodes.
Code
function theme_imagepicker_display_block($content) {
  $output = '';
  $output .= '<div class="imgp_display_block">' . $content . '</div>';
  return $output;
}