You are here

function theme_flickr_sets_photosets in Flickr 6

Same name and namespace in other branches
  1. 5 sets/flickr_sets.module \theme_flickr_sets_photosets()
  2. 7 sets/flickr_sets.module \theme_flickr_sets_photosets()
1 theme call to theme_flickr_sets_photosets()
flickr_sets_photosets in sets/flickr_sets.module

File

sets/flickr_sets.module, line 142

Code

function theme_flickr_sets_photosets($uid, $per_page, $nsid, $photosets) {
  $output = theme('pager', NULL, variable_get('flickr_photosets_per_page', 20));
  $output .= "<div class='fickr-photosets'>\n";
  foreach ((array) $photosets as $photoset) {
    $output .= theme('flickr_sets_photoset_box', $photoset, $uid, $nsid, 's');
  }
  $output .= '</div>';
  $output .= theme('pager', NULL, variable_get('flickr_photosets_per_page', 20));
  return $output;
}