summaryrefslogtreecommitdiffstats
path: root/templates/show_install_lang.inc.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2006-05-01 07:22:07 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2006-05-01 07:22:07 +0000
commita02b8ce20746ef5449e661ac8ffdb4e1974e65c2 (patch)
treedb1e0b2a6ef1b9fa7bfaa65e2fdb8eb22286f063 /templates/show_install_lang.inc.php
parentaf554e6296eff9ee08ad59597f27378e4b2a8db8 (diff)
downloadampache-a02b8ce20746ef5449e661ac8ffdb4e1974e65c2.tar.gz
ampache-a02b8ce20746ef5449e661ac8ffdb4e1974e65c2.tar.bz2
ampache-a02b8ce20746ef5449e661ac8ffdb4e1974e65c2.zip
fixed clean, added lang to installer (thx ros) and cleaned up catalog display a bit and mojoed lang list
Diffstat (limited to 'templates/show_install_lang.inc.php')
-rw-r--r--templates/show_install_lang.inc.php60
1 files changed, 60 insertions, 0 deletions
diff --git a/templates/show_install_lang.inc.php b/templates/show_install_lang.inc.php
new file mode 100644
index 00000000..e4ccfbf9
--- /dev/null
+++ b/templates/show_install_lang.inc.php
@@ -0,0 +1,60 @@
+<html>
+<head>
+<title>Ampache :: For The Love Of Music - Install</title>
+</head>
+<body>
+<script src="lib/general.js" language="javascript" type="text/javascript"></script>
+<?php require_once(conf('prefix') . "/templates/install.css"); ?>
+<div id="header">
+<h1><?php echo _('Ampache Installation'); ?></h1>
+<p>For the love of Music</p>
+</div>
+<div id="text-box">
+ <div class="notify">
+ <b><?php echo _("Requirements"); ?></b>
+ <p>
+ <?php echo _('This Page handles the installation of the Ampache database and the creation of the ampache.cfg.php file. Before you continue please make sure that you have the following pre-requisites'); ?>
+ <br />
+ <ul>
+ <li><?php echo _('A MySQL Server with a username and password that can create/modify databases'); ?></li>
+ <li><?php echo _('Your webserver has read access to the /sql/ampache.sql file and the /config/ampache.cfg.php.dist file'); ?></li>
+ </ul>
+<?php echo _("Once you have ensured that you have the above requirements please fill out the information below. You will only be asked for the required config values. If you would like to make changes to your ampache install at a later date simply edit /config/ampache.cfg.php"); ?>
+ </p>
+ </div>
+
+ <div class="content">
+ <b>Choose installation language.</b>
+ <p>
+ <?php echo $GLOBALS['error']->print_error('general'); ?>
+
+<form method="post" action="<?php echo $http_type . $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF'] . "?action=init"; ?>" enctype="multipart/form-data" >
+
+<?
+$languages = get_languages();
+$var_name = $value . "_lang";
+${$var_name} = "selected=\"selected\"";
+
+echo "<select name=\"htmllang\">\n";
+
+foreach ($languages as $lang=>$name) {
+ $var_name = $lang . "_lang";
+
+ echo "\t<option value=\"$lang\" " . ${$var_name} . ">$name</option>\n";
+} // end foreach
+echo "</select>\n";
+?>
+
+<input type="submit" value="<?php echo _('Start configuration'); ?>">
+
+ </form>
+ </p>
+ </div>
+ <div id="bottom">
+ <p><b>Ampache Installation.</b><br />
+ For the love of Music.</p>
+ </div>
+</div>
+
+</body>
+</html>