summaryrefslogtreecommitdiffstats
path: root/templates/show_edit_live_stream_row.inc.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2007-07-23 07:09:45 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2007-07-23 07:09:45 +0000
commit4ad67656eb63a6c23b0e6caed619f463e0c14aec (patch)
tree4acf5de1b4ddb89e90b5e082f5ab481c50c7d15d /templates/show_edit_live_stream_row.inc.php
parent216e691dfa53a28af8beca7aad2bf0ffb71dba2c (diff)
downloadampache-4ad67656eb63a6c23b0e6caed619f463e0c14aec.tar.gz
ampache-4ad67656eb63a6c23b0e6caed619f463e0c14aec.tar.bz2
ampache-4ad67656eb63a6c23b0e6caed619f463e0c14aec.zip
editing a live stream works now, added confirmation to live stream creation and also tweaked the create page to be slightly less wordy
Diffstat (limited to 'templates/show_edit_live_stream_row.inc.php')
-rw-r--r--templates/show_edit_live_stream_row.inc.php61
1 files changed, 61 insertions, 0 deletions
diff --git a/templates/show_edit_live_stream_row.inc.php b/templates/show_edit_live_stream_row.inc.php
new file mode 100644
index 00000000..d32aaebf
--- /dev/null
+++ b/templates/show_edit_live_stream_row.inc.php
@@ -0,0 +1,61 @@
+<?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 v2
+ as published by the Free Software Foundation.
+
+ 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.
+
+*/
+?>
+<td colspan="6">
+<form method="post" id="edit_live_stream_<?php echo $radio->id; ?>">
+<table border="0" cellpadding="3" cellspacing="0">
+<tr>
+ <th><?php echo _('Name'); ?></th>
+ <th><?php echo _('Stream URL'); ?></th>
+ <th><?php echo _('Homepage'); ?></th>
+ <th><?php echo _('Callsign'); ?></th>
+ <th><?php echo _('Frequency'); ?></th>
+ <th><?php echo _('Genre'); ?></th>
+ <th>&nbsp;</th>
+</tr>
+<tr>
+<td>
+ <input type="textbox" name="name" value="<?php echo scrub_out($radio->name); ?>" size="9" />
+</td>
+<td>
+ <input type="textbox" name="url" value="<?php echo scrub_out($radio->url); ?>" size ="12" />
+</td>
+<td>
+ <input type="textbox" name="site_url" value="<?php echo scrub_out($radio->site_url); ?>" size="9" />
+</td>
+<td>
+ <input type="textbox" name="call_sign" value="<?php echo scrub_out($radio->call_sign); ?>" size="6" />
+</td>
+<td>
+ <input type="textbox" name="frequency" value="<?php echo scrub_out($radio->frequency); ?>" size="6" />
+</td>
+<td>
+ <?php show_genre_select('genre',$radio->genre); ?>
+</td>
+<td>
+ <input type="hidden" name="id" value="<?php echo $radio->id; ?>" />
+ <input type="hidden" name="type" value="live_stream" />
+ <?php echo Ajax::button('?action=edit_object&id=' . $radio->id . '&type=live_stream','download',_('Save Changes'),'save_live_stream_' . $radio->id,'edit_live_stream_' . $radio->id); ?>
+</td>
+</tr>
+</table>
+</form>
+</td>