diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-08-30 20:59:11 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-08-30 20:59:11 +0000 |
commit | 7881b58d92bc5cecc8bd26bdf1d72c8ee29c5382 (patch) | |
tree | 7acab47113d2a2ea232d1e35e3f7bf0185227855 /lib/class | |
parent | 728b76c5c920b259107904d2297815cb723e6d28 (diff) | |
download | ampache-7881b58d92bc5cecc8bd26bdf1d72c8ee29c5382.tar.gz ampache-7881b58d92bc5cecc8bd26bdf1d72c8ee29c5382.tar.bz2 ampache-7881b58d92bc5cecc8bd26bdf1d72c8ee29c5382.zip |
sync to trunk
Diffstat (limited to 'lib/class')
-rw-r--r-- | lib/class/rss.class.php | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/lib/class/rss.class.php b/lib/class/rss.class.php new file mode 100644 index 00000000..17d3b154 --- /dev/null +++ b/lib/class/rss.class.php @@ -0,0 +1,65 @@ +<?php +/* + + Copyright Ampache.org + All Rights Reserved + + 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; version 2 + of the License. + + 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +*/ + +/** + * RSS Class + * This is not currently used by the stable version of ampache, really here for future use and + * due to the fact it was back-ported from /trunk + */ +class RSS { + + private static $types = array('nowplaying', + 'latestartist', + 'latestalbum', + 'popularalbum', + 'popularartist', + 'popularsong', + 'recentlyplayed'); + + /** + * Constructor + * This takes a flagged.id and then pulls in the information for said flag entry + */ + public function __construct() { + + // Nothing here for now + + } // constructor + + /** + * get_display + * This dumps out some html and an icon for the type of rss that we specify + */ + public static function get_display($type='nowplaying') { + + // Default to now playing + if (!in_array($type,self::$types)) { + $type = 'nowplaying'; + } + + $string = '<a href="' . Config::get('web_path') . '/rss.php?type=' . $type . '">' . get_user_icon('feed',_('RSS Feed')) . '</a>'; + + return $string; + + } // get_display + +} // end RSS class |