You are here

function brilliant_gallery_block_view in Brilliant Gallery 7

Same name and namespace in other branches
  1. 7.2 OLD_brilliant_gallery.module \brilliant_gallery_block_view()

Implements hook_block_view().

File

./brilliant_gallery.module, line 76

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;
}