Erweiterung der Funktionalität, erste Anbindung an Editoren, Einbinden von JS-Bibliotheken

This commit is contained in:
2016-10-05 15:27:09 +00:00
parent 5a1dd25023
commit f65b4db286
26 changed files with 31969 additions and 140 deletions

View File

@@ -1,9 +1,9 @@
<?php
/* Portal - Definitionen */
$vC['portal']['name'] = 'Bühler Kaffee';
$vC['portal']['hostUrl'] = 'http://www.bühler-kaffee/admin';
$vC['portal']['arrHost'] = parse_url($vC['portal']['hostUrl']);
/**
* Portal - Definitionen
*/
$vC['portal']['name'] = 'AHD Allradhaus GmbH';
$vC['portal']['adminUserId'] = 3;
$vC['portal']['languages'] = array('de');
$vC['portal']['address'] = 'informal'; /* formal || informal */
@@ -11,26 +11,16 @@ $vC['portal']['layout'] = 'buehler';
$vC['portal']['tplElements'] = array('login', 'navi_main', 'content');
$vC['portal']['imgQuality'] = 90;
/* Website-Bearbeitung - Definitionen */
$vC['portal']['website']['navId'] = array();
$vC['portal']['website']['prefix'] = array();
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 */
/**
* E-Mail Versand
*/
$vC['portal']['mail']['type'] = 'smtp'; /* sendmail || smtp || mail */
/* Nur ausfüllen, falls 'type' === 'smtp' */
/**
* 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';
@@ -41,9 +31,7 @@ $vC['portal']['mail']['fromName'] = 'Bühler Kaffee';
$vC['portal']['mail']['html'] = false; /* true || false */
$vC['portal']['mail']['charset'] = 'UTF-8';
/* Wartezeiten in Sekunden */
$vC['timeout']['error'] = 5;
/* Bereich Kundenverwaltung */
$vC['customer']['results'] = array(50, 100, 200, 500, 1000);
$vC['customer']['pagerBefore'] = 3;
/**
* Wartezeiten in Sekunden
*/
$vC['timeout']['error'] = 5;