aboutsummaryrefslogtreecommitdiff
path: root/lib/phpFlickr/example.php
diff options
context:
space:
mode:
authorCash Costello <cash.costello@gmail.com>2011-11-10 07:06:54 -0500
committerCash Costello <cash.costello@gmail.com>2011-11-10 07:06:54 -0500
commit30fe751219cd087eabcd0c880015c2d71f8186e1 (patch)
treee066ece9baa5f001c051e2bb405c573aa7e25db2 /lib/phpFlickr/example.php
parentb46b9b1464249916d105ee46f0bdb7972863070d (diff)
downloadelgg-30fe751219cd087eabcd0c880015c2d71f8186e1.tar.gz
elgg-30fe751219cd087eabcd0c880015c2d71f8186e1.tar.bz2
removed flickr integration
Diffstat (limited to 'lib/phpFlickr/example.php')
-rw-r--r--lib/phpFlickr/example.php30
1 files changed, 0 insertions, 30 deletions
diff --git a/lib/phpFlickr/example.php b/lib/phpFlickr/example.php
deleted file mode 100644
index 8b409b425..000000000
--- a/lib/phpFlickr/example.php
+++ /dev/null
@@ -1,30 +0,0 @@
-<?php
-/* Last updated with phpFlickr 1.3.2
- *
- * This example file shows you how to call the 100 most recent public
- * photos. It parses through them and prints out a link to each of them
- * along with the owner's name.
- *
- * Most of the processing time in this file comes from the 100 calls to
- * flickr.people.getInfo. Enabling caching will help a whole lot with
- * this as there are many people who post multiple photos at once.
- *
- * Obviously, you'll want to replace the "<api key>" with one provided
- * by Flickr: http://www.flickr.com/services/api/key.gne
- */
-
-require_once("phpFlickr.php");
-$f = new phpFlickr("<api key>");
-
-$recent = $f->photos_getRecent();
-
-foreach ($recent['photo'] as $photo) {
- $owner = $f->people_getInfo($photo['owner']);
- echo "<a href='http://www.flickr.com/photos/" . $photo['owner'] . "/" . $photo['id'] . "/'>";
- echo $photo['title'];
- echo "</a> Owner: ";
- echo "<a href='http://www.flickr.com/people/" . $photo['owner'] . "/'>";
- echo $owner['username'];
- echo "</a><br>";
-}
-?>