mirror of
https://github.com/Yetangitu/ampache
synced 2025-10-05 02:39:47 +02:00
52 lines
2.2 KiB
PHP
52 lines
2.2 KiB
PHP
<?php
|
|
/* vim:set softtabstop=4 shiftwidth=4 expandtab: */
|
|
/**
|
|
*
|
|
* LICENSE: GNU General Public License, version 2 (GPLv2)
|
|
* Copyright 2001 - 2015 Ampache.org
|
|
*
|
|
* 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.
|
|
*
|
|
*/
|
|
|
|
require $prefix . '/templates/install_header.inc.php';
|
|
?>
|
|
<!-- Main jumbotron for a primary marketing message or call to action -->
|
|
<div class="jumbotron">
|
|
<h1 id="headerlogo"><img src="<?php echo $web_path; ?>/themes/reborn/images/ampache.png" title="Ampache" alt="Ampache"><?php echo T_('Ampache Installation'); ?></h1>
|
|
</div>
|
|
<div class="page-header">
|
|
<h1><?php echo T_('Choose Installation Language'); ?></h1>
|
|
</div>
|
|
<p><?php Error::display('general'); ?></p>
|
|
<form role="form" method="post" action="<?php echo $web_path . "/install.php?action=check"; ?>" enctype="multipart/form-data" >
|
|
<div class="form-group">
|
|
<?php
|
|
$languages = get_languages();
|
|
$var_name = $value . "_lang";
|
|
${$var_name} = "selected=\"selected\"";
|
|
|
|
echo "<select class=\"form-control\" 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";
|
|
?>
|
|
</div>
|
|
<button type="submit" class="btn btn-warning"><?php echo T_('Start configuration'); ?></button>
|
|
</form>
|
|
<?php require $prefix . '/templates/install_footer.inc.php'; ?>
|