<?php
/*
* buzzword
* Copyright (c) 2003 Jon Tai
*
* $Id: sidebar.inc 14 2004-04-26 22:31:30Z brad $
*
* This file is part of buzzword.
*
* buzzword 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.
*
* buzzword 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 buzzword; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
function get_sidebar_planet_subscriptions() {
$return = '';
$subscriptions = get_planet_subscriptions();
foreach ($subscriptions as $subscription)
$return .= "<a href=\"subscription.php?s=$subscription->subscription_key\">".$subscription->get_display_short_title()."</a><br>\n";
return ($return == '') ? "no subscriptions<br>\n" : $return;
}
?>