You are here

function flickrgallery_block_view in FlickrGallery 7.3

Same name and namespace in other branches
  1. 7 flickrgallery.module \flickrgallery_block_view()
  2. 7.2 flickrgallery.module \flickrgallery_block_view()

Implements hook_block_view().

File

./flickrgallery.module, line 113
This module shows the sets and photo's from a Flickr account

Code

function flickrgallery_block_view($delta) {
  $block = array();
  switch ($delta) {
    case 'flickrgallery_block':
      module_load_include('inc', 'flickrgallery', 'includes/flickrgallery.pages');
      $block['subject'] = variable_get('flickrgallery_title', 'Flickr Gallery');
      $block['content'] = flickrgallery_wrapper_albums();
      break;
  }
  return $block;
}