You are here

function brilliant_gallery_block_view in Brilliant Gallery 7.2

Same name and namespace in other branches
  1. 7 brilliant_gallery.module \brilliant_gallery_block_view()

Implements hook_block_view().

File

./OLD_brilliant_gallery.module, line 21

Code

function brilliant_gallery_block_view($delta) {
  $block_content = '';
  $block_content .= render_brilliant_gallery();
  $block = array();

  // set up the block
  $block['subject'] = 'Brilliant gallery';
  $block['content'] = $block_content;
  return $block;
}