initializing git repo

This commit is contained in:
Developer 2018-12-17 17:50:23 +01:00
commit 3df8fc53b8
86 changed files with 5649 additions and 0 deletions

31
includes/globals.php Executable file
View file

@ -0,0 +1,31 @@
<?php
$GlobalDebungMode = 1;
$GlobalLogfile = "";
$GlobalLogfileMaxLength = 1000;
$GlobalTimeZone = "";
$GlobalTimeFormat = "";
$GlobalRootPassword = "";
$GlobalTemplate = "";
$GlobalLanguage = "";
$GlobalContent = "";
$GlobalMysqlHost = "";
$GlobalMysqlUser = "";
$GlobalMysqlPwd = "";
$GlobalMysqlHandler = 0;
$GlobalMysqlDatabase = "";
$GlobalLockAutoReleaseTime=3600;
$GlobalDownloadDir = "./downloads";
$GlobalPictureDir = "./pictures";
$GlobalDecimalPoint="."
?>