diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-12-19 08:36:56 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-12-19 08:36:56 +0000 |
commit | 988f2a92ec9ad57d281e574da457638d1dcc8171 (patch) | |
tree | b20b3e42d0e1e882a01bda0fa38f4b02b32f15dc /templates/show_localplay_status.inc.php | |
parent | 70df9d795a112c52fede9a3f86c0dc7f889a6326 (diff) | |
download | ampache-988f2a92ec9ad57d281e574da457638d1dcc8171.tar.gz ampache-988f2a92ec9ad57d281e574da457638d1dcc8171.tar.bz2 ampache-988f2a92ec9ad57d281e574da457638d1dcc8171.zip |
new icons
Diffstat (limited to 'templates/show_localplay_status.inc.php')
-rw-r--r-- | templates/show_localplay_status.inc.php | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/templates/show_localplay_status.inc.php b/templates/show_localplay_status.inc.php index e7f4dcce..c92d97dd 100644 --- a/templates/show_localplay_status.inc.php +++ b/templates/show_localplay_status.inc.php @@ -33,25 +33,19 @@ $status = $localplay->status(); <span id="lp_playing"><?php echo $localplay->get_user_playing(); ?></span><br /> <div align="center"><?php require (conf('prefix') . '/templates/show_localplay_control.inc.php'); ?></div> <div align="center"> - <script type="text/javascript" language="javascript"> - <!-- - var lp_v = new Array(1); - lp_v[0] = "lp_volume"; - --> - </script> <?php if ($localplay->has_function('volume_up')) { ?> <span class="up_button" onclick="ajaxPut('<?php echo $ajax_url; ?>?action=localplay&cmd=volume_up<?php echo $required_info; ?>','lp_v');return true;"> - <img src="<?php echo $web_path; ?>/images/localplay/volup.gif" alt="volume up" /> + <?php echo get_user_icon('volumeup'); ?> </span> <?php } ?> <?php if ($localplay->has_function('volume_down')) { ?> <span class="down_button" onclick="ajaxPut('<?php echo $ajax_url; ?>?action=localplay&cmd=volume_down<?php echo $required_info; ?>','lp_v');return true;"> - <img src="<?php echo $web_path; ?>/images/localplay/voldn.gif" alt="volume down" /> + <?php echo get_user_icon('volumedn'); ?> </span> <?php } ?> <?php if ($localplay->has_function('volume_mute')) { ?> <span class="mute_button" onclick="ajaxPut('<?php echo $ajax_url; ?>?action=localplay&cmd=volume_mute<?php echo $required_info; ?>','lp_v');return true;"> - <img src="<?php echo $web_path; ?>/images/localplay/volmute.gif" alt="volume mute" /> + <?php echo get_user_icon('volumemute'); ?> </span> <?php } ?> <br /> |