52 lines
1.6 KiB
PHP
52 lines
1.6 KiB
PHP
<?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' );
|
|
|
|
?>
|