Files
2017-03-02 21:57:21 -06:00

48 lines
1.9 KiB
PHP
Executable File

<?php
#########################################################
# #
# Global variables for pae.co.at #
# written by benjamin ramey #
# bsr@rameydesign.net #
# #
# best viewed with: #
# resolution = 1280x960 #
# tab = 4 spaces #
# indent = 8 spaces #
# #
########################################################################################## initialization of globals
$_CLEAN_PATH = $_SERVER['QUERY_STRING'];
$_CONFIG = array( 'langs' => array('en','de'), // allowable languages
'cookie_domain' => '.pae.co.at',
'commands' => array('display','user'),
'panorama_dir' => $_DOC_ROOT.'/graphics/pictures/panoramas',
'sidecolumn_dir' => $_DOC_ROOT.'/graphics/pictures/sidecolumn',
'user_lopw_file' => $_DOC_ROOT.'/data/users/lopw.txt',
'phrase_file' => $_DOC_ROOT.'/data/users/phrase.txt',
'schedules_file' => $_DOC_ROOT.'/data/pages/seminars_schedule.xml',
'events_file' => $_DOC_ROOT.'/data/pages/events_data.xml',
'events_pics_dir' => $_DOC_ROOT.'/data/events_photos' );
$_LANG_LONG = array( 'en' => 'English',
'de' => 'Deutsch' );
$_SCRIPT_ERRORS = array();
$_PATH_PREFIX = '';
$_CMDS = main_get_commands();
$_LANG = (isset($_CMDS['lang'])
and (array_search($_CMDS['lang'],$_CONFIG['langs']) !== FALSE))
? $_CMDS['lang']
: NULL;
# allcourse files
$_SEMINAR_FILES = array('accountingprincipals.xml','balancesheet.xml','bankinganalysis.xml',
'baselII.xml','capitalmarkets.xml','centralbankissues.xml',
'ecbdocumentation.xml','economicsofmoney.xml','genfinancialenglish.xml',
'incomestatement.xml','successfulpresentations.xml','telephonesuccess.xml',
'emailfluency.xml','effectivesales.xml','humanresourcesenglish.xml',
'languageofpresentations.xml','writingofminutes.xml');
?>