diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2005-12-09 17:56:34 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2005-12-09 17:56:34 +0000 |
commit | 4b5713c9b0b897afbdc2c29110d948bd62244569 (patch) | |
tree | 4d23bc189011795db07c8eea4df784e2cd8166b4 /templates/show_get_albumart.inc.php | |
parent | 2b12112868cce750e83a015cb581d376f08a873b (diff) | |
download | ampache-4b5713c9b0b897afbdc2c29110d948bd62244569.tar.gz ampache-4b5713c9b0b897afbdc2c29110d948bd62244569.tar.bz2 ampache-4b5713c9b0b897afbdc2c29110d948bd62244569.zip |
added ability to specify custom album art search options
Diffstat (limited to 'templates/show_get_albumart.inc.php')
-rw-r--r-- | templates/show_get_albumart.inc.php | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/templates/show_get_albumart.inc.php b/templates/show_get_albumart.inc.php new file mode 100644 index 00000000..2de886b3 --- /dev/null +++ b/templates/show_get_albumart.inc.php @@ -0,0 +1,63 @@ +<?php +/* + + Copyright (c) 2001 - 2006 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. + +*/ +?> + +<form name="coverart" method="get" action="<?php echo conf('web_path'); ?>/albums.php" style="Displain:inline;"> +<table class="text-box"> +<tr> + <td> + <span class="header1"><?php echo _("Customize Search"); ?></span> + </td> +</tr> +<tr> + <td> + <?php echo _("Artist"); ?> + </td> + <td> + <input type="text" size="20" id="artist_name" name="artist_name" value="<?php echo $artistname; ?>" /> + </td> +</tr> +<tr> + <td> + <?php echo _("Album"); ?> + </td> + <td> + <input type="text" size="20" id="album_name" name="album_name" value="<?php echo $albumname; ?>" /> + </td> +</tr> +<tr> + <td> + <?php echo _("Direct URL to Image"); ?> + </td> + <td> + <input type="text" size="40" id="cover" name="cover" value="" /> + </td> +</tr> +<tr> + <td> + <input type="hidden" name="action" value="find_art" /> + <input type="hidden" name="album_id" value="<?php echo $album->id; ?>" /> + <input type="submit" value="<?php echo _("Get Art"); ?>" /> + </td> +</tr> +</table> +</form> |