summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2007-10-12 04:55:20 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2007-10-12 04:55:20 +0000
commitba62ca14b91934d9f5d81ff3a29fcf434acd1fdc (patch)
tree0b06c8d81016408a5141d347ca47bedd44adc286 /templates
parentf5a47635bd7b3d4b3c12f0f6f42424316a074e71 (diff)
downloadampache-ba62ca14b91934d9f5d81ff3a29fcf434acd1fdc.tar.gz
ampache-ba62ca14b91934d9f5d81ff3a29fcf434acd1fdc.tar.bz2
ampache-ba62ca14b91934d9f5d81ff3a29fcf434acd1fdc.zip
added abilty to display and delete localplay instances
Diffstat (limited to 'templates')
-rw-r--r--templates/show_localplay_instances.inc.php45
-rw-r--r--templates/sidebar_localplay.inc.php1
2 files changed, 46 insertions, 0 deletions
diff --git a/templates/show_localplay_instances.inc.php b/templates/show_localplay_instances.inc.php
new file mode 100644
index 00000000..4c519392
--- /dev/null
+++ b/templates/show_localplay_instances.inc.php
@@ -0,0 +1,45 @@
+<?php
+/*
+
+ Copyright (c) 2001 - 2007 Ampache.org
+ All rights reserved.
+
+ This program is free software; you can redistribute it and/or
+ modify it under the terms of the GNU General Public License
+ as published by the Free Software Foundation; version 2
+ of the License.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+*/
+?>
+<?php show_box_top(_('Show Localplay Instances')); ?>
+<table cellpadding="3" cellspacing="0" class="tabledata">
+<tr>
+ <?php foreach ($fields as $key=>$field) { ?>
+ <th><?php echo $field['description']; ?></th>
+ <?php } ?>
+ <th><?php echo _('Action'); ?></th>
+</tr>
+<?php foreach ($instances as $uid=>$name) {
+ $instance = $localplay->get_instance($uid);
+?>
+<tr class="<?php echo flip_class(); ?>" id="localplay_instance_<?php echo $uid; ?>">
+ <?php foreach ($fields as $key=>$field) { ?>
+ <td><?php echo $instance[$key]; ?></td>
+ <?php } ?>
+ <td>
+ <?php echo Ajax::button('?page=localplay&action=delete_instance&instance=' . $uid,'delete',_('Delete'),'delete_instance_' . $uid); ?>
+
+ </td>
+</tr>
+<?php } ?>
+</table>
+<?php show_box_bottom(); ?>
diff --git a/templates/sidebar_localplay.inc.php b/templates/sidebar_localplay.inc.php
index 42eda299..3bede2cc 100644
--- a/templates/sidebar_localplay.inc.php
+++ b/templates/sidebar_localplay.inc.php
@@ -10,6 +10,7 @@
<li><h4><?php echo _('Localplay'); ?></h4>
<ul class="sb3" id="sb_localplay_info">
<li id="sb_localplay_info_add_instance"><a href="<?php echo $web_path; ?>/localplay.php?action=show_add_instance"><?php echo _('Add Instance'); ?></a></li>
+ <li id="sb_localplay_info_show_instances"><a href="<?php echo $web_path; ?>/localplay.php?action=show_instances"><?php echo _('Show instances'); ?></a></li>
<li id="sb_localplay_info_show"><a href="<?php echo $web_path; ?>/localplay.php?action=show_songs"><?php echo _('Show Playlist'); ?></a></li>
</ul>
</li>