Initial commit for temporary serving.

This commit is contained in:
2024-02-07 13:11:24 +01:00
commit b26c4881ba
2445 changed files with 99872 additions and 0 deletions

21
1.0.5/js/lang.js.php Normal file
View File

@@ -0,0 +1,21 @@
<?php
/**
* Created by CS medien- & kommunikationssysteme.
* @author Christian Steinle
* @date 12.09.2016
*
* @copyright CS medien- & kommunikationssysteme (http://www.steinle-computer.de)
*/
header('Content-Type: text/javascript');
$includeFile = dirname(__DIR__) . '/lang/lang-' . $_GET['lang'] . '.php';
if (file_exists(dirname(__DIR__) . '/lang/lang-' . $_GET['lang'] . '.php'))
{
$includeFile = dirname(__DIR__) . '/lang/lang-' . $_GET['lang'] . '.php';
}
include_once($includeFile);
?>
var editorLang = <?php echo json_encode($lang, JSON_UNESCAPED_UNICODE); ?>;