diff options
Diffstat (limited to 'templates/song_edit.inc')
-rw-r--r-- | templates/song_edit.inc | 86 |
1 files changed, 86 insertions, 0 deletions
diff --git a/templates/song_edit.inc b/templates/song_edit.inc new file mode 100644 index 00000000..c4eab4a7 --- /dev/null +++ b/templates/song_edit.inc @@ -0,0 +1,86 @@ +<?php +/* + + Copyright (c) 2004 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; either version 2 + of the License, or (at your option) any later version. + + 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. + +*/ +preg_match("/^.*\/(.*?)$/",$song->file, $short); +$filename = htmlspecialchars($short[1]); +$target = conf('web_path').'/admin/flags.php'; +?> + +<form name="update_song" method="post" action="<?= $target; ?>"> +<table class="tabledata" cellspacing="0" cellpadding="0" border="0"> + <tr> + <td>File:</td> + <td colspan="2"><?= $filename; ?></td> + </tr> + <tr> + <td>Title:</td> + <td><input type="text" name="title" size="60" value="<?= $song->title; ?>"></td> + </tr> + <tr> + <td>Artist:</td> + <td> +<?php show_artist_pulldown($song->artist); ?> + </td> + <td>or <input type="text" name="new_artist" size="30" value=""></td> + </tr> + + <tr> + <td>Album:</td> + <td> +<?php show_album_pulldown($song->album); ?> + </td> + <td>or <input type="text" name="new_album" size="30" value=""></td> + </tr> + <tr> + <td>Track:</td> + <td><input type="text" size="4" maxlength="4" name="track" value="<?=$song->track?>"></input></td> + </tr> + <tr> + <td>Genre:</td> + <td> +<?php show_genre_pulldown($song->genre, 1); ?> + <tr> + <td>Year</td> + <td><input type="text" size="4" maxlength="4" name="year" value="<?=$song->year?>"></input></td> + </tr> + + <tr> + <td> </td> + <td><input type="checkbox" name="update_id3" value="yes" checked="checked"> Update id3 tags</input></td> + <td> </td> + </tr> + <tr> + <td> </td> + <td> <input type=hidden name="song" value="<?=$song->id?>"> + <input type=hidden name="flag" value="<?=$flagid?>"> + <input type=hidden name="current_artist_id" value="<?=$song->artist?>"> + +<?php if(count($_SESSION['edit_queue'])){ ?> + <input type=submit name="action" value="Next"></input> + <input type=submit name="action" value="Skip"></input> + <input type="submit" name="action" value="Clear Edit List"></input></td> +<?php } else { ?> + <input type=submit name="action" value="Done"> </td> +<?php } ?> + </tr> +</table> +</form> + |