diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-09-23 23:28:18 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-09-23 23:28:18 +0000 |
commit | 34238a29aade796f30911c567eace0e1518eb470 (patch) | |
tree | 4e0125bd53cc2f75f7a0536ea6479ec82e0ac0ce /templates/show_artist_box.inc.php | |
parent | 1d08ce31caa68f6da292493fa16432163cbbeddd (diff) | |
download | ampache-34238a29aade796f30911c567eace0e1518eb470.tar.gz ampache-34238a29aade796f30911c567eace0e1518eb470.tar.bz2 ampache-34238a29aade796f30911c567eace0e1518eb470.zip |
to keep infamys eyes from bleeding
Diffstat (limited to 'templates/show_artist_box.inc.php')
-rw-r--r-- | templates/show_artist_box.inc.php | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/templates/show_artist_box.inc.php b/templates/show_artist_box.inc.php index 8ed59615..5dd31a9f 100644 --- a/templates/show_artist_box.inc.php +++ b/templates/show_artist_box.inc.php @@ -20,18 +20,18 @@ */ $web_path = conf('web_path'); +$title = _('Albums by') . " " . $artist->full_name; ?> -<div class="text-box"> - <span class="header1"><?php echo _('Albums by') . " " . $artist->full_name; ?></span> - <br /><?php if (conf('ratings')) { show_rating($artist->id, 'artist'); } // end if ratings ?> - <ul class="text-action"> - <li><a href="<?php echo $web_path; ?>/artists.php?action=show_all_songs&artist=<?php echo $artist_id; ?>"><?php echo _("Show All Songs By") . " " . $artist->full_name; ?></a></li> - <li><a href="<?php echo $web_path; ?>/song.php?action=artist&artist_id=<?php echo $artist_id; ?>"><?php echo _("Play All Songs By") . " " . $artist->full_name; ?></a></li> - <li><a href="<?php echo $web_path; ?>/song.php?action=artist_random&artist_id=<?php echo $artist_id; ?>"><?php echo _("Play Random Songs By") . " " . $artist->full_name; ?></a></li> - <?php if ($GLOBALS['user']->has_access('100')) { ?> - <li><a href="<?php echo $web_path; ?>/artists.php?action=update_from_tags&artist=<?php echo $artist_id; ?>"><?php echo _("Update from tags"); ?></a></li> - <li><a href="<?php echo $web_path; ?>/artists.php?action=show_rename&artist=<?php echo $artist_id; ?>"><?php echo _("Rename Artist"); ?></a></li> - <li><a href="<?php echo $web_path; ?>/artists.php?action=show_similar&artist=<?php echo $artist_id; ?>"><?php echo _("Find duplicate artists"); ?></a></li> - <?php } ?> - </ul> -</div> +<?php require (conf('prefix') . '/templates/show_box_top.inc.php'); ?> +<?php if (conf('ratings')) { show_rating($artist->id, 'artist'); } // end if ratings ?> +<strong><?php echo _('Actions'); ?>:</strong><br /> + <a href="<?php echo $web_path; ?>/artists.php?action=show_all_songs&artist=<?php echo $artist_id; ?>"><?php echo _("Show All Songs By") . " " . $artist->full_name; ?></a><br /> + <a href="<?php echo $web_path; ?>/song.php?action=artist&artist_id=<?php echo $artist_id; ?>"><?php echo _("Play All Songs By") . " " . $artist->full_name; ?></a><br /> + <a href="<?php echo $web_path; ?>/song.php?action=artist_random&artist_id=<?php echo $artist_id; ?>"><?php echo _("Play Random Songs By") . " " . $artist->full_name; ?></a><br /> +<?php if ($GLOBALS['user']->has_access('100')) { ?> + <a href="<?php echo $web_path; ?>/artists.php?action=update_from_tags&artist=<?php echo $artist_id; ?>"><?php echo _("Update from tags"); ?></a><br /> + <a href="<?php echo $web_path; ?>/artists.php?action=show_rename&artist=<?php echo $artist_id; ?>"><?php echo _("Rename Artist"); ?></a><br /> + <a href="<?php echo $web_path; ?>/artists.php?action=show_similar&artist=<?php echo $artist_id; ?>"><?php echo _("Find duplicate artists"); ?></a><br /> +<?php } ?> +<?php require (conf('prefix') . '/templates/show_box_bottom.inc.php'); ?> +<?php unset($title); ?> |