You are here

function flickrgallery_block_view in FlickrGallery 7

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

File

./flickrgallery.module, line 233
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':
      $block['title'] = variable_get('flickrgallery_title', 'Flickr Gallery');
      break;
  }
  return $block;
}