/*
Plugin Name: WP Flickr Post Bar
Plugin URI: http://tantannoodles.com/toolkit/wp-flickr-post-bar/
Description: Displays a Flickr bar at the top of your edit screen, which allows you to easily add Flickr photos to your posts with one click. Configure...
Version: 0.5
Author: Joe Tan
Author URI: http://tantannoodles.com/
Copyright (C) 2005 Joe Tan
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
*/
/* ******************************************************************
Front end display functions
****************************************************************** */
/*
Prints HTML code where badge should be displayed
*/
function tantan_fpbFormDisplay() {
//$photos = tantan_fpbGetData();
//$tantan_fpbSize = get_option('tantan_fpbSize');
//$tantan_flickrMaxPhotos = get_option('tantan_flickrMaxPhotos');
//if (!$tantan_fpbSize) $tantan_fpbSize = 'Small';
$html =
"
";
// $html .= "";
echo $html;
// include(dirname(__FILE__).'/post-bar-form.html');
}
/*
Retrieve Flickr data
*/
function tantan_fpbGetData() {
// check to see if data is cached
$lastTimestamp = get_option('tantan_fpbTimestamp');
$photos = get_option('tantan_fpbPhotos');
$cached = false;
if ((is_array($photos) && count($photos) && $lastTimestamp && ((time() - $lastTimestamp) < 60*60))) {
// data is cached and still fresh, so don't do anything
$cached = true;
}
if (!$cached) {
include_once(dirname(__FILE__).'/lib.flickrBadge.php');
// not cached, so get data from flickr and update
$badge = new TanTanBadge();
$badge->setFlickrAPI(get_option('tantan_flickrAPI'));
$photos = $badge->getData(get_option('tantan_flickrUser'), get_option('tantan_flickrMaxPhotos'));
if (!is_array($photos) || (count($photos) == 0)) { // some sort of error
update_option('tantan_fpbPhotos', false);
} else {
update_option('tantan_fpbPhotos', $photos);
update_option('tantan_fpbTimestamp', time());
}
}
if (is_array($photos)) {
return $photos;
} else {
return array();
}
}
/* ******************************************************************
Admin options
****************************************************************** */
/*
Add hooks for admin page options
*/
function tantan_fpbAdminOptions() {
add_options_page('Flickr Post Bar', 'Flickr Post Bar', 10, __FILE__, 'tantan_fpbAdminPage');
}
/*
Admin page controller
*/
function tantan_fpbAdminPage() {
if (isset($_POST['tantan_action'])) {
update_option('tantan_flickrAPI', $_POST['tantan_flickrAPI']);
update_option('tantan_flickrUser', $_POST['tantan_flickrUser']);
update_option('tantan_flickrMaxPhotos',$_POST['tantan_flickrMaxPhotos']);
update_option('tantan_fpbSize', $_POST['tantan_fpbSize']);
update_option('tantan_fbpLinkDest', $_POST['tantan_fbpLinkDest']);
update_option('tantan_fbpLinkDestValue', $_POST['tantan_fbpLinkDestValue']);
update_option('tantan_fpbAutoLoadDisabled', $_POST['tantan_fpbAutoLoadDisabled']);
$status = "Saved settings.";
if ($_POST['tantan_clearCache'] == 'yes') {
update_option('tantan_fpbPhotos', false);
$status .= " Cleared cache.";
}
} else {
$status = "";
}
$tantan_flickrAPI = get_option('tantan_flickrAPI');
$tantan_flickrUser = get_option('tantan_flickrUser');
$tantan_flickrMaxPhotos = get_option('tantan_flickrMaxPhotos');
$tantan_fpbSize = get_option('tantan_fpbSize');
$tantan_fbpLinkDest = get_option('tantan_fbpLinkDest');
$tantan_fbpLinkDestValue = get_option('tantan_fbpLinkDestValue');
$tantan_fpbAutoLoadDisabled=get_option('tantan_fpbAutoLoadDisabled');
include(dirname(__FILE__).'/post-bar-admin.html');
}
// install hooks
add_action('edit_form_advanced', 'tantan_fpbFormDisplay');
add_action('simple_edit_form', 'tantan_fpbFormDisplay');
add_action('edit_page_form', 'tantan_fpbFormDisplay');
add_action('admin_menu', 'tantan_fpbAdminOptions');
?>
Toolkits
http://www.otheredge.com.au/klogs/toolkit
Mon, 07 Jan 2008 02:36:31 +0000http://wordpress.org/?v=2.0.1enAndys Black Hole: Are you seriously Mobile ???
http://www.otheredge.com.au/klogs/toolkit/2007/andys-black-hole-are-you-seriously-mobile.htm
http://www.otheredge.com.au/klogs/toolkit/2007/andys-black-hole-are-you-seriously-mobile.htm#commentsWed, 11 Apr 2007 03:39:26 +0000KirstyLeadership, Change and OrganisationsInnovation, Ideashttp://www.otheredge.com.au/klogs/toolkit/2007/andys-black-hole-are-you-seriously-mobile.htmhttp://www.otheredge.com.au/klogs/toolkit/2007/andys-black-hole-are-you-seriously-mobile.htm/feed/Coffee - a photoset on Flickr
http://www.otheredge.com.au/klogs/toolkit/2006/coffee-a-photoset-on-flickr.htm
http://www.otheredge.com.au/klogs/toolkit/2006/coffee-a-photoset-on-flickr.htm#commentsThu, 17 Aug 2006 02:28:47 +0000KirstyCommunication & SupportInnovation, IdeasToolshttp://www.otheredge.com.au/klogs/toolkit/2006/coffee-a-photoset-on-flickr.htmhttp://www.otheredge.com.au/klogs/toolkit/2006/coffee-a-photoset-on-flickr.htm/feed/Informal Learning in a Nutshell
http://www.otheredge.com.au/klogs/toolkit/2006/informal-learning-in-a-nutshell.htm
http://www.otheredge.com.au/klogs/toolkit/2006/informal-learning-in-a-nutshell.htm#commentsTue, 30 May 2006 00:16:29 +0000KirstyPD Resources and ApproachesWorkplace LearningInnovation, Ideashttp://www.otheredge.com.au/klogs/toolkit/2006/informal-learning-in-a-nutshell.htmhttp://www.otheredge.com.au/klogs/toolkit/2006/informal-learning-in-a-nutshell.htm/feed/Different Voices, Different Spaces
http://www.otheredge.com.au/klogs/toolkit/2006/different-voices-different-spaces.htm
http://www.otheredge.com.au/klogs/toolkit/2006/different-voices-different-spaces.htm#commentsWed, 24 May 2006 05:39:48 +0000KirstyPD Resources and ApproachesResource Development ToolsInnovation, Ideashttp://www.otheredge.com.au/klogs/toolkit/2006/different-voices-different-spaces.htmhttp://www.otheredge.com.au/klogs/toolkit/2006/different-voices-different-spaces.htm/feed/Encouraging coaching after workshops
http://www.otheredge.com.au/klogs/toolkit/2006/ideas-for-professional-development.htm
http://www.otheredge.com.au/klogs/toolkit/2006/ideas-for-professional-development.htm#commentsTue, 16 May 2006 07:17:36 +0000KirstyPD Resources and ApproachesResources/ LOsInnovation, Ideashttp://www.otheredge.com.au/klogs/toolkit/2006/ideas-for-professional-development.htmhttp://www.otheredge.com.au/klogs/toolkit/2006/ideas-for-professional-development.htm/feed/Return to Industry
http://www.otheredge.com.au/klogs/toolkit/2006/return-to-industry.htm
http://www.otheredge.com.au/klogs/toolkit/2006/return-to-industry.htm#commentsThu, 11 May 2006 02:02:51 +0000KirstyPD Resources and ApproachesWorkplace LearningInnovation, Ideashttp://www.otheredge.com.au/klogs/toolkit/2006/return-to-industry.htmhttp://www.otheredge.com.au/klogs/toolkit/2006/return-to-industry.htm/feed/Horizon Report
http://www.otheredge.com.au/klogs/toolkit/2006/horizon-report.htm
http://www.otheredge.com.au/klogs/toolkit/2006/horizon-report.htm#commentsFri, 21 Apr 2006 06:48:56 +0000KirstyInnovation, IdeasToolshttp://www.otheredge.com.au/klogs/toolkit/2006/horizon-report.htmhttp://www.otheredge.com.au/klogs/toolkit/2006/horizon-report.htm/feed/Case studies in VET
http://www.otheredge.com.au/klogs/toolkit/2006/case-studies-in-vet.htm
http://www.otheredge.com.au/klogs/toolkit/2006/case-studies-in-vet.htm#commentsWed, 19 Apr 2006 05:49:17 +0000KirstyPD Resources and ApproachesLeadership, Change and OrganisationsInnovation, Ideashttp://www.otheredge.com.au/klogs/toolkit/2006/case-studies-in-vet.htmhttp://www.otheredge.com.au/klogs/toolkit/2006/case-studies-in-vet.htm/feed/Nigel Paine in Campus Review
http://www.otheredge.com.au/klogs/toolkit/2006/nigel-paine-in-campus-review.htm
http://www.otheredge.com.au/klogs/toolkit/2006/nigel-paine-in-campus-review.htm#commentsFri, 31 Mar 2006 05:10:36 +0000KirstyWorkplace LearningRSS & BloggingInnovation, Ideashttp://www.otheredge.com.au/klogs/toolkit/2006/nigel-paine-in-campus-review.htmhttp://www.otheredge.com.au/klogs/toolkit/2006/nigel-paine-in-campus-review.htm/feed/Summary of Nigel Paine Seminar
http://www.otheredge.com.au/klogs/toolkit/2006/summary-of-nigel-paine-seminar.htm
http://www.otheredge.com.au/klogs/toolkit/2006/summary-of-nigel-paine-seminar.htm#commentsMon, 27 Mar 2006 03:56:27 +0000KirstyLeadership, Change and OrganisationsInnovation, Ideashttp://www.otheredge.com.au/klogs/toolkit/2006/summary-of-nigel-paine-seminar.htmhttp://www.otheredge.com.au/klogs/toolkit/2006/summary-of-nigel-paine-seminar.htm/feed/