summaryrefslogtreecommitdiffstats
path: root/templates/show_artist.inc.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2008-05-12 07:35:27 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2008-05-12 07:35:27 +0000
commit5678d78c06e1a5ae021f41147e893b48bc2f9e1e (patch)
tree950e89edc94adecc5c62ac7eb3635c3e8f401549 /templates/show_artist.inc.php
parentb69c3a0ec66997f9045c9fbecada3e38da55c3dd (diff)
downloadampache-5678d78c06e1a5ae021f41147e893b48bc2f9e1e.tar.gz
ampache-5678d78c06e1a5ae021f41147e893b48bc2f9e1e.tar.bz2
ampache-5678d78c06e1a5ae021f41147e893b48bc2f9e1e.zip
renamed the tagcloud class to tag, started moving things around not sure where I like the taglist, seems weird in its own box
Diffstat (limited to 'templates/show_artist.inc.php')
-rw-r--r--templates/show_artist.inc.php18
1 files changed, 4 insertions, 14 deletions
diff --git a/templates/show_artist.inc.php b/templates/show_artist.inc.php
index cbb38ce0..0cc28b58 100644
--- a/templates/show_artist.inc.php
+++ b/templates/show_artist.inc.php
@@ -1,7 +1,7 @@
<?php
/*
- Copyright (c) 2001 - 2007 Ampache.org
+ Copyright (c) Ampache.org
All rights reserved.
This program is free software; you can redistribute it and/or
@@ -18,23 +18,13 @@
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-
-$web_path = Config::get('web_path');
-
require Config::get('prefix') . '/templates/show_artist_box.inc.php';
-//require Config::get('prefix') . '/templates/show_artist_tagcloud.inc.php';
?>
<?php
Browse::reset_filters();
Browse::set_type('album');
- //Browse::set_filter('artist', $artist->id);
- Browse::set_filter_from_request($_REQUEST);
- $objs = Browse::get_objects();
- if (sizeof($objs)) {
- $tagcloudHead = _('Tags for albums of') . ' ' . $artist->f_name;
- $taglist = TagCloud::get_tags('album', $objs);
- $tagcloudList = TagCloud::filter_with_prefs($taglist);
- require Config::get('prefix') . '/templates/show_tagcloud.inc.php';
- }
+ Browse::set_static_content(1);
+ Browse::save_objects($albums);
+ $taglist = Tag::get_many_tags('album', $object_ids);
Browse::show_objects();
?>