diff options
author | Greg Froese <greg.froese@gmail.com> | 2009-10-09 03:23:52 +0000 |
---|---|---|
committer | Greg Froese <greg.froese@gmail.com> | 2009-10-09 03:23:52 +0000 |
commit | 71b4d8c3c3343455552a76756e5aaacd82034c4e (patch) | |
tree | 6fa9ed22a82a1815d63412bbab236283ed1bac62 /actions/flickrImportPhotoset.php | |
parent | 9aa79bc38829f164bacc6b522278d0098b597933 (diff) | |
download | elgg-71b4d8c3c3343455552a76756e5aaacd82034c4e.tar.gz elgg-71b4d8c3c3343455552a76756e5aaacd82034c4e.tar.bz2 |
flickr integration updates
Diffstat (limited to 'actions/flickrImportPhotoset.php')
-rw-r--r-- | actions/flickrImportPhotoset.php | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/actions/flickrImportPhotoset.php b/actions/flickrImportPhotoset.php index 315d1009d..d28ea8564 100644 --- a/actions/flickrImportPhotoset.php +++ b/actions/flickrImportPhotoset.php @@ -11,6 +11,7 @@ require_once dirname(dirname(__FILE__)) . "/lib/phpFlickr/phpFlickr.php"; $f = new phpFlickr("26b2abba37182aca62fe0eb2c7782050"); $set_id = get_input( "set_id" ); +$album_id = get_input( "album_id" ); $page_pp = get_input( "page" ); $return_url = get_input( "return_url" ); $user = get_loggedin_user(); @@ -25,9 +26,6 @@ if( empty( $flickr_id )) { // Get the friendly URL of the user's photos $photos_url = $f->urls_getUserPhotos( $flickr_id->value ); $photos = $f->photosets_getPhotos( $set_id, null, null, 10, $page_pp ); -/* TODO: -* 1. create album if a matching one doesn't exist -*/ $photos_to_upload = array(); foreach( $photos["photoset"]["photo"] as $photo ) { @@ -76,10 +74,7 @@ gatekeeper(); // Get common variables $access_id = (int) get_input("access_id"); $container_guid = (int) get_input('container_guid', 0); -$container_guid = 990; //force it to my test album for now - -if (!$container_guid) - $container_guid == $_SESSION['user']->getGUID(); +$container_guid = intval ($album_id); $album = get_entity($container_guid); |