Cheetah
languages.inc.php
Go to the documentation of this file.
1 <?php
2 
8 define('CH_WSB_LANGUAGE_DEFAULT', 'en');
9 define('CH_WSB_LANGUAGE_CATEGORY_SYSTEM', 1);
10 
11 if (!defined ('CH_SKIP_INSTALL_CHECK')) {
12  $sCurrentLanguage = getCurrentLangName(false);
13  if( !$sCurrentLanguage ) {
14  echo '<br /><b>Fatal error:</b> Cannot apply localization.';
15  exit;
16  }
17  require_once( CH_DIRECTORY_PATH_ROOT . "langs/lang-{$sCurrentLanguage}.php" );
18 }
19 
20 require_once(CH_DIRECTORY_PATH_INC . 'db.inc.php');
21 require_once(CH_DIRECTORY_PATH_INC . 'utils.inc.php');
22 require_once(CH_DIRECTORY_PATH_INC . 'profiles.inc.php');
23 require_once(CH_DIRECTORY_PATH_INC . 'params.inc.php');
24 
25 if (!defined ('CH_SKIP_INSTALL_CHECK')) {
26  getCurrentLangName(true);
27 
28  if (isset($_GET['lang'])) {
29  ch_import('ChWsbPermalinks');
30  $oPermalinks = new ChWsbPermalinks();
31  if ($oPermalinks->redirectIfNecessary(array('lang')))
32  exit;
33  }
34 }
35 
36 function getCurrentLangName($isSetCookie = true)
37 {
38  $sLang = '';
39 
40  if( !$sLang && !empty($_GET['lang']) ) $sLang = tryToGetLang( $_GET['lang'], $isSetCookie );
41  if( !$sLang && !empty($_POST['lang']) ) $sLang = tryToGetLang( $_POST['lang'], $isSetCookie );
42  if( !$sLang && !empty($_COOKIE['lang']) ) $sLang = tryToGetLang( $_COOKIE['lang'] );
43  if( !$sLang && ($sLangProfile = getProfileLangName()) ) $sLang = tryToGetLang( $sLangProfile );
44  if( !$sLang && !empty($_SERVER['HTTP_ACCEPT_LANGUAGE']) ) $sLang = tryToGetLang( $_SERVER['HTTP_ACCEPT_LANGUAGE'] );
45  if( !$sLang ) $sLang = tryToGetLang( getParam( 'lang_default' ) );
46  if( !$sLang ) $sLang = tryToGetLang( CH_WSB_LANGUAGE_DEFAULT );
47 
48  setlocale(LC_TIME, $sLang.'_'.strtoupper($sLang).'.utf-8', $sLang.'_'.strtoupper($sLang).'.utf8', $sLang.'.utf-8', $sLang.'.utf8', $sLang);
49 
50  return $sLang;
51 }
52 
53 function tryToGetLang( $sLangs, $bSetCookie = false )
54 {
55  $sLangs = trim( $sLangs );
56  if( !$sLangs )
57  return '';
58 
59  $sLangs = preg_replace( '/[^a-zA-Z0-9,;-]/m', '', $sLangs ); // we do not need 'q=0.3'. we are using live queue :)
60  $sLangs = strtolower( $sLangs );
61 
62  if( !$sLangs )
63  return '';
64 
65  $aLangs = explode( ',', $sLangs ); // ru,en-us;q=0.7,en;q=0.3 => array( 'ru' , 'en-us;q=0.7' , 'en;q=0.3' );
66  foreach( $aLangs as $sLang ) {
67  if( !$sLang ) continue;
68 
69  list( $sLang ) = explode( ';', $sLang, 2 ); // en-us;q=0.7 => en-us
70  if( !$sLang ) continue;
71 
72  // check with country
73  if( checkLangExists( $sLang ) ) {
74  if( $bSetCookie && ($_COOKIE['lang'] != $sLang) && ($GLOBALS['glLangSet'] != $sLang) ) {
75  setLangCookie( $sLang );
76  $GLOBALS['glLangSet'] = $sLang;
77  }
78  return $sLang;
79  }
80 
81  //drop country
82  list( $sLang, $sCntr ) = explode( '-', $sLang, 2 ); // en-us => en
83  if( !$sLang or !$sCntr ) continue; //no lang or nothing changed
84 
85  //check again. without country
86  if( checkLangExists( $sLang ) ) {
87  if( $bSetCookie )
88  setLangCookie( $sLang );
89  return $sLang;
90  }
91  }
92 
93  return '';
94 }
95 
96 function checkLangExists( $sLang )
97 {
98  if (!preg_match('/^[A-Za-z0-9_]+$/', $sLang))
99  return false;
100  if( file_exists( CH_DIRECTORY_PATH_ROOT . "langs/lang-{$sLang}.php" ) )
101  return true;
102 
103  // $sQuery = "SELECT `ID` FROM `sys_localization_languages` WHERE `Name` = '$sLang'";
104  // $iLangID = (int)db_value( $sQuery );
105 
106  $iLangID = (int)$GLOBALS['MySQL']->fromCache('checkLangExists_'.$sLang, 'getOne', "SELECT `ID` FROM `sys_localization_languages` WHERE `Name` = '$sLang'");
107 
108  if( !$iLangID )
109  return false;
110 
111  if( compileLanguage( $iLangID ) )
112  return true;
113 
114  return false;
115 }
116 
117 function setLangCookie( $sLang )
118 {
120 
121  if ($iProfileId) {
122  $iLangID = getLangIdByName($sLang);
123  if (!$iLangID)
124  $iLangID = 0 ;
125 
126  db_res( 'UPDATE `Profiles` SET `LangID` = ' . (int) $iLangID . ' WHERE `ID` = ' . (int) $_COOKIE['memberID'] );
127 
128  // recompile profile cache ;
130  }
131 
132  setcookie( 'lang', '', time() - 60*60*24, '/' );
133  setcookie( 'lang', $sLang, time() + 60*60*24*365, '/' );
134 }
135 
136 function getLangIdByName($sLangName)
137 {
138  return (int)db_value( "SELECT `ID` FROM `sys_localization_languages` WHERE `Name` = '" . process_db_input($sLangName, CH_TAGS_NO_ACTION, CH_SLASHES_NO_ACTION) . "'" );
139 }
140 
141 function getLangNameById($sLangId)
142 {
143  return db_value( "SELECT `Name` FROM `sys_localization_languages` WHERE `ID` = '" . (int)$sLangId . "'" );
144 }
145 
146 function getProfileLangName($iProfile = false)
147 {
148  if (!$iProfile)
149  $iProfile = isset($_COOKIE['memberID']) ? (int)$_COOKIE['memberID'] : 0;
150  if (!$iProfile)
151  return false;
152  return $GLOBALS['MySQL']->fromMemory('profile_lang_' . $iProfile, 'getOne', 'SELECT `l`.`Name` FROM `sys_localization_languages` AS `l` INNER JOIN `Profiles` AS `p` ON (`p`.`LangID` = `l`.`ID`) WHERE `p`.`ID` = ' . $iProfile);
153 }
154 
155 function getLangsArr( $bAddFlag = false, $bRetIDs = false )
156 {
157  $aLangsFull = getLangsArrFull($bRetIDs);
158 
159  $aLangs = array();
160  foreach ($aLangsFull as $sKey => $aLang) {
161  $sFlag = $bAddFlag ? ($aLang['Flag'] ? $aLang['Flag'] : 'xx') : '';
162  $aLangs[ $sKey ] = $aLang['Title'] . $sFlag;
163  }
164 
165  return $aLangs;
166 }
167 
168 function getLangsArrFull($bRetIDs = false)
169 {
170  return $GLOBALS['MySQL']->getAllWithKey('SELECT * FROM `sys_localization_languages` ORDER BY `Title` ASC', $bRetIDs ? 'ID' : 'Name');
171 }
172 
173 function deleteLanguage($langID = 0)
174 {
175  $langID = (int)$langID;
176 
177  if($langID <= 0) return false;
178 
179  $resLangs = db_res('
180  SELECT `ID`, `Name`
181  FROM `sys_localization_languages`
182  WHERE `ID` = '.$langID);
183 
184  if($resLangs->rowCount() <= 0) return false;
185 
186  $arrLang = $resLangs->fetch();
187 
188  $numStrings = db_res('
189  SELECT COUNT(`IDKey`)
190  FROM `sys_localization_strings`
191  WHERE `IDLanguage` = ?', [$langID]);
192 
193  $numStrings = $numStrings->fetch(PDO::FETCH_NUM);
194  $numStrings = $numStrings[0];
195 
196  $res1 = db_res('DELETE FROM `sys_localization_strings` WHERE `IDLanguage` = '.$langID);
197 
198  if(db_affected_rows($res1) < $numStrings) return false;
199 
200  $res2 = db_res('DELETE FROM `sys_localization_languages` WHERE `ID` = '.$langID);
201 
202  if(db_affected_rows($res2) <= 0) return false;
203 
204  @unlink( CH_DIRECTORY_PATH_ROOT . 'langs/lang-'.$arrLang['Name'].'.php');
205 
206  // delete from email templates
207  $sQuery = "DELETE FROM `sys_email_templates` WHERE `LangID` = '{$langID}'";
208  db_res($sQuery);
209 
210  return true;
211 }
212 
214 {
215  $resKeys = db_res('SELECT `ID`, `IDCategory`, `Key` FROM `sys_localization_keys`');
216 
217  $arrKeys = array();
218 
219  while($arr = $resKeys->fetch()) {
220  $ID = $arr['ID'];
221  unset($arr['ID']);
222  $arrKeys[$ID] = $arr;
223  }
224 
225  return $arrKeys;
226 }
227 
228 function getLocalizationKeysBy($aParams)
229 {
230  global $MySQL;
231 
232  $aMethod = array('name' => 'getAll', 'params' => array(0 => 'query'));
233  $sSelectClause = $sJoinClause = $sWhereClause = $sGroupClause = $sOrderClause = $sLimitClause = "";
234 
235  $sSelectClause = "`tk`.`ID` AS `id`, `tk`.`IDCategory` AS `category_id`, `tk`.`Key` AS `key`";
236 
237  if(!isset($aParams['order']) || empty($aParams['order']))
238  $sOrderClause = " `tk`.`Key` ASC ";
239 
240  switch($aParams['type']) {
241  case 'by_language_name_key_key':
242  $aMethod['name'] = 'getAllWithKey';
243  $aMethod['params'][1] = 'key';
244 
245  $sSelectClause .= ", `ts`.`String` AS `string` ";
246  $sJoinClause = " LEFT JOIN `sys_localization_strings` AS `ts` ON `tk`.`ID`=`ts`.`IDKey` LEFT JOIN `sys_localization_languages` AS `tl` ON `ts`.`IDLanguage`=`tl`.`ID` ";
247  $sWhereClause = " AND `tl`.`Name`='" . $aParams['value'] . "' ";
248  break;
249 
250  case 'by_language_id_key_key':
251  $aMethod['name'] = 'getAllWithKey';
252  $aMethod['params'][1] = 'key';
253 
254  $sSelectClause .= ", `ts`.`String` AS `string` ";
255  $sJoinClause = " LEFT JOIN `sys_localization_strings` AS `ts` ON `tk`.`ID`=`ts`.`IDKey` ";
256  $sWhereClause = " AND `ts`.`IDLanguage`='" . (int)$aParams['value'] . "' ";
257  break;
258  }
259 
260  $aMethod['params'][0] = "SELECT " . $sSelectClause . "
261  FROM `sys_localization_keys` AS `tk`" . $sJoinClause . "
262  WHERE 1" . $sWhereClause . " " . $sGroupClause . "
263  ORDER BY" . $sOrderClause . $sLimitClause;
264  return call_user_func_array(array($MySQL, $aMethod['name']), $aMethod['params']);
265 }
266 
268 {
269  $keyID = (int)$keyID;
270 
271  $resParams = db_res("
272  SELECT `IDParam`,
273  `Description`
274  FROM `sys_localization_string_params`
275  WHERE `IDKey` = $keyID
276  ORDER BY `IDParam`
277  ");
278 
279  $arrParams = array();
280 
281  while ($arr = $resParams->fetch()) {
282  $arrParams[(int)$arr['IDParam']] = $arr['Description'];
283  }
284 
285  return $arrParams;
286 }
287 
289 {
290  $resCategories = db_res('SELECT `ID`, `Name` FROM `sys_localization_categories` ORDER BY `Name`');
291 
292  $arrCategories = array();
293 
294  while ($arr = $resCategories->fetch()) {
295  $arrCategories[$arr['ID']] = $arr['Name'];
296  }
297 
298  return $arrCategories;
299 }
300 
301 function compileLanguage($langID = 0)
302 {
303  $langID = (int)$langID;
304 
305  $newLine = "\n";
306 
307  if($langID <= 0) {
308  $resLangs = db_res('SELECT `ID`, `Name` FROM `sys_localization_languages`');
309  } else {
310  $resLangs = db_res('
311  SELECT *
312  FROM `sys_localization_languages`
313  WHERE `ID` = '.$langID
314  );
315  }
316 
317  if ( $resLangs->rowCount() <= 0 )
318  return false;
319 
320  while($arrLanguage = $resLangs->fetch()) {
321  $aKeys = getLocalizationKeysBy(array('type' => 'by_language_id_key_key', 'value' => $arrLanguage['ID']));
322  if($arrLanguage['Name'] != CH_WSB_LANGUAGE_DEFAULT && getParam('lang_subst_from_en') == 'on') {
323  $aKeysAll = getLocalizationKeysBy(array('type' => 'by_language_name_key_key', 'value' => CH_WSB_LANGUAGE_DEFAULT));
324  $aKeys = array_merge($aKeysAll, $aKeys);
325  }
326 
327  $handle = fopen( CH_DIRECTORY_PATH_ROOT . "langs/lang-{$arrLanguage['Name']}.php", 'w');
328  if($handle === false)
329  return false;
330 
331  $sNotice = '
332 /*****************************************************************************/
333 /* NOTICE: Do not modify this file manually. */
334 /* */
335 /* This file is automatically generated each time the system and/or module */
336 /* languages are recompiled. */
337 /* */
338 /* To modify the text of a language key, refer to */
339 /* https://www.cheetahwsb.com/m/cheetah_docs/chapter/using-language-keys */
340 /*****************************************************************************/
341  ';
342  $fileContent = "<"."?PHP{$newLine}{$sNotice}{$newLine}\$LANG_INFO=" . var_export($arrLanguage, true) . ";{$newLine}\$LANG = array(";
343 
344  foreach($aKeys as $aKey) {
345  $langKey = str_replace(array("\\", "'"), array("\\\\", "\\'"), $aKey['key']);
346  $langStr = str_replace(array("\\", "'"), array("\\\\", "\\'"), $aKey['string']);
347 
348  $fileContent .= "{$newLine}\t'$langKey' => '$langStr',";
349  }
350 
351  $fileContent = trim($fileContent, ',');
352 
353  $writeResult = fwrite($handle, $fileContent."{$newLine});?".">");
354  if($writeResult === false) return false;
355 
356  if(fclose($handle) === false) return false;
357 
358  @chmod( CH_DIRECTORY_PATH_ROOT . "langs/lang-{$arrLanguage['Name']}.php", 0666);
359  }
360 
361  return true;
362 }
363 
364 function addStringToLanguage($langKey, $langString, $langID = -1, $categoryID = CH_WSB_LANGUAGE_CATEGORY_SYSTEM)
365 {
366  // input validation
367  $langID = (int)$langID;
368  $categoryID = (int)$categoryID;
369 
370  if ( $langID == -1 ) {
371  $resLangs = db_res('SELECT `ID`, `Name` FROM `sys_localization_languages`');
372  } else {
373  $resLangs = db_res('
374  SELECT `ID`, `Name`
375  FROM `sys_localization_languages`
376  WHERE `ID` = '.$langID);
377  }
378 
379  $langKey = process_db_input($langKey, CH_TAGS_STRIP);
380  $langString = process_db_input($langString, CH_TAGS_VALIDATE);
381 
382  $resInsertKey = db_res( "
383  INSERT INTO `sys_localization_keys`
384  SET `IDCategory` = $categoryID,
385  `Key` = '$langKey'", false );
386  if ( !$resInsertKey || db_affected_rows($resInsertKey) <= 0 )
387  return false;
388 
389  $keyID = db_last_id();
390 
391  while($arrLanguage = $resLangs->fetch()) {
392  $resInsertString = db_res( "
393  INSERT INTO `sys_localization_strings`
394  SET `IDKey` = $keyID,
395  `IDLanguage` = {$arrLanguage['ID']},
396  `String` = '$langString'", false );
397  if ( !$resInsertString || db_affected_rows($resInsertString) <= 0 )
398  return false;
399 
400  compileLanguage($arrLanguage['ID']);
401  }
402 
403  return true;
404 }
405 
406 function updateStringInLanguage($langKey, $langString, $langID = -1)
407 {
408  // input validation
409  $langID = (int)$langID;
410 
411  if ( $langID == -1 ) {
412  $resLangs = db_res('SELECT `ID`, `Name` FROM `sys_localization_languages`');
413  } else {
414  $resLangs = db_res('
415  SELECT `ID`, `Name`
416  FROM `sys_localization_languages`
417  WHERE `ID` = '.$langID);
418  }
419 
420  $langKey = process_db_input($langKey, CH_TAGS_STRIP);
421  $langString = process_db_input($langString, CH_TAGS_VALIDATE);
422 
423  $arrKey = db_arr( "
424  SELECT `ID`
425  FROM `sys_localization_keys`
426  WHERE `Key` = '$langKey'", false );
427 
428  if ( !$arrKey )
429  return false;
430 
431  $keyID = $arrKey['ID'];
432 
433  while($arrLanguage = $resLangs->fetch()) {
434  $resUpdateString = db_res( "
435  UPDATE `sys_localization_strings`
436  SET `String` = '$langString'
437  WHERE `IDKey` = $keyID
438  AND `IDLanguage` = {$arrLanguage['ID']}", false );
439  if ( !$resUpdateString || db_affected_rows($resUpdateString) <= 0 )
440  return false;
441  }
442 
443  return true;
444 }
445 
446 function deleteStringFromLanguage($langKey, $langID = -1)
447 {
448  // input validation
449  $langID = (int)$langID;
450 
451  if ( $langID == -1 ) {
452  $resLangs = db_res('SELECT `ID`, `Name` FROM `sys_localization_languages`');
453  } else {
454  $resLangs = db_res('
455  SELECT `ID`, `Name`
456  FROM `sys_localization_languages`
457  WHERE `ID` = '.$langID);
458  }
459 
460  $langKey = process_db_input($langKey, CH_TAGS_STRIP);
461  $langString = empty($langString) ? '' : process_db_input($langString, CH_TAGS_VALIDATE);
462 
463  $arrKey = db_arr( "
464  SELECT `ID`
465  FROM `sys_localization_keys`
466  WHERE `Key` = '$langKey'", false );
467 
468  if ( !$arrKey )
469  return false;
470 
471  $keyID = $arrKey['ID'];
472 
473  while($arrLanguage = $resLangs->fetch()) {
474  $resDeleteString = db_res( "
475  DELETE FROM `sys_localization_strings`
476  WHERE `IDKey` = $keyID
477  AND `IDLanguage` = {$arrLanguage['ID']}", false );
478  if ( !$resDeleteString || db_affected_rows($resDeleteString) <= 0 )
479  return false;
480  }
481 
482  $resDeleteKey = db_res( "
483  DELETE FROM `sys_localization_keys`
484  WHERE `Key` = '$langKey' LIMIT 1", false );
485 
486  return !$resDeleteKey || db_affected_rows($resDeleteKey) <= 0 ? false : true;
487 }
488 
489 function _t_action( $str, $arg0 = "", $arg1 = "", $arg2 = "" )
490 {
491  return MsgBox( _t($str,$arg0,$arg1,$arg2) );
492 }
493 
494 function _t_echo_action( $str, $arg0 = "", $arg1 = "", $arg2 = "" )
495 {
496  return MsgBox( _t($str,$arg0,$arg1,$arg2) );
497 }
498 
499 function echo_t_err( $str, $arg0 = "", $arg1 = "", $arg2 = "" )
500 {
501  return MsgBox( _t($str,$arg0,$arg1,$arg2) );
502 }
503 
504 function _t_err( $str, $arg0 = "", $arg1 = "", $arg2 = "" )
505 {
506  return MsgBox( _t($str,$arg0,$arg1,$arg2) );
507 }
508 
509 function _t($key, $arg0 = "", $arg1 = "", $arg2 = "")
510 {
511  global $LANG;
512 
513  if(isset($LANG[$key])) {
514  $str = $LANG[$key];
515  $str = str_replace('{0}', $arg0, $str);
516  $str = str_replace('{1}', $arg1, $str);
517  $str = str_replace('{2}', $arg2, $str);
518  return $str;
519  } else {
520  return $key;
521  }
522 }
523 
524 function _t_ext($key, $args)
525 {
526  global $LANG;
527 
528  if(isset($LANG[$key])) {
529  $str = $LANG[$key];
530 
531  if(!is_array($args)) {
532  return str_replace('{0}', $args, $str);
533  }
534 
535  foreach ($args as $key => $val) {
536  $str = str_replace('{'.$key.'}', $val, $str);
537  }
538 
539  return $str;
540  } else {
541  return $key;
542  }
543 }
544 
545 function _t_format_size ($iBytes, $iPrecision = 2)
546 {
547  $aUnits = array('_sys_x_byte', '_sys_x_kilobyte', '_sys_x_megabyte', '_sys_x_gigabyte', '_sys_x_terabyte');
548 
549  $iBytes = max($iBytes, 0);
550  $iPow = floor(($iBytes ? log($iBytes) : 0) / log(1024));
551  $iPow = min($iPow, count($aUnits) - 1);
552 
553  $iBytes /= (1 << (10 * $iPow));
554  return _t($aUnits[$iPow], round($iBytes, $iPrecision));
555 }
556 
557 function ch_lang_name()
558 {
559  return $GLOBALS['sCurrentLanguage'];
560 }
561 
562 function ch_lang_info()
563 {
564  return $GLOBALS['LANG_INFO'];
565 }
process_db_input
process_db_input($sText, $iStripTags=0)
Definition: utils.inc.php:256
_t_action
_t_action( $str, $arg0="", $arg1="", $arg2="")
Definition: languages.inc.php:489
getLangNameById
getLangNameById($sLangId)
Definition: languages.inc.php:141
getLocalizationCategories
getLocalizationCategories()
Definition: languages.inc.php:288
CH_WSB_LANGUAGE_DEFAULT
const CH_WSB_LANGUAGE_DEFAULT
Definition: languages.inc.php:8
deleteStringFromLanguage
deleteStringFromLanguage($langKey, $langID=-1)
Definition: languages.inc.php:446
MsgBox
MsgBox($sText, $iTimer=0)
Definition: design.inc.php:175
_t_echo_action
_t_echo_action( $str, $arg0="", $arg1="", $arg2="")
Definition: languages.inc.php:494
getCurrentLangName
if(!defined('CH_SKIP_INSTALL_CHECK')) getCurrentLangName($isSetCookie=true)
Definition: languages.inc.php:36
compileLanguage
compileLanguage($langID=0)
Definition: languages.inc.php:301
CH_WSB_LANGUAGE_CATEGORY_SYSTEM
const CH_WSB_LANGUAGE_CATEGORY_SYSTEM
Definition: languages.inc.php:9
CH_TAGS_VALIDATE
const CH_TAGS_VALIDATE
Definition: utils.inc.php:24
getLangsArrFull
getLangsArrFull($bRetIDs=false)
Definition: languages.inc.php:168
ch_import
ch_import($sClassName, $aModule=array())
Definition: utils.inc.php:1218
php
getLocalizationKeys
getLocalizationKeys()
Definition: languages.inc.php:213
updateStringInLanguage
updateStringInLanguage($langKey, $langString, $langID=-1)
Definition: languages.inc.php:406
setLangCookie
setLangCookie( $sLang)
Definition: languages.inc.php:117
getProfileLangName
getProfileLangName($iProfile=false)
Definition: languages.inc.php:146
_t_format_size
_t_format_size($iBytes, $iPrecision=2)
Definition: languages.inc.php:545
CH_SLASHES_NO_ACTION
const CH_SLASHES_NO_ACTION
Definition: utils.inc.php:30
ch_lang_info
ch_lang_info()
Definition: languages.inc.php:562
getLocalizationStringParams
getLocalizationStringParams($keyID)
Definition: languages.inc.php:267
echo_t_err
echo_t_err( $str, $arg0="", $arg1="", $arg2="")
Definition: languages.inc.php:499
db_arr
db_arr($query, $bindings=[])
Definition: db.inc.php:76
exit
exit
Definition: cart.php:21
$_GET
$_GET['debug']
Definition: index.php:67
createUserDataFile
createUserDataFile( $userID)
Definition: profiles.inc.php:192
getParam
getParam($sParamName, $bUseCache=true)
Definition: db.inc.php:130
getLoggedId
getLoggedId()
Definition: profiles.inc.php:32
_t_ext
_t_ext($key, $args)
Definition: languages.inc.php:524
db_last_id
db_last_id()
Definition: db.inc.php:47
CH_TAGS_NO_ACTION
const CH_TAGS_NO_ACTION
Definition: utils.inc.php:21
checkLangExists
checkLangExists( $sLang)
Definition: languages.inc.php:96
addStringToLanguage
addStringToLanguage($langKey, $langString, $langID=-1, $categoryID=CH_WSB_LANGUAGE_CATEGORY_SYSTEM)
Definition: languages.inc.php:364
getLangsArr
getLangsArr( $bAddFlag=false, $bRetIDs=false)
Definition: languages.inc.php:155
_t_err
_t_err( $str, $arg0="", $arg1="", $arg2="")
Definition: languages.inc.php:504
global
if(!defined("GLOBAL_MODULE")) define("GLOBAL_MODULE" global
Definition: header.inc.php:25
tryToGetLang
tryToGetLang( $sLangs, $bSetCookie=false)
Definition: languages.inc.php:53
_t
_t($key, $arg0="", $arg1="", $arg2="")
Definition: languages.inc.php:509
time
that in the case of a Adaptation or at a minimum such credit will if a credit for all contributing authors of the Adaptation or Collection then as part of these credits and in a manner at least as prominent as the credits for the other contributing authors For the avoidance of You may only use the credit required by this Section for the purpose of attribution in the manner set out above by exercising Your rights under this You may not implicitly or explicitly assert or imply any connection sponsorship or endorsement by the Original Licensor and or Attribution as of You or Your use of the without the express prior written permission of the Original Licensor and or Attribution Parties Except as otherwise agreed in writing by the Licensor or as may be otherwise permitted by applicable if You Distribute or Publicly Perform the Work either by itself or as part of any Adaptations or You must not modify or take other derogatory action in relation to the Work which would be prejudicial to the Original Author s honor or reputation Licensor agrees that in those in which any exercise of the right granted in modification or other derogatory action prejudicial to the Original Author s honor and the Licensor will waive or not as this to the fullest extent permitted by the applicable national to enable You to reasonably exercise Your right under Warranties and Disclaimer UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN LICENSOR OFFERS THE WORK AS IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE STATUTORY OR WITHOUT WARRANTIES OF FITNESS FOR A PARTICULAR OR THE ABSENCE OF LATENT OR OTHER OR THE PRESENCE OF ABSENCE OF WHETHER OR NOT DISCOVERABLE SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED SO SUCH EXCLUSION MAY NOT APPLY TO YOU Limitation on Liability EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES Termination This License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License Individuals or entities who have received Adaptations or Collections from You under this will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses and will survive any termination of this License Subject to the above terms and the license granted here is Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time
Definition: license.txt:56
db_affected_rows
db_affected_rows($oStmt=null)
Definition: db.inc.php:56
CH_TAGS_STRIP
const CH_TAGS_STRIP
Definition: utils.inc.php:22
deleteLanguage
deleteLanguage($langID=0)
Definition: languages.inc.php:173
db_res
db_res($query, $bindings=[])
Definition: db.inc.php:39
db_value
db_value($query, $bindings=[], $error_checking=true, $index=0)
Definition: db.inc.php:98
$ID
$ID
Definition: click.php:11
ch_lang_name
ch_lang_name()
Definition: languages.inc.php:557
empty
Attr AllowedRel this is empty
Definition: Attr.AllowedRel.txt:7
getLocalizationKeysBy
getLocalizationKeysBy($aParams)
Definition: languages.inc.php:228
as
as
Definition: Filter.ExtractStyleBlocks.Escaping.txt:10
false
if(!defined("FALSE_VAL")) define("FALSE_VAL" false
Definition: constants.inc.php:9
$iProfileId
if( $sMembersList) $iProfileId
Definition: communicator.php:29
$GLOBALS
$GLOBALS['iAdminPage']
Definition: advanced_settings.php:10
or
Voluntary License Schemes The Licensor waives the right to collect whether individually or
Definition: license.txt:37
$LANG
$LANG
Definition: lang-en.php:12
getLangIdByName
getLangIdByName($sLangName)
Definition: languages.inc.php:136