Improve autodetection and add default input
[squirrelmail.git] / include / init.php
CommitLineData
202bcbcc 1<?php
2
3/**
4 * init.php -- initialisation file
5 *
6 * File should be loaded in every file in src/ or plugins that occupate an entire frame
7 *
8 * @copyright &copy; 2006 The SquirrelMail Project Team
9 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
10 * @version $Id$
11 * @package squirrelmail
12 */
13
202bcbcc 14/**
15 * This is a development version so in order to track programmer mistakes we
16 * set the error reporting to E_ALL
17 */
202bcbcc 18error_reporting(E_ALL);
19
20
c7ebdfcf 21/**
22 * Make sure we have a page name
23 *
24 */
25if ( !defined('PAGE_NAME') ) define('PAGE_NAME', NULL);
26
27
6a2a6e44 28/**
29 * If register_globals are on, unregister globals.
a3b99374 30 * Second test covers boolean set as string (php_value register_globals off).
6a2a6e44 31 */
55dd9abf 32if ((bool) ini_get('register_globals') &&
a3b99374 33 strtolower(ini_get('register_globals'))!='off') {
6a2a6e44 34 /**
55dd9abf 35 * Remove all globals that are not reserved by PHP
36 * 'value' and 'key' are used by foreach. Don't unset them inside foreach.
6a2a6e44 37 */
55dd9abf 38 foreach ($GLOBALS as $key => $value) {
39 switch($key) {
40 case 'HTTP_POST_VARS':
41 case '_POST':
42 case 'HTTP_GET_VARS':
43 case '_GET':
44 case 'HTTP_COOKIE_VARS':
45 case '_COOKIE':
46 case 'HTTP_SERVER_VARS':
47 case '_SERVER':
48 case 'HTTP_ENV_VARS':
49 case '_ENV':
50 case 'HTTP_POST_FILES':
51 case '_FILES':
52 case '_REQUEST':
53 case 'HTTP_SESSION_VARS':
54 case '_SESSION':
55 case 'GLOBALS':
56 case 'key':
57 case 'value':
58 break;
55dd9abf 59 default:
60 unset($GLOBALS[$key]);
61 }
6a2a6e44 62 }
55dd9abf 63 // Unset variables used in foreach
64 unset($GLOBALS['key']);
65 unset($GLOBALS['value']);
6a2a6e44 66}
67
d849b570 68/**
69 * Used as a dummy value, e.g., for passing as an empty
e39d00e9 70 * hook argument (where the value is passed by reference,
71 * and therefore NULL itself is not acceptable).
d849b570 72 */
086ad092 73global $null;
d849b570 74$null = NULL;
75
71efd1ed 76/**
77 * [#1518885] session.use_cookies = off breaks SquirrelMail
78 *
086ad092 79 * When session cookies are not used, all http redirects, meta refreshes,
80 * src/download.php and javascript URLs are broken. Setting must be set
71efd1ed 81 * before session is started.
82 */
83if (!(bool)ini_get('session.use_cookies') ||
84 ini_get('session.use_cookies') == 'off') {
85 ini_set('session.use_cookies','1');
86}
6a2a6e44 87
202bcbcc 88/**
89 * calculate SM_PATH and calculate the base_uri
90 * assumptions made: init.php is only called from plugins or from the src dir.
91 * files in the plugin directory may not be part of a subdirectory called "src"
92 *
93 */
94if (isset($_SERVER['SCRIPT_NAME'])) {
95 $a = explode('/',$_SERVER['SCRIPT_NAME']);
96} elseif (isset($HTTP_SERVER_VARS['SCRIPT_NAME'])) {
b0829edf 97 $a = explode('/',$HTTP_SERVER_VARS['SCRIPT_NAME']);
98} else {
99 $error = 'Unable to detect script environment. '
100 .'Please test your PHP settings and send PHP core config, $_SERVER '
101 .'and $HTTP_SERVER_VARS to SquirrelMail developers.';
102 die($error);
202bcbcc 103}
104$sSM_PATH = '';
105for($i = count($a) -2;$i > -1; --$i) {
106 $sSM_PATH .= '../';
107 if ($a[$i] === 'src' || $a[$i] === 'plugins') {
108 break;
109 }
110}
111
112$base_uri = implode('/',array_slice($a,0,$i)). '/';
113
202bcbcc 114define('SM_PATH',$sSM_PATH);
6a2a6e44 115define('SM_BASE_URI', $base_uri);
202bcbcc 116/**
117 * global var $bInit is used to check if initialisation took place.
118 * At this moment it's a workarounf for the include of addrbook_search_html
119 * inside compose.php. If we found a better way then remove this. Do only use
120 * this var if you know for sure a page can be called stand alone and be included
121 * in another file.
122 */
123$bInit = true;
124
8e1e2794 125/**
126 * This theme as a failsafe if no themes were found, or if we error
127 * out before anything could be initialised.
128 */
129$color = array();
130$color[0] = '#DCDCDC'; /* light gray TitleBar */
131$color[1] = '#800000'; /* red */
132$color[2] = '#CC0000'; /* light red Warning/Error Messages */
133$color[3] = '#A0B8C8'; /* green-blue Left Bar Background */
134$color[4] = '#FFFFFF'; /* white Normal Background */
135$color[5] = '#FFFFCC'; /* light yellow Table Headers */
136$color[6] = '#000000'; /* black Text on left bar */
137$color[7] = '#0000CC'; /* blue Links */
138$color[8] = '#000000'; /* black Normal text */
139$color[9] = '#ABABAB'; /* mid-gray Darker version of #0 */
140$color[10] = '#666666'; /* dark gray Darker version of #9 */
141$color[11] = '#770000'; /* dark red Special Folders color */
142$color[12] = '#EDEDED';
143$color[13] = '#800000'; /* (dark red) Color for quoted text -- > 1 quote */
144$color[14] = '#ff0000'; /* (red) Color for quoted text -- >> 2 or more */
145$color[15] = '#002266'; /* (dark blue) Unselectable folders */
146$color[16] = '#ff9933'; /* (orange) Highlight color */
147
202bcbcc 148require(SM_PATH . 'functions/global.php');
4ffcf13a 149require(SM_PATH . 'functions/strings.php');
918fcc1d 150require(SM_PATH . 'functions/arrays.php');
5e68a08e 151
152/* load default configuration */
153require(SM_PATH . 'config/config_default.php');
154/* reset arrays in default configuration */
155$ldap_server = array();
156$plugins = array();
157$fontsets = array();
5e68a08e 158$aTemplateSet = array();
28294310 159$aTemplateSet[0]['ID'] = 'default';
160$aTemplateSet[0]['NAME'] = 'Default';
01fd1d1a 161
5e68a08e 162/* load site configuration */
202bcbcc 163require(SM_PATH . 'config/config.php');
5e68a08e 164/* load local configuration overrides */
165if (file_exists(SM_PATH . 'config/config_local.php')) {
166 require(SM_PATH . 'config/config_local.php');
167}
168
202bcbcc 169require(SM_PATH . 'functions/plugin.php');
170require(SM_PATH . 'include/constants.php');
171require(SM_PATH . 'include/languages.php');
42b5e8aa 172require(SM_PATH . 'class/template/Template.class.php');
5ab684a5 173require(SM_PATH . 'class/error.class.php');
202bcbcc 174
175/**
176 * If magic_quotes_runtime is on, SquirrelMail breaks in new and creative ways.
177 * Force magic_quotes_runtime off.
178 * tassium@squirrelmail.org - I put it here in the hopes that all SM code includes this.
179 * If there's a better place, please let me know.
180 */
181ini_set('magic_quotes_runtime','0');
182
183
184/* if running with magic_quotes_gpc then strip the slashes
185 from POST and GET global arrays */
186if (get_magic_quotes_gpc()) {
187 sqstripslashes($_GET);
188 sqstripslashes($_POST);
189}
190
202bcbcc 191
192/* strip any tags added to the url from PHP_SELF.
193This fixes hand crafted url XXS expoits for any
194 page that uses PHP_SELF as the FORM action */
195$_SERVER['PHP_SELF'] = strip_tags($_SERVER['PHP_SELF']);
196
197$PHP_SELF = php_self();
198
199/**
200 * Initialize the session
201 */
202
e8c4e350 203/** set the name of the session cookie */
204if (!isset($session_name) || !$session_name) {
205 $session_name = 'SQMSESSID';
206}
207
208/**
319ad3c0 209 * When session.auto_start is On we want to destroy/close the session
1d537493 210 */
211$sSessionAutostartName = session_name();
bf6140e3 212$sCookiePath = null;
319ad3c0 213if (isset($sSessionAutostartName) && $sSessionAutostartName !== $session_name) {
1d537493 214 $sCookiePath = ini_get('session.cookie_path');
215 $sCookieDomain = ini_get('session.cookie_domain');
e8c4e350 216 // reset the cookie
1d537493 217 setcookie($sSessionAutostartName,'',time() - 604800,$sCookiePath,$sCookieDomain);
e8c4e350 218 @session_destroy();
219 session_write_close();
1d537493 220}
e8c4e350 221
202bcbcc 222/**
223 * includes from classes stored in the session
224 */
225require(SM_PATH . 'class/mime.class.php');
226
202bcbcc 227ini_set('session.name' , $session_name);
228session_set_cookie_params (0, $base_uri);
229sqsession_is_active();
230
319ad3c0 231/**
232 * When on login page, have to reset the user session, making
233 * sure to save session restore data first
234 */
235if (PAGE_NAME == 'login') {
236 if (!sqGetGlobalVar('session_expired_post', $sep, SQ_SESSION))
237 $sep = '';
238 if (!sqGetGlobalVar('session_expired_location', $sel, SQ_SESSION))
239 $sel = '';
240 sqsession_destroy();
241 session_write_close();
242
243 /**
244 * in some rare instances, the session seems to stick
245 * around even after destroying it (!!), so if it does,
246 * we'll manually flatten the $_SESSION data
247 */
248 if (!empty($_SESSION))
249 $_SESSION = array();
250
251 sqsession_is_active();
252 session_regenerate_id();
ef33def6 253
254 // put session restore data back into session if necessary
255 if (!empty($sel)) {
256 sqsession_register($sel, 'session_expired_location');
257 if (!empty($sep))
258 sqsession_register($sep, 'session_expired_post');
259 }
319ad3c0 260}
261
5aed95be 262/**
263 * SquirrelMail internal version number -- DO NOT CHANGE
264 * $sm_internal_version = array (release, major, minor)
265 */
a895042a 266$SQM_INTERNAL_VERSION = explode('.', SM_VERSION, 3);
b37e457f 267$SQM_INTERNAL_VERSION[2] = intval($SQM_INTERNAL_VERSION[2]);
5aed95be 268
93d67e0d 269
6d5775db 270/* load prefs system; even when user not logged in, should be OK to do this here */
271require(SM_PATH . 'functions/prefs.php');
272
273$prefs_backend = do_hook('prefs_backend', $null);
274if (isset($prefs_backend) && !empty($prefs_backend) && file_exists(SM_PATH . $prefs_backend)) {
275 require(SM_PATH . $prefs_backend);
276} elseif (isset($prefs_dsn) && !empty($prefs_dsn)) {
277 require(SM_PATH . 'functions/db_prefs.php');
278} else {
279 require(SM_PATH . 'functions/file_prefs.php');
280}
281
282
086ad092 283/* if plugins are disabled only for one user and
93d67e0d 284 * the current user is NOT that user, turn them
285 * back on
286 */
287sqgetGlobalVar('username',$username,SQ_SESSION);
288if ($disable_plugins && !empty($disable_plugins_user)
289 && $username != $disable_plugins_user) {
290 $disable_plugins = false;
291}
292
293/* remove all plugins if they are disabled */
294if ($disable_plugins) {
295 $plugins = array();
296}
297
298
5aed95be 299/**
300 * Include Compatibility plugin if available.
301 */
93d67e0d 302if (!$disable_plugins && file_exists(SM_PATH . 'plugins/compatibility/functions.php'))
5aed95be 303 include_once(SM_PATH . 'plugins/compatibility/functions.php');
304
305/**
306 * MAIN PLUGIN LOADING CODE HERE
086ad092 307 * On init, we no longer need to load all plugin setup files.
5aed95be 308 * Now, we load the statically generated hook registrations here
309 * and let the hook calls include only the plugins needed.
310 */
311$squirrelmail_plugin_hooks = array();
93d67e0d 312if (!$disable_plugins && file_exists(SM_PATH . 'config/plugin_hooks.php')) {
5aed95be 313 require(SM_PATH . 'config/plugin_hooks.php');
314}
315
316/**
317 * allow plugins to override main configuration; hook is placed
318 * here to allow plugins to use session information to do their work
319 */
d849b570 320do_hook('config_override', $null);
5aed95be 321
202bcbcc 322/**
3464e1f4 323 * DISABLED.
202bcbcc 324 * Remove globalized session data in rg=on setups
086ad092 325 *
3464e1f4 326 * Code can be utilized when session is started, but data is not loaded.
086ad092 327 * We have already loaded configuration and other important vars. Can't
3464e1f4 328 * clean session globals here.
329if ((bool) @ini_get('register_globals') &&
330 strtolower(ini_get('register_globals'))!='off') {
202bcbcc 331 foreach ($_SESSION as $key => $value) {
332 unset($GLOBALS[$key]);
333 }
334}
3464e1f4 335*/
6a2a6e44 336
826ddd72 337sqsession_register(SM_BASE_URI,'base_uri');
6a2a6e44 338
202bcbcc 339/**
340 * Retrieve the language cookie
341 */
342if (! sqgetGlobalVar('squirrelmail_language',$squirrelmail_language,SQ_COOKIE)) {
343 $squirrelmail_language = '';
344}
345
bf3abdc3 346
202bcbcc 347/**
9e06a3ea 348 * Do something special for some pages. This is based on the PAGE_NAME constand
349 * set at the top of every page.
202bcbcc 350 */
9e06a3ea 351switch (PAGE_NAME) {
086ad092 352 case 'style':
c4e5f61f 353
2b26084f 354 // need to get the right template set up
28294310 355 //
356 sqGetGlobalVar('templateid', $templateid, SQ_GET);
c4e5f61f 357
2b26084f 358 // sanitize just in case...
28294310 359 //
360 $templateid = preg_replace('/(\.\.\/){1,}/', '', $templateid);
361
362 // make sure given template actually is available
363 //
28294310 364 $found_templateset = false;
365 for ($i = 0; $i < count($aTemplateSet); ++$i) {
366 if ($aTemplateSet[$i]['ID'] == $templateid) {
367 $found_templateset = true;
368 break;
369 }
370 }
c4e5f61f 371
be155e14 372// FIXME: do we need/want to check here for actual (physical) presence of template sets?
28294310 373 // selected template not available, fall back to default template
374 //
375 if (!$found_templateset) {
42b5e8aa 376 $sTemplateID = Template::get_default_template_set();
28294310 377 } else {
378 $sTemplateID = $templateid;
c4e5f61f 379 }
380
2b26084f 381 session_write_close();
c4e5f61f 382 break;
383
202bcbcc 384 case 'redirect':
2e616fa4 385 require(SM_PATH . 'functions/auth.php');
202bcbcc 386 //nobreak;
bf3abdc3 387
202bcbcc 388 case 'login':
389 require(SM_PATH . 'functions/display_messages.php' );
390 require(SM_PATH . 'functions/page_header.php');
391 require(SM_PATH . 'functions/html.php');
42b5e8aa 392
393 // reset template file cache
394 //
395 $sTemplateID = Template::get_default_template_set();
396 Template::cache_template_file_hierarchy(TRUE);
397
01fd1d1a 398 /**
399 * Make sure icon variables are setup for the login page.
400 */
401 $icon_theme = $icon_themes[$icon_theme_def]['PATH'];
402 /*
403 * NOTE: The $icon_theme_path var should contain the path to the icon
404 * theme to use. If the admin has disabled icons, or the user has
405 * set the icon theme to "None," no icons will be used.
406 */
407 $icon_theme_path = (!$use_icons || $icon_theme=='none') ? NULL : ($icon_theme == 'template' ? SM_PATH . Template::calculate_template_images_directory($sTemplateID) : $icon_theme);
408
1d537493 409 /**
410 * cleanup old cookies with a cookie path the same as the standard php.ini
411 * cookie path. All previous SquirrelMail version used the standard php.ini
412 * cookie path for storing the session name. That behaviour changed.
413 */
414 if ($sCookiePath !== SM_BASE_URI) {
415 /**
416 * do not delete the standard sessions with session.name is i.e. PHPSESSID
417 * because they probably belong to other php apps
418 */
419 if (ini_get('session.name') !== $sSessionAutostartName) {
30a428c6 420 // This does not work. Sometimes the cookie with SQSESSID=deleted and path /
421 // is picked up in webmail.php => login will fail
422 //sqsetcookie(ini_get('session.name'),'',0,$sCookiePath);
1d537493 423 }
424 }
202bcbcc 425 break;
426 default:
427 require(SM_PATH . 'functions/display_messages.php' );
428 require(SM_PATH . 'functions/page_header.php');
429 require(SM_PATH . 'functions/html.php');
202bcbcc 430
431
432 /**
433 * Check if we are logged in
434 */
435 require(SM_PATH . 'functions/auth.php');
436
437 if ( !sqsession_is_registered('user_is_logged_in') ) {
f8eb968d 438
439 // use $message to indicate what logout text the user
440 // will see... if 0, typical "You must be logged in"
441 // if 1, information that the user session was saved
442 // and will be resumed after (re)login
443 //
444 $message = 0;
445
202bcbcc 446 // First we store some information in the new session to prevent
447 // information-loss.
448 //
449 $session_expired_post = $_POST;
f8e68605 450 $session_expired_location = PAGE_NAME;
202bcbcc 451 if (!sqsession_is_registered('session_expired_post')) {
452 sqsession_register($session_expired_post,'session_expired_post');
453 }
454 if (!sqsession_is_registered('session_expired_location')) {
455 sqsession_register($session_expired_location,'session_expired_location');
f8e68605 456 if ($session_expired_location == 'compose')
f8eb968d 457 $message = 1;
202bcbcc 458 }
459 // signout page will deal with users who aren't logged
460 // in on its own; don't show error here
461 //
9e06a3ea 462 if ( PAGE_NAME == 'signout' ) {
a140422a 463 return;
202bcbcc 464 }
465
8efadc6b 466 /**
467 * Initialize the template object (logout_error uses it)
468 */
8efadc6b 469 /*
086ad092 470 * $sTemplateID is not initialized when a user is not logged in, so we
471 * will use the config file defaults here. If the neccesary variables
28294310 472 * are net set, force a default value.
8efadc6b 473 */
42b5e8aa 474 $sTemplateID = Template::get_default_template_set();
28294310 475 $oTemplate = Template::construct_template($sTemplateID);
8efadc6b 476
202bcbcc 477 set_up_language($squirrelmail_language, true);
f8eb968d 478 if (!$message)
479 logout_error( _("You must be logged in to access this page.") );
480 else
481 logout_error( _("Your session has expired, but will be resumed after logging in again.") );
202bcbcc 482 exit;
483 }
484
93d67e0d 485//FIXME: remove next line if the placement of the copy of this line above does not prove to be problematic
202bcbcc 486 sqgetGlobalVar('username',$username,SQ_SESSION);
79524620 487 sqgetGlobalVar('authz',$authz,SQ_SESSION);
202bcbcc 488
489 /**
490 * Setting the prefs backend
491 */
492 sqgetGlobalVar('prefs_cache', $prefs_cache, SQ_SESSION );
493 sqgetGlobalVar('prefs_are_cached', $prefs_are_cached, SQ_SESSION );
494
495 if ( !sqsession_is_registered('prefs_are_cached') ||
496 !isset( $prefs_cache) ||
497 !is_array( $prefs_cache)) {
498 $prefs_are_cached = false;
499 $prefs_cache = false; //array();
500 }
501
202bcbcc 502 /**
503 * initializing user settings
504 */
505 require(SM_PATH . 'include/load_prefs.php');
506
202bcbcc 507// i do not understand the frames language cookie story
508 /**
509 * We'll need this to later have a noframes version
510 *
511 * Check if the user has a language preference, but no cookie.
512 * Send him a cookie with his language preference, if there is
513 * such discrepancy.
514 */
515 $my_language = getPref($data_dir, $username, 'language');
516 if ($my_language != $squirrelmail_language) {
517 sqsetcookie('squirrelmail_language', $my_language, time()+2592000, $base_uri);
518 }
519// /dont understand
520
521 /**
522 * Set up the language.
523 */
524 $err=set_up_language(getPref($data_dir, $username, 'language'));
202bcbcc 525
526 // Japanese translation used without mbstring support
527 if ($err==2) {
528 $sError =
529 "<p>You need to have PHP installed with the multibyte string function \n".
530 "enabled (using configure option --enable-mbstring).</p>\n".
531 "<p>System assumed that you accidently switched to Japanese translation \n".
532 "and reverted your language preference to English.</p>\n".
533 "<p>Please refresh this page in order to use webmail.</p>\n";
534 error_box($sError);
535 }
536
537 $timeZone = getPref($data_dir, $username, 'timezone');
538
539 /* Check to see if we are allowed to set the TZ environment variable.
540 * We are able to do this if ...
541 * safe_mode is disabled OR
542 * safe_mode_allowed_env_vars is empty (you are allowed to set any) OR
543 * safe_mode_allowed_env_vars contains TZ
544 */
545 $tzChangeAllowed = (!ini_get('safe_mode')) ||
546 !strcmp(ini_get('safe_mode_allowed_env_vars'),'') ||
547 preg_match('/^([\w_]+,)*TZ/', ini_get('safe_mode_allowed_env_vars'));
548
549 if ( $timeZone != SMPREF_NONE && ($timeZone != "")
550 && $tzChangeAllowed ) {
551
552 // get time zone key, if strict or custom strict timezones are used
553 if (isset($time_zone_type) &&
554 ($time_zone_type == 1 || $time_zone_type == 3)) {
555 /* load time zone functions */
556 require(SM_PATH . 'include/timezones.php');
557 $realTimeZone = sq_get_tz_key($timeZone);
558 } else {
559 $realTimeZone = $timeZone;
560 }
561
562 // set time zone
563 if ($realTimeZone) {
564 putenv("TZ=".$realTimeZone);
565 }
566 }
867fed37 567
568 /**
569 * php 5.1.0 added time zone functions. Set time zone with them in order
570 * to prevent E_STRICT notices and allow time zone modifications in safe_mode.
571 */
572 if (function_exists('date_default_timezone_set')) {
573 if ($timeZone != SMPREF_NONE && $timeZone != "") {
574 date_default_timezone_set($timeZone);
575 } else {
576 // interface runs on server's time zone. Remove php E_STRICT complains
577 $default_timezone = @date_default_timezone_get();
086ad092 578 date_default_timezone_set($default_timezone);
867fed37 579 }
580 }
202bcbcc 581 break;
582}
583
202bcbcc 584/*
086ad092 585 * $sTemplateID is not initialized when a user is not logged in, so we
586 * will use the config file defaults here. If the neccesary variables
28294310 587 * are not set, force a default value.
086ad092 588 *
589 * If the user is logged in, $sTemplateID will be set in load_prefs.php,
28294310 590 * so we shouldn't change it here.
202bcbcc 591 */
28294310 592if (!isset($sTemplateID)) {
42b5e8aa 593 $sTemplateID = Template::get_default_template_set();
28294310 594 $icon_theme_path = !$use_icons ? NULL : Template::calculate_template_images_directory($sTemplateID);
3aa46abc 595}
be155e14 596
597// template object may have already been constructed in load_prefs.php
598//
599if (empty($oTemplate)) {
600 $oTemplate = Template::construct_template($sTemplateID);
601}
202bcbcc 602
7aae649d 603// We want some variables to always be available to the template
e39d00e9 604$oTemplate->assign('javascript_on',
605 (sqGetGlobalVar('user_is_logged_in', $user_is_logged_in, SQ_SESSION)
606 ? checkForJavascript() : 0));
fe8103c2 607$oTemplate->assign('base_uri', sqm_baseuri());
457e8593 608$always_include = array('sTemplateID', 'icon_theme_path');
7aae649d 609foreach ($always_include as $var) {
610 $oTemplate->assign($var, (isset($$var) ? $$var : NULL));
611}
612
202bcbcc 613/**
614 * Initialize our custom error handler object
615 */
202bcbcc 616$oErrorHandler = new ErrorHandler($oTemplate,'error_message.tpl');
617
618/**
619 * Activate custom error handling
620 */
621if (version_compare(PHP_VERSION, "4.3.0", ">=")) {
622 $oldErrorHandler = set_error_handler(array($oErrorHandler, 'SquirrelMailErrorhandler'));
623} else {
624 $oldErrorHandler = set_error_handler('SquirrelMailErrorhandler');
625}
626
627/**
628 * Javascript support detection function
629 * @param boolean $reset recheck javascript support if set to true.
867fed37 630 * @return integer SMPREF_JS_ON or SMPREF_JS_OFF ({@see include/constants.php})
202bcbcc 631 * @since 1.5.1
632 */
202bcbcc 633function checkForJavascript($reset = FALSE) {
634 global $data_dir, $username, $javascript_on, $javascript_setting;
635
636 if ( !$reset && sqGetGlobalVar('javascript_on', $javascript_on, SQ_SESSION) )
637 return $javascript_on;
638
e39d00e9 639 $user_is_logged_in = FALSE;
bf3abdc3 640 if ( $reset || !isset($javascript_setting) )
202bcbcc 641 $javascript_setting = getPref($data_dir, $username, 'javascript_setting', SMPREF_JS_AUTODETECT);
642
643 if ( !sqGetGlobalVar('new_js_autodetect_results', $js_autodetect_results) &&
644 !sqGetGlobalVar('js_autodetect_results', $js_autodetect_results) )
645 $js_autodetect_results = SMPREF_JS_OFF;
646
647 if ( $javascript_setting == SMPREF_JS_AUTODETECT )
648 $javascript_on = $js_autodetect_results;
649 else
650 $javascript_on = $javascript_setting;
651
652 sqsession_register($javascript_on, 'javascript_on');
653 return $javascript_on;
654}
655
656function sqm_baseuri() {
657 global $base_uri;
658 return $base_uri;
8e1e2794 659}