You are here

function bpn_flickr_get_photo in Bulk File Nodes 7

Get all sizes of a photo on flickr.

1 call to bpn_flickr_get_photo()
bpn_flickr_download_photos in modules/bpn_flickr/bpn_flickr.module
Batch operation: Downloads a single image from flickr.

File

modules/bpn_flickr/bpn_flickr.module, line 508
Hooks and functions for the bpn_flickr module.

Code

function bpn_flickr_get_photo($photo_id) {
  $flickr = bpn_flickr_get_api();
  return $flickr
    ->photos_getSizes($photo_id);
}