diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2005-07-16 07:00:01 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2005-07-16 07:00:01 +0000 |
commit | 39ea881cc5ec586b70650246b7fc1471e5fcca8a (patch) | |
tree | 039078e1c44253b066efdac73c659bba7b785989 /lib/class/genre.class.php | |
parent | 3d1fbbfb7491bcab9d32b017d2c09dcea7b7b14f (diff) | |
download | ampache-39ea881cc5ec586b70650246b7fc1471e5fcca8a.tar.gz ampache-39ea881cc5ec586b70650246b7fc1471e5fcca8a.tar.bz2 ampache-39ea881cc5ec586b70650246b7fc1471e5fcca8a.zip |
initial placeholder stuff for genre browsing
Diffstat (limited to 'lib/class/genre.class.php')
-rw-r--r-- | lib/class/genre.class.php | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/lib/class/genre.class.php b/lib/class/genre.class.php index bd853f9b..0b57a473 100644 --- a/lib/class/genre.class.php +++ b/lib/class/genre.class.php @@ -75,6 +75,54 @@ class Genre { } // format_genre + /** + * get_song_count + * This returns the number of songs in said genre + * @package Genre + * @catagory Class + */ + function get_song_count() { + + + + } // get_song_count + + /** + * get_songs + * This gets all of the songs in this genre and returns an array of song objects + * @package Genre + * @catagory Class + */ + function get_songs() { + + + + } // get_songs + + /** + * get_albums + * This gets all of the albums that have at least one song in this genre + * @package Genre + * @catagory Class + */ + function get_albums() { + + + + } // get_albums + + /** + * get_artists + * This gets all of the artists who have at least one song in this genre + * @package Genre + * @catagory Class + */ + function get_artists() { + + + + } // get_artists + } //end of genre class ?> |