summaryrefslogtreecommitdiffstats
path: root/templates/show_localplay.inc
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2006-04-09 04:28:56 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2006-04-09 04:28:56 +0000
commit7b1e57d0ccdda52881645f7c16f42ceb5da15881 (patch)
treef5ab9bcad4009845e4bc99010b195207084b3abf /templates/show_localplay.inc
parentde5f1c00d30c01d7e8628dafe8e4c02b2f3c61ea (diff)
downloadampache-7b1e57d0ccdda52881645f7c16f42ceb5da15881.tar.gz
ampache-7b1e57d0ccdda52881645f7c16f42ceb5da15881.tar.bz2
ampache-7b1e57d0ccdda52881645f7c16f42ceb5da15881.zip
fixed playlist add problem and a few other minor bugs
Diffstat (limited to 'templates/show_localplay.inc')
-rw-r--r--templates/show_localplay.inc46
1 files changed, 2 insertions, 44 deletions
diff --git a/templates/show_localplay.inc b/templates/show_localplay.inc
index 936f6090..ece7ecde 100644
--- a/templates/show_localplay.inc
+++ b/templates/show_localplay.inc
@@ -1,7 +1,7 @@
<?php
/*
- Copyright (c) 2004 Ampache.org
+ Copyright (c) 2001 - 2006 Ampache.org
All rights reserved.
This program is free software; you can redistribute it and/or
@@ -20,48 +20,6 @@
*/
-/*!
- @header Show localplay form
-*/
$web_path = conf('web_path');
+
?>
-<table class="border" cellspacing="1" cellpadding="3" width="100%" border="0"><!--Localplay Table-->
-<tr class="table-header">
- <td colspan="2"><?php echo _("Local Play Control"); ?></td>
-</tr>
-<tr class="even">
- <td>
- <table border="0" cellpadding="0" cellspacing="0"><!--Localplayer Table-->
- <tr>
- <td><?php echo _("Playback") . ":"; ?></td>
- <td>
- <form action="<?php echo $web_path; ?>/localplay.php" method="post" name="playcontrol" style="display:inline;">
- <input type="submit" title="<?php echo _("Prev"); ?>" name="submit" value="|&lt; " />
- <input type="submit" title="<?php echo _("Stop"); ?>" name="submit" value=" X " />
- <input type="submit" title="<?php echo _("Play"); ?>" name="submit" value=" &gt; " />
- <input type="submit" title="<?php echo _("Pause"); ?>" name="submit" value=" = " />
- <input type="submit" title="<?php echo _("Next"); ?>" name="submit" value=" &gt;|" />
- </form>
- </td>
- </tr>
- <tr class="even">
- <td><?php echo _("Volume") . ":"; ?></td>
- <td>
- <form action="<?php echo $web_path; ?>/localplay.php" method="post" name="playcontrol" style="display:inline;">
- <input type="submit" title="<?php echo _("Increase Volume"); ?>" name="submit" value=" +1 " />
- <input type="submit" title="<?php echo _("Increase Volume"); ?>" name="submit" value=" +5 " />
- <input type="submit" title="<?php echo _("Decrease Volume"); ?>" name="submit" value=" -1 " />
- <input type="submit" title="<?php echo _("Decrease Volume"); ?>" name="submit" value=" -5 " />
- </form>
- </td>
- </tr>
- <tr class="even">
- <td colspan="2">
- <a href="<?php echo $web_path; ?>/localplay.php?submit=clear"><?php echo _("Clear queue"); ?></a><br />
- <?php @system(conf('localplay_status')) ?>
- </td>
- </tr>
- </table><!--End Localplayer Table-->
- </td>
-</tr>
-</table><!--End Localplay Table-->