summaryrefslogtreecommitdiffstats
path: root/templates/show_edit_song_row.inc.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2007-07-22 18:32:09 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2007-07-22 18:32:09 +0000
commitff606dbefca94580b56a081c5d3089037a2d033d (patch)
treebdc9cb8ea8d3b5d8e9b1ebe313ce163990a75d0c /templates/show_edit_song_row.inc.php
parent472072028560aa178211ae248fc0dad4526533c7 (diff)
downloadampache-ff606dbefca94580b56a081c5d3089037a2d033d.tar.gz
ampache-ff606dbefca94580b56a081c5d3089037a2d033d.tar.bz2
ampache-ff606dbefca94580b56a081c5d3089037a2d033d.zip
removed some old/legacy functions fixed download and merged it into the /play
Diffstat (limited to 'templates/show_edit_song_row.inc.php')
-rw-r--r--templates/show_edit_song_row.inc.php47
1 files changed, 47 insertions, 0 deletions
diff --git a/templates/show_edit_song_row.inc.php b/templates/show_edit_song_row.inc.php
new file mode 100644
index 00000000..dba9c6ee
--- /dev/null
+++ b/templates/show_edit_song_row.inc.php
@@ -0,0 +1,47 @@
+<?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="8">
+<form method="post" id="edit_song_<?php echo $song->id; ?>">
+<table border="0" cellpadding="3" cellspacing="0">
+<td>
+ <input type="textbox" name="name" value="<?php echo scrub_out($song->title); ?>" />
+</td>
+<td>
+ <?php show_artist_select('artist',$song->artist); ?>
+</td>
+<td>
+ <?php show_album_select('album',$song->album); ?>
+</td>
+<td>
+ <?php show_genre_select('genre',$song->genre); ?>
+</td>
+<td>
+ <input type="textbox" size="3" value="<?php echo scrub_out($song->track); ?>" />
+</td>
+<td>
+ <input type="hidden" name="id" value="<?php echo $album->id; ?>" />
+ <input type="hidden" name="type" value="album" />
+ <?php echo Ajax::button('?action=edit_object&id=' . $song->id . '&type=song','download',_('Save Changes'),'save_song_' . $song->id,'edit_song_' . $song->id); ?>
+</td>
+</table>
+</form>
+</td>