You are here

function flickrgallery_menu_title_callback in FlickrGallery 7.3

Album page title callback

1 string reference to 'flickrgallery_menu_title_callback'
flickrgallery_menu in ./flickrgallery.module
Implements hook_menu().

File

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

Code

function flickrgallery_menu_title_callback($set_id) {

  // Create Flickr object.
  $f = flickrapi_phpFlickr();

  // Get Flickr set info.
  $set_info = $f
    ->photosets_getInfo($set_id);

  // Set Flickr set title as page title.
  return $set_info['title']['_content'];
}