Einchecken des OnlineStands
This commit is contained in:
52
.config/config_global.php
Normal file
52
.config/config_global.php
Normal 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' );
|
||||
|
||||
?>
|
||||
21
.config/config_svjf.php
Normal file
21
.config/config_svjf.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
$svjf[ 'names' ] = 'SVJ-Fussball';
|
||||
$svjf[ 'tpl' ] = 'svjf';
|
||||
$svjf[ 'navTypes' ] = array ( 'content' => 'content' , 'uebersicht' => 'uebersicht' , 'spielbericht' => 'spielbericht' , 'turnier' => 'turnier' , 'widget' => 'widget' );
|
||||
$svjf[ 'host' ] = 'svj-fussball.de';
|
||||
$svjf[ 'fussballde' ] = '01M9R8HJO8000000VS541L4KVSEIO2C1';
|
||||
$svjf[ 'editorUrl' ] = $vC[ 'portal' ][ 'arrHost' ][ 'scheme' ] . '://steinle.no-ip.biz/rist_editors/';
|
||||
$svjf[ 'editorVersion' ] = '1.0';
|
||||
$svjf[ 'webserviceUrl' ] = $vC[ 'portal' ][ 'hostUrl' ] . '/webservices/remote_data.php';
|
||||
$svjf[ 'grid' ] = 24;
|
||||
$svjf[ 'gridCount' ] = 40;
|
||||
$svjf[ 'dimOrig' ] = array ( 'width' => 2560 , 'height' => 2560 );
|
||||
$svjf[ 'dimKeyvisual' ] = array ( 'width' => 864 , 'height' => 288 );
|
||||
$svjf[ 'dimImage' ] = array ( 'width' => 312 , 'height' => 234 );
|
||||
$svjf[ 'imageTypes' ] = array ( 'image/png' , 'image/jpeg' , 'image/gif' );
|
||||
$svjf[ 'keyvisualThumb' ] = array ( 'width' => 216 , 'height' => 72 );
|
||||
$svjf[ 'imageThumb' ] = array ( 'width' => 216 , 'height' => 324 );
|
||||
$svjf[ 'contentElems' ] = array ( 'subline' , 'text' , 'textimage' );
|
||||
|
||||
?>
|
||||
45
.config/config_version.php
Normal file
45
.config/config_version.php
Normal file
@@ -0,0 +1,45 @@
|
||||
<?php
|
||||
|
||||
/* Portal - Definitionen */
|
||||
$vC[ 'portal' ][ 'name' ] = 'SVJ Fussball';
|
||||
$vC[ 'portal' ][ 'hostUrl' ] = 'http://svj-fussball.de/administrator';
|
||||
$vC[ 'portal' ][ 'arrHost' ] = parse_url ( $vC[ 'portal' ][ 'hostUrl' ] );
|
||||
$vC[ 'portal' ][ 'adminUserId' ] = 3;
|
||||
$vC[ 'portal' ][ 'languages' ] = array ( 'de' );
|
||||
$vC[ 'portal' ][ 'address' ] = 'informal'; /* formal || informal */
|
||||
$vC[ 'portal' ][ 'layout' ] = 'cs_l1';
|
||||
$vC[ 'portal' ][ 'tplElements' ] = array ( 'login' , 'navi_main' , 'content' );
|
||||
$vC[ 'portal' ][ 'imgQuality' ] = 90;
|
||||
|
||||
/* Websitebearbeitung - Definitionen */
|
||||
|
||||
$vC[ 'portal' ][ 'website' ][ 'navId' ] = array ( '20' );
|
||||
$vC[ 'portal' ][ 'website' ][ 'prefix' ] = array ( 'svjf' );
|
||||
|
||||
foreach ( $vC[ 'portal' ][ 'website' ][ 'prefix' ] as $config )
|
||||
{
|
||||
include_once ( PATH_CNF . 'config_' . $config . '.php' );
|
||||
|
||||
foreach ( $$config as $key => $value )
|
||||
{
|
||||
$vC[ 'portal' ][ 'website' ][ $key ][ ] = $value;
|
||||
}
|
||||
}
|
||||
|
||||
/* E-Mail Versand */
|
||||
$vC[ 'portal' ][ 'mail' ][ 'type' ] = 'smtp'; /* sendmail || smtp || mail */
|
||||
|
||||
/* Nur ausfüllen, falls 'type' === 'smtp' */
|
||||
$vC[ 'portal' ][ 'mail' ][ 'smtpAuth' ] = true; /* true || false */
|
||||
$vC[ 'portal' ][ 'mail' ][ 'smtpHost' ] = 'mail.arcor.de';
|
||||
$vC[ 'portal' ][ 'mail' ][ 'smtpUser' ] = 'christiansteinle';
|
||||
$vC[ 'portal' ][ 'mail' ][ 'smtpPass' ] = 'lmaa2dw';
|
||||
|
||||
$vC[ 'portal' ][ 'mail' ][ 'from' ] = 'noreply@svj-fussball.de';
|
||||
$vC[ 'portal' ][ 'mail' ][ 'fromName' ] = 'noreply SVJ';
|
||||
$vC[ 'portal' ][ 'mail' ][ 'returnPath' ] = 'christiansteinle@arocr.de';
|
||||
$vC[ 'portal' ][ 'mail' ][ 'html' ] = false; /* true || false */
|
||||
$vC[ 'portal' ][ 'mail' ][ 'charset' ] = 'UTF-8';
|
||||
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user