summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2007-12-31 08:38:12 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2007-12-31 08:38:12 +0000
commit850edbb1f20ce3cfd8be5f6fe93207ba9a56db3a (patch)
tree2b9ed789d451fd94331532d05267105acc31e0b4 /templates
parent3e8b855150d9bbd0538aadce5a3703a54c2b2de6 (diff)
downloadampache-850edbb1f20ce3cfd8be5f6fe93207ba9a56db3a.tar.gz
ampache-850edbb1f20ce3cfd8be5f6fe93207ba9a56db3a.tar.bz2
ampache-850edbb1f20ce3cfd8be5f6fe93207ba9a56db3a.zip
first vestiages of edit localplay instance and test localplay instance support
Diffstat (limited to 'templates')
-rw-r--r--templates/show_localplay_edit_instance.inc.php37
-rw-r--r--templates/show_localplay_instances.inc.php3
-rw-r--r--templates/sidebar_localplay.inc.php1
3 files changed, 39 insertions, 2 deletions
diff --git a/templates/show_localplay_edit_instance.inc.php b/templates/show_localplay_edit_instance.inc.php
new file mode 100644
index 00000000..b6060671
--- /dev/null
+++ b/templates/show_localplay_edit_instance.inc.php
@@ -0,0 +1,37 @@
+<?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(_('Edit Localplay Instance')); ?>
+<form method="post" action="<?php echo Config::get('web_path'); ?>/localplay.php?action=update_instance&amp;instance=<?php echo intval($_REQUEST['instance']); ?>">
+<table cellpadding="3" cellspacing="0" class="tabledata">
+<?php foreach ($fields as $key=>$field) { ?>
+<tr>
+ <td><?php echo $field['description']; ?></td>
+ <td><input type="textbox" name="<?php echo $key; ?>" value="<?php echo scrub_out($instance->$key); ?>" /></td>
+</tr>
+<?php } ?>
+</table>
+ <div class="formValidation">
+ <input type="submit" value="<?php echo _('Update Instance'); ?>" />
+ </div>
+</form>
+<?php show_box_bottom(); ?>
diff --git a/templates/show_localplay_instances.inc.php b/templates/show_localplay_instances.inc.php
index 4c519392..ef9b84c1 100644
--- a/templates/show_localplay_instances.inc.php
+++ b/templates/show_localplay_instances.inc.php
@@ -36,8 +36,9 @@
<td><?php echo $instance[$key]; ?></td>
<?php } ?>
<td>
+ <a href="<?php echo Config::get('web_path'); ?>/localplay.php?action=test_instance&instance=<?php echo $uid; ?>"><?php echo get_user_icon('server_lightning',_('Check Instance')); ?></a>
+ <a href="<?php echo Config::get('web_path'); ?>/localplay.php?action=edit_instance&instance=<?php echo $uid; ?>"><?php echo get_user_icon('edit',_('Edit Instance')); ?></a>
<?php echo Ajax::button('?page=localplay&action=delete_instance&instance=' . $uid,'delete',_('Delete'),'delete_instance_' . $uid); ?>
-
</td>
</tr>
<?php } ?>
diff --git a/templates/sidebar_localplay.inc.php b/templates/sidebar_localplay.inc.php
index 01c198ee..92371b16 100644
--- a/templates/sidebar_localplay.inc.php
+++ b/templates/sidebar_localplay.inc.php
@@ -29,7 +29,6 @@
if ($uid == $current_instance) {
$class = ' class="active_instance"';
}
- i
?>
<li id="sb_localplay_instances_<?php echo $uid; ?>"<?php echo $class; ?>><?php echo Ajax::text('?page=localplay&action=set_instance&instance=' . $uid,$name,'localplay_instance_' . $uid); ?></li>
<?php } ?>