64 Zeilen
Kein EOL
1,6 KiB
PHP
64 Zeilen
Kein EOL
1,6 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Project:
|
|
* Contenido Content Management System
|
|
*
|
|
* Description:
|
|
*
|
|
* Requirements:
|
|
* @con_php_req 5
|
|
*
|
|
* @package ContenidoBackendArea
|
|
* @version 0.2
|
|
* @author unknown
|
|
* @copyright four for business AG <www.4fb.de>
|
|
* @license http://www.contenido.org/license/LIZENZ.txt
|
|
* @link http://www.4fb.de
|
|
* @link http://www.contenido.org
|
|
*
|
|
*
|
|
*
|
|
* {@internal
|
|
* created unknown
|
|
* modified 2008-07-07, bilal arslan, added security fix
|
|
*
|
|
* $Id$:
|
|
* }}
|
|
*
|
|
*/
|
|
if (!defined('CON_FRAMEWORK')) {
|
|
die('Illegal call');
|
|
}
|
|
|
|
|
|
|
|
session_unset();
|
|
|
|
class cSetupLanguageChooser extends cSetupMask {
|
|
|
|
public function __construct() {
|
|
parent::__construct("templates/languagechooser.tpl");
|
|
$this->setHeader('Version ' . C_SETUP_VERSION);
|
|
$this->_oStepTemplate->set("s", "DE_HINT", "Diese Anwendung hilft Ihnen bei der Installation.");
|
|
$this->_oStepTemplate->set("s", "EN_HINT", "This application will guide you trough the setup process.");
|
|
$this->_oStepTemplate->set("s", "DE_HINT_LANG", "Wählen Sie bitte die gewünschte Sprache für das Setup aus.");
|
|
$this->_oStepTemplate->set("s", "EN_HINT_LANG", "Please choose your language to continue.");
|
|
|
|
$langs = array("de_DE" => "Deutsch", "C" => "English");
|
|
|
|
$m = "";
|
|
|
|
foreach ($langs as $entity => $lang) {
|
|
$test = new cHTMLLanguageLink($entity, $lang, "setuptype");
|
|
$m .= $test->render();
|
|
}
|
|
|
|
$this->_oStepTemplate->set("s", "LANGUAGECHOOSER", $m);
|
|
}
|
|
|
|
}
|
|
|
|
$cSetupStep1 = new cSetupLanguageChooser;
|
|
$cSetupStep1->render();
|
|
?>
|