diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-10-12 04:55:20 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-10-12 04:55:20 +0000 |
commit | ba62ca14b91934d9f5d81ff3a29fcf434acd1fdc (patch) | |
tree | 0b06c8d81016408a5141d347ca47bedd44adc286 /templates/show_localplay_instances.inc.php | |
parent | f5a47635bd7b3d4b3c12f0f6f42424316a074e71 (diff) | |
download | ampache-ba62ca14b91934d9f5d81ff3a29fcf434acd1fdc.tar.gz ampache-ba62ca14b91934d9f5d81ff3a29fcf434acd1fdc.tar.bz2 ampache-ba62ca14b91934d9f5d81ff3a29fcf434acd1fdc.zip |
added abilty to display and delete localplay instances
Diffstat (limited to 'templates/show_localplay_instances.inc.php')
-rw-r--r-- | templates/show_localplay_instances.inc.php | 45 |
1 files changed, 45 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(); ?> |