Cheetah
config.php
Go to the documentation of this file.
1 <?php
2 
9 
10 $dir = array();
11 
12 $aPathInfo = pathinfo(__FILE__);
13 require_once($aPathInfo['dirname'] . '/../../../../../inc/header.inc.php');
14 
15 $path = CH_DIRECTORY_PATH_ROOT . 'modules/cheetah/forum/'; // path to orca files
16 
20 require_once(CH_DIRECTORY_PATH_INC . 'db.inc.php');
21 require_once(CH_DIRECTORY_PATH_INC . 'design.inc.php');
22 require_once(CH_DIRECTORY_PATH_INC . 'profiles.inc.php');
23 
24 $gConf['date_format'] = getLocaleFormat(CH_WSB_LOCALE_DATE, CH_WSB_LOCALE_DB); // time/date format
25 
26 $gConf['fulltext_search'] = getParam('useLikeOperator') ? false : true; // use FULLTEXT search or search using LIKE
27 
31 $gConf['dir']['error_log'] = $path . 'log/orca.error.log'; // error log file path
32 $gConf['dir']['classes'] = $path . 'classes/'; // classes directiry path
33 $gConf['dir']['js'] = $path . 'js/'; // js directiry path
34 $gConf['dir']['inc'] = $path . 'inc/'; // include files path
35 $gConf['dir']['xmlcache'] = $path . 'xml/'; // not used
36 $gConf['dir']['xml'] = $path . 'integrations/' . CH_ORCA_INTEGRATION . '/'; // path to integratiom directory
37 $gConf['dir']['base'] = $path; // base dir
38 $gConf['dir']['cache'] = $path . 'cachejs/'; // js files cache
39 $gConf['dir']['config'] = $path . 'conf/params.conf'; // config
40 $gConf['dir']['layouts'] = $path . 'layout/'; // layouts dir
41 $gConf['dir']['editor'] = CH_DIRECTORY_PATH_PLUGINS . 'tiny_mce/'; // path to javascript editor
42 $gConf['dir']['langs'] = $path . 'integrations/base/langs/'; // lang files locaiton
43 $gConf['dir']['attachments'] = $path . 'data/attachments/'; // attachments dir
44 
48 $gConf['skin'] = 'uni';
49 $skin = isset($_GET['skin']) && $_GET['skin'] ? $_GET['skin'] : (isset($_COOKIE['skin']) ? $_COOKIE['skin'] : (function_exists('db_value') ? db_value("SELECT `VALUE` FROM `sys_options` WHERE `Name` = 'template' LIMIT 1") : ''));
50 if ($skin && preg_match("/^\w+$/", $skin) && file_exists($path . 'layout/' . $skin)) {
51  $gConf['skin'] = $skin;
52 }
53 
57 $gConf['lang'] = isset($_GET['lang']) && $_GET['lang'] ? $_GET['lang'] : (isset($_COOKIE['lang']) ? $_COOKIE['lang'] : '');
58 if (!$gConf['lang'] || !preg_match("/^[a-z]{2}$/",
59  $gConf['lang']) || !file_exists($path . 'layout/base_' . $gConf['lang'])
60 ) {
61  if (function_exists('db_value')) {
62  $gConf['lang'] = db_value("SELECT `VALUE` FROM `sys_options` WHERE `Name` = ? LIMIT 1", ['lang_default']);
63  } else {
64  $gConf['lang'] = 'en';
65  }
66 }
67 
71 $gConf['url']['base'] = $site['url'] . 'forum/'; // base url
72 $gConf['url']['layouts'] = $gConf['url']['base'] . 'layout/'; // layouts url
73 $gConf['url']['js'] = $gConf['url']['base'] . 'js/'; // layouts url
74 $gConf['url']['editor'] = $site['plugins'] . 'tiny_mce/'; // url to javascript editor
75 $gConf['url']['attachments'] = $site['url'] . 'data/attachments/'; // url to attachments
76 
80 if ($gConf['lang'] && file_exists($path . 'layout/' . $gConf['skin'] . '_' . $gConf['lang'])) {
81  $gConf['dir']['classes'] = $gConf['dir']['classes'] . $gConf['lang'] . '/';
82  $gConf['dir']['js'] = $gConf['dir']['js'] . $gConf['lang'] . '/';
83  $gConf['url']['js'] = $gConf['url']['js'] . $gConf['lang'] . '/';
84  $gConf['skin'] = $gConf['skin'] . '_' . $gConf['lang'];
85 }
86 
90 require_once($gConf['dir']['layouts'] . $gConf['skin'] . '/params.php');
91 
95 $gConf['db']['host'] = DATABASE_HOST; // hostname
96 $gConf['db']['db'] = DATABASE_NAME; // database name
97 $gConf['db']['user'] = DATABASE_USER; // database username
98 $gConf['db']['pwd'] = DATABASE_PASS; // database password
99 $gConf['db']['port'] = DATABASE_PORT; // database port
100 $gConf['db']['sock'] = DATABASE_SOCK; // database socket
101 $gConf['db']['prefix'] = 'ch_'; // tables names prefix
102 
103 function isXsltEnabled()
104 {
105  if (((int)phpversion()) >= 5) {
106 
107  if (class_exists('DOMDocument') && class_exists('XsltProcessor')) {
108  return true;
109  }
110  } else {
111 
112  if (function_exists('domxml_xslt_stylesheet_file')) {
113  return true;
114  } elseif (function_exists('xslt_create')) {
115  return true;
116  }
117  }
118 
119  return false;
120 }
121 
122 if ('auto' == $gConf['xsl_mode']) {
123  $gConf['xsl_mode'] = isXsltEnabled() ? 'server' : 'client';
124 }
CH_WSB_LOCALE_DATE
const CH_WSB_LOCALE_DATE
Definition: utils.inc.php:16
isXsltEnabled
isXsltEnabled()
Definition: config.php:103
$path
$path
Definition: config.php:15
CH_ORCA_INTEGRATION
const CH_ORCA_INTEGRATION
Definition: ChForumSiteMaps.php:10
php
$_GET
$_GET['debug']
Definition: index.php:67
getParam
getParam($sParamName, $bUseCache=true)
Definition: db.inc.php:130
$site
$site['ver']
Definition: version.inc.php:8
$gConf
global $gConf
Definition: config.php:8
global
if(!defined("GLOBAL_MODULE")) define("GLOBAL_MODULE" global
Definition: header.inc.php:25
$aPathInfo
$aPathInfo
Definition: config.php:12
$skin
$skin
Definition: config.php:49
CH_WSB_LOCALE_DB
const CH_WSB_LOCALE_DB
Definition: utils.inc.php:19
db_value
db_value($query, $bindings=[], $error_checking=true, $index=0)
Definition: db.inc.php:98
getLocaleFormat
getLocaleFormat($iCode=CH_WSB_LOCALE_DATE_SHORT, $iType=CH_WSB_LOCALE_PHP)
Definition: utils.inc.php:89
false
if(!defined("FALSE_VAL")) define("FALSE_VAL" false
Definition: constants.inc.php:9
$dir
$dir
Definition: config.php:10