Einchecken des OnlineStands

This commit is contained in:
2016-09-07 14:36:03 +00:00
parent feed788c84
commit 53295535eb
241 changed files with 69161 additions and 0 deletions

52
.config/config_global.php Normal file
View File

@@ -0,0 +1,52 @@
<?php
/* Pfade definieren */
define ( 'PATH_SITE' , PATH_ROOT . 'administrator/' );
define ( 'PATH_ACT' , PATH_ROOT . '.actions/' );
define ( 'PATH_CLS' , PATH_ROOT . '.classes/' );
define ( 'PATH_CNF' , PATH_ROOT . '.config/' );
define ( 'PATH_FNC' , PATH_ROOT . '.functions/' );
define ( 'PATH_INC' , PATH_ROOT . '.includes/' );
define ( 'PATH_LANG' , PATH_ROOT . '.lang/' );
define ( 'PATH_CSS' , PATH_SITE . 'css/' );
define ( 'PATH_IMG' , PATH_SITE . 'images/' );
define ( 'PATH_JS' , PATH_SITE . 'js/' );
define ( 'PATH_MED' , PATH_ROOT . 'media/' );
define ( 'PATH_PORTAL_TPL' , PATH_SITE . 'templates/' );
define ( 'PATH_WEBSITE_TPL' , PATH_ROOT . 'templates/' );
/* Datenbank konfigurieren */
define ( 'DB_TYPE' , 'mysqli' );
define ( 'DB_HOST' , 'localhost' );
define ( 'DB_NAME' , 'c9svj' );
define ( 'DB_USER' , 'c9svj' );
define ( 'DB_PASS' , 'rXzmeEM@3' );
/* Tabellennamen definieren */
define ( 'TBL_NAVI' , 'navi' );
define ( 'TBL_CONTENT' , 'content' );
define ( 'TBL_HEAD' , 'content_headline' );
define ( 'TBL_IMAGE' , 'content_image' );
define ( 'TBL_TEXT' , 'content_text' );
define ( 'TBL_TEXTIMAGE' , 'content_textimage' );
define ( 'TBL_LOG' , 'portal_log' );
define ( 'TBL_RIGHTS' , 'portal_rights' );
define ( 'TBL_USER' , 'portal_user' );
/* Mimetypes */
$vC['mimetypes'] = array
(
'jpg' => 'image/jpeg' ,
'png' => 'image/png' ,
'gif' => 'image/gif'
);
/* Weitere Includes */
include_once ( PATH_CNF . 'config_version.php' );
include_once ( PATH_INC . 'global_header.php' );
?>