diff options
Diffstat (limited to 'templates/customize_catalog.inc')
-rw-r--r-- | templates/customize_catalog.inc | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/templates/customize_catalog.inc b/templates/customize_catalog.inc new file mode 100644 index 00000000..243e66ae --- /dev/null +++ b/templates/customize_catalog.inc @@ -0,0 +1,74 @@ +<?php +/* + + Copyright (c) 2001 - 2005 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. + +*/ +?> +<br /> +<div class="header2"><?php echo _("Settings for catalog in"); ?> <?php echo $catalog->path; ?></div><br /> +<div class="text-box"> +<form method="get" action="<?php echo conf('web_path'); ?>/admin/catalog.php" enctype="multipart/form-data"> +<table class="tabledata" cellspacing="0" cellpadding="0" border="0"> +<tr> + <td><?php echo _("Name"); ?>:</td> + <td><input size="60" type="text" name="name" value="<?= htmlspecialchars($catalog->name);?>"></input></td> + <td style="vertical-align:top; font-family: monospace;" rowspan="5"> + <strong><?php echo _("Auto-inserted Fields"); ?>:</strong><br /> + %A = <?php echo _("album name"); ?><br /> + %a = <?php echo _("artist name"); ?><br /> + %C = <?php echo _("catalog path"); ?><br /> + %c = <?php echo _("id3 comment"); ?><br /> + %g = <?php echo _("genre"); ?><br /> + %T = <?php echo _("track number (padded with leading 0)"); ?><br /> + %t = <?php echo _("song title"); ?><br /> + %y = <?php echo _("year"); ?><br /> + %o = <?php echo _("other"); ?><br /> + </td> +</tr> +<tr> + <td><?php echo _("ID3 set command"); ?>:</td> + <td> + <input size="60" type="text" name="id3_set_command" value="<?php echo htmlspecialchars($catalog->id3_set_command); ?>" /> + </td> +</tr> +<tr> + <td><?php echo _("Filename pattern"); ?>:</td> + <td> + <input size="60" type="text" name="rename_pattern" value="<?php echo htmlspecialchars($catalog->rename_pattern); ?>" /> + </td> +</tr> +<tr> + <td> + <?php echo _("Folder Pattern"); ?>:<br /><?php echo _("(no leading or ending '/')"); ?> + </td> + <td> + <input size="60" type="text" name="sort_pattern" value="<?php echo htmlspecialchars($catalog->sort_pattern);?>" /> + </td> +</tr> +<tr> + <td> </td> + <td> + <input type="hidden" name="catalog_id" value="<?php echo $catalog->id; ?>"> + <input type="hidden" name="action" value="update_catalog_settings" /> + <input type="submit" value="<?php echo _("Save Catalog Settings"); ?>" /> + </td> +</tr> +</table> +</form> +</div> |