function bpn_flickr_get_sets in Bulk File Nodes 7
Gets the photosets for a user.
1 call to bpn_flickr_get_sets()
- bpn_flickr_form_step_2 in modules/
bpn_flickr/ bpn_flickr.module - Form constructor for Step 2: Pick what images to load.
File
- modules/
bpn_flickr/ bpn_flickr.module, line 459 - Hooks and functions for the bpn_flickr module.
Code
function bpn_flickr_get_sets($user) {
$flickr = bpn_flickr_get_api();
return $flickr
->photosets_getList($user['nsid']);
}