diff options
author | Greg Froese <greg.froese@gmail.com> | 2009-10-08 04:38:19 +0000 |
---|---|---|
committer | Greg Froese <greg.froese@gmail.com> | 2009-10-08 04:38:19 +0000 |
commit | 24f3f2f0d304254451c46a3b28a8e1f4678bc02f (patch) | |
tree | c95dc02130267e6c2d7053faf7546089c1c744b1 /pages/flickr/importPhotosets.php | |
parent | 6b00bdba17af611726eb950fb51758556694e80f (diff) | |
download | elgg-24f3f2f0d304254451c46a3b28a8e1f4678bc02f.tar.gz elgg-24f3f2f0d304254451c46a3b28a8e1f4678bc02f.tar.bz2 |
flickr integration
Diffstat (limited to 'pages/flickr/importPhotosets.php')
-rw-r--r-- | pages/flickr/importPhotosets.php | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/pages/flickr/importPhotosets.php b/pages/flickr/importPhotosets.php new file mode 100644 index 000000000..c9b4416e4 --- /dev/null +++ b/pages/flickr/importPhotosets.php @@ -0,0 +1,44 @@ +<?php + + /** + * Import a set of photos from Flickr + */ + + // Load Elgg engine + include_once dirname(dirname(dirname(dirname(dirname(__FILE__))))) . "/engine/start.php"; + $body = elgg_view_title( "Photoset Import Manager" ); + $body .= "<h2>Click on the set you wish to import into this site. Copies of the photos will be made and stored on this site where they can be viewed and commented on.</h2>"; + + $viewer = get_loggedin_user(); + + require_once dirname(dirname(dirname(__FILE__))) . "/lib/phpFlickr/phpFlickr.php"; + require_once( dirname(dirname(dirname(__FILE__)))) . "/lib/flickr.php"; + $f = new phpFlickr("26b2abba37182aca62fe0eb2c7782050"); + + $viewer = get_loggedin_user(); + $flickr_username = get_metadata_byname( $viewer->guid, "flickr_username" ); + $flickr_id = get_metadata_byname( $viewer->guid, "flickr_id" ); + + $photosets = $f->photosets_getList( $flickr_id->value ); + foreach( $photosets["photoset"] as $photoset ) { + $body .= "<div class='tidypics_album_images'>"; + $body .= "$photoset[title]<br />"; + + $count = 0; + $looper = 0; + //create links to import photos 10 at a time + while( $photoset["photos"] > $count ) { + $looper++; + $body .= " <a href='/mod/tidypics/actions/flickrImportPhotoset.php?set_id=$photoset[id]&page=$looper'>$looper</a>"; + $count = $count + 10; + } + $body .= "<br />$photoset[photos] images"; + $body .= "</div>"; +// echo "<pre>"; var_dump( $photoset ); echo "</pre>"; die; + } + +// $body .= elgg_view("tidypics/forms/setupFlickr", array(), false, true ); + flickr_menu(); + page_draw( "Photoset Import", elgg_view_layout("two_column_left_sidebar", '', $body)); + +?>
\ No newline at end of file |