function theme_flickr_sets_photosets in Flickr 5
Same name and namespace in other branches
- 6 sets/flickr_sets.module \theme_flickr_sets_photosets()
- 7 sets/flickr_sets.module \theme_flickr_sets_photosets()
1 theme call to theme_flickr_sets_photosets()
File
- sets/
flickr_sets.module, line 131
Code
function theme_flickr_sets_photosets($uid, $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;
}