username; show_template('header'); show_menu_items('Stats'); show_clear(); ?>
Below is a list of what you have been listening to the most. You can clear these statistics by editing your profile.
get_favorites('artist') ) {
$items = $user->format_favorites($items);
show_info_box('Your Favorite Artists', 'artist', $items);
}
else {
print(" Not enough data for favorite artists. "); } ?> |
get_favorites('song') ) {
$items = $user->format_favorites($items);
show_info_box('Your Favorite Songs', 'your_song', $items);
}
else {
print(" Not enough data for favorite songs. "); } ?> |
get_favorites('album') ) {
$items = $user->format_favorites($items);
show_info_box('Your Favorite Albums', 'album', $items);
}
else {
print(" Not enough data for favorite albums. "); } ?> |