Todo List
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
[line 31]
static void get_display( [ $type = 'now_playing'])
This dumps out some html and an icon for the type of rss that we specify
static void load_now_playing( )
This loads in the now playing information. This is just the raw data with key=>value pairs that could be turned into an xml document if we so wished
static void load_recently_played( )
This loads in the recently played information and formats it up real nice like
static void pubdate_now_playing( )
this is the pub date we should use for the now playing information, this is a little specific as it uses the 'newest' expire we can find
static void pubdate_recently_played( )
This just returns the 'newest' recently played entry
static void validate_type( $type)
this returns a valid type for an rss feed, if the specified type is invalid it returns a default value
AmpacheRSS __construct( $type)
This takes a flagged.id and then pulls in the information for said flag entry
void get_description( )
This returns the standardized description for the rss feed based on this->type
void get_title( )
This returns the standardized title for the rss feed based on this->type
void get_xml( )
This returns the xmldocument for the current rss type, it calls a sub function that gathers the data and then uses the xmlDATA class to build the document