564ee853e3dbe4ce6d0d11215ecfbb7eb16f62b2
[mailer.git] / inc / wrapper-functions.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 04/04/2009 *
4  * ===================                          Last change: 04/04/2009 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : wrapper-functions.php                            *
8  * -------------------------------------------------------------------- *
9  * Short description : Wrapper functions                                *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Wrapper-Funktionen                               *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * -------------------------------------------------------------------- *
18  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
19  * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
20  * For more information visit: http://www.mxchange.org                  *
21  *                                                                      *
22  * This program is free software; you can redistribute it and/or modify *
23  * it under the terms of the GNU General Public License as published by *
24  * the Free Software Foundation; either version 2 of the License, or    *
25  * (at your option) any later version.                                  *
26  *                                                                      *
27  * This program is distributed in the hope that it will be useful,      *
28  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
29  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
30  * GNU General Public License for more details.                         *
31  *                                                                      *
32  * You should have received a copy of the GNU General Public License    *
33  * along with this program; if not, write to the Free Software          *
34  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
35  * MA  02110-1301  USA                                                  *
36  ************************************************************************/
37
38 // Some security stuff...
39 if (!defined('__SECURITY')) {
40         die();
41 } // END - if
42
43 // Read a given file
44 function readFromFile ($FQFN) {
45         // Sanity-check if file is there (should be there, but just to make it sure)
46         if (!isFileReadable($FQFN)) {
47                 // This should not happen
48                 debug_report_bug(__FUNCTION__, __LINE__, 'File ' . basename($FQFN) . ' is not readable!');
49         } elseif (!isset($GLOBALS['file_content'][$FQFN])) {
50                 // Load the file
51                 if (function_exists('file_get_contents')) {
52                         // Use new function
53                         $GLOBALS['file_content'][$FQFN] = file_get_contents($FQFN);
54                 } else {
55                         // Fall-back to implode-file chain
56                         $GLOBALS['file_content'][$FQFN] = implode('', file($FQFN));
57                 }
58         } // END - if
59
60         // Return the content
61         return $GLOBALS['file_content'][$FQFN];
62 }
63
64 // Writes content to a file
65 function writeToFile ($FQFN, $content, $aquireLock = false) {
66         // Is the file writeable?
67         if ((isFileReadable($FQFN)) && (!is_writeable($FQFN)) && (!changeMode($FQFN, 0644))) {
68                 // Not writeable!
69                 logDebugMessage(__FUNCTION__, __LINE__, sprintf("File %s not writeable.", basename($FQFN)));
70
71                 // Failed! :(
72                 return false;
73         } // END - if
74
75         // By default all is failed...
76         $GLOBALS['file_readable'][$FQFN] = false;
77         unset($GLOBALS['file_content'][$FQFN]);
78         $return = false;
79
80         // Is the function there?
81         if (function_exists('file_put_contents')) {
82                 // With lock?
83                 if ($aquireLock === true) {
84                         // Write it directly with lock
85                         $return = file_put_contents($FQFN, $content, LOCK_EX);
86                 } else {
87                         // Write it directly
88                         $return = file_put_contents($FQFN, $content);
89                 }
90         } else {
91                 // Write it with fopen
92                 $fp = fopen($FQFN, 'w') or debug_report_bug(__FUNCTION__, __LINE__, 'Cannot write to file ' . basename($FQFN) . '!');
93
94                 // Do we need to aquire a lock?
95                 if ($aquireLock === true) {
96                         // Aquire lock
97                         flock($fp, LOCK_EX);
98                 } // END - if
99
100                 // Write content
101                 $return = fwrite($fp, $content);
102
103                 // Close stream
104                 fclose($fp);
105         }
106
107         // Was something written?
108         if ($return !== false) {
109                 // Mark it as readable
110                 $GLOBALS['file_readable'][$FQFN] = true;
111
112                 // Remember content in cache
113                 $GLOBALS['file_content'][$FQFN] = $content;
114         } // END - if
115
116         // Return status
117         return (($return !== false) && (changeMode($FQFN, 0644)));
118 }
119
120 // Clears the output buffer. This function does *NOT* backup sent content.
121 function clearOutputBuffer () {
122         // Trigger an error on failure
123         if ((ob_get_length() > 0) && (!ob_end_clean())) {
124                 // Failed!
125                 debug_report_bug(__FUNCTION__, __LINE__, 'Failed to clean output buffer.');
126         } // END - if
127 }
128
129 // Encode strings
130 // @TODO Implement $compress
131 function encodeString ($str, $compress = true) {
132         $str = urlencode(base64_encode(compileUriCode($str)));
133         return $str;
134 }
135
136 // Decode strings encoded with encodeString()
137 // @TODO Implement $decompress
138 function decodeString ($str, $decompress = true) {
139         $str = compileUriCode(base64_decode(urldecode(compileUriCode($str))));
140         return $str;
141 }
142
143 // Decode entities in a nicer way
144 function decodeEntities ($str, $quote = ENT_NOQUOTES) {
145         // Decode the entities to UTF-8 now
146         $decodedString = html_entity_decode($str, $quote, 'UTF-8');
147
148         // Return decoded string
149         return $decodedString;
150 }
151
152 // Merges an array together but only if both are arrays
153 function merge_array ($array1, $array2) {
154         // Are both an array?
155         if ((!is_array($array1)) && (!is_array($array2))) {
156                 // Both are not arrays
157                 debug_report_bug(__FUNCTION__, __LINE__, 'No arrays provided!');
158         } elseif (!is_array($array1)) {
159                 // Left one is not an array
160                 debug_report_bug(__FUNCTION__, __LINE__, sprintf("array1 is not an array. array != %s", gettype($array1)));
161         } elseif (!is_array($array2)) {
162                 // Right one is not an array
163                 debug_report_bug(__FUNCTION__, __LINE__, sprintf("array2 is not an array. array != %s", gettype($array2)));
164         }
165
166         // Merge all together
167         return array_merge($array1, $array2);
168 }
169
170 // Check if given FQFN is a readable file
171 function isFileReadable ($FQFN) {
172         // Do we have cache?
173         if (!isset($GLOBALS['file_readable'][$FQFN])) {
174                 // Check all...
175                 $GLOBALS['file_readable'][$FQFN] = ((file_exists($FQFN)) && (is_file($FQFN)) && (is_readable($FQFN)));
176         } // END - if
177
178         // Return result
179         return $GLOBALS['file_readable'][$FQFN];
180 }
181
182 // Checks wether the given FQFN is a directory and not ., .. or .svn
183 function isDirectory ($FQFN) {
184         // Do we have cache?
185         if (!isset($GLOBALS[__FUNCTION__][$FQFN])) {
186                 // Generate baseName
187                 $baseName = basename($FQFN);
188
189                 // Check it
190                 $GLOBALS[__FUNCTION__][$FQFN] = ((is_dir($FQFN)) && ($baseName != '.') && ($baseName != '..') && ($baseName != '.svn'));
191         } // END - if
192
193         // Return the result
194         return $GLOBALS[__FUNCTION__][$FQFN];
195 }
196
197 // "Getter" for the real remote IP number
198 function detectRealIpAddress () {
199         // Get remote ip from environment
200         $remoteAddr = determineRealRemoteAddress();
201
202         // Is removeip installed?
203         if (isExtensionActive('removeip')) {
204                 // Then anonymize it
205                 $remoteAddr = getAnonymousRemoteAddress($remoteAddr);
206         } // END - if
207
208         // Return it
209         return $remoteAddr;
210 }
211
212 // "Getter" for remote IP number
213 function detectRemoteAddr () {
214         // Get remote ip from environment
215         $remoteAddr = determineRealRemoteAddress(true);
216
217         // Is removeip installed?
218         if (isExtensionActive('removeip')) {
219                 // Then anonymize it
220                 $remoteAddr = getAnonymousRemoteAddress($remoteAddr);
221         } // END - if
222
223         // Return it
224         return $remoteAddr;
225 }
226
227 // "Getter" for remote hostname
228 function detectRemoteHostname () {
229         // Get remote ip from environment
230         $remoteHost = getenv('REMOTE_HOST');
231
232         // Is removeip installed?
233         if (isExtensionActive('removeip')) {
234                 // Then anonymize it
235                 $remoteHost = getAnonymousRemoteHost($remoteHost);
236         } // END - if
237
238         // Return it
239         return $remoteHost;
240 }
241
242 // "Getter" for user agent
243 function detectUserAgent ($alwaysReal = false) {
244         // Get remote ip from environment
245         $userAgent = getenv('HTTP_USER_AGENT');
246
247         // Is removeip installed?
248         if ((isExtensionActive('removeip')) && ($alwaysReal === false)) {
249                 // Then anonymize it
250                 $userAgent = getAnonymousUserAgent($userAgent);
251         } // END - if
252
253         // Return it
254         return $userAgent;
255 }
256
257 // "Getter" for referer
258 function detectReferer () {
259         // Get remote ip from environment
260         $referer = getenv('HTTP_REFERER');
261
262         // Is removeip installed?
263         if (isExtensionActive('removeip')) {
264                 // Then anonymize it
265                 $referer = getAnonymousReferer($referer);
266         } // END - if
267
268         // Return it
269         return $referer;
270 }
271
272 // "Getter" for request URI
273 function detectRequestUri () {
274         // Return it
275         return (getenv('REQUEST_URI'));
276 }
277
278 // "Getter" for query string
279 function detectQueryString () {
280         return str_replace('&', '&amp;', (getenv('QUERY_STRING')));
281 }
282
283 // "Getter" for SERVER_NAME
284 function detectServerName () {
285         // Return it
286         return (getenv('SERVER_NAME'));
287 }
288
289 // Removes any  existing www. from SERVER_NAME. This is very silly but enough
290 // for our purpose here.
291 function detectDomainName () {
292         // Do we have cache?
293         if (!isset($GLOBALS[__FUNCTION__])) {
294                 // Get server name
295                 $domainName = detectServerName();
296
297                 // Is there any www. ?
298                 if (substr($domainName, 0, 4) == 'www.') {
299                         // Remove it
300                         $domainName = substr($domainName, 4);
301                 } // END - if
302
303                 // Set cache
304                 $GLOBALS[__FUNCTION__] = $domainName;
305         } // END - if
306
307         // Return cache
308         return $GLOBALS[__FUNCTION__];
309 }
310
311 // Check wether we are installing
312 function isInstalling () {
313         // Determine wether we are installing
314         if (!isset($GLOBALS['mailer_installing'])) {
315                 // Check URL (css.php/js.php need this)
316                 $GLOBALS['mailer_installing'] = isGetRequestParameterSet('installing');
317         } // END - if
318
319         // Return result
320         return $GLOBALS['mailer_installing'];
321 }
322
323 // Check wether this script is installed
324 function isInstalled () {
325         // Do we have cache?
326         if (!isset($GLOBALS[__FUNCTION__])) {
327                 // Determine wether this script is installed
328                 $GLOBALS[__FUNCTION__] = (
329                 (
330                         // First is config
331                         (
332                                 (
333                                         isConfigEntrySet('MXCHANGE_INSTALLED')
334                                 ) && (
335                                         getConfig('MXCHANGE_INSTALLED') == 'Y'
336                                 )
337                         )
338                 ) || (
339                         // New config file found and loaded
340                         isIncludeReadable(getCachePath() . 'config-local.php')
341                 ) || (
342                         (
343                                 // New config file found, but not yet read
344                                 isIncludeReadable(getCachePath() . 'config-local.php')
345                         ) && (
346                                 (
347                                         // Only new config file is found
348                                         !isIncludeReadable('inc/config.php')
349                                 ) || (
350                                         // Is installation mode
351                                         !isInstalling()
352                                 )
353                         )
354                 ));
355         } // END - if
356
357         // Then use the cache
358         return $GLOBALS[__FUNCTION__];
359 }
360
361 // Check wether an admin is registered
362 function isAdminRegistered () {
363         // Is cache set?
364         if (!isset($GLOBALS[__FUNCTION__])) {
365                 // Simply check it
366                 $GLOBALS[__FUNCTION__] = ((isConfigEntrySet('ADMIN_REGISTERED')) && (getConfig('ADMIN_REGISTERED') == 'Y'));
367         } // END - if
368
369         // Return it
370         return $GLOBALS[__FUNCTION__];
371 }
372
373 // Checks wether the hourly reset mode is active
374 function isHourlyResetEnabled () {
375         // Now simply check it
376         return ((isset($GLOBALS['hourly_enabled'])) && ($GLOBALS['hourly_enabled'] === true));
377 }
378
379 // Checks wether the reset mode is active
380 function isResetModeEnabled () {
381         // Now simply check it
382         return ((isset($GLOBALS['reset_enabled'])) && ($GLOBALS['reset_enabled'] === true));
383 }
384
385 // Checks wether the debug mode is enabled
386 function isDebugModeEnabled () {
387         // Is cache set?
388         if (!isset($GLOBALS[__FUNCTION__])) {
389                 // Simply check it
390                 $GLOBALS[__FUNCTION__] = ((isConfigEntrySet('DEBUG_MODE')) && (getConfig('DEBUG_MODE') == 'Y'));
391         } // END - if
392
393         // Return it
394         return $GLOBALS[__FUNCTION__];
395 }
396
397 // Checks wether the debug reset is enabled
398 function isDebugResetEnabled () {
399         // Is cache set?
400         if (!isset($GLOBALS[__FUNCTION__])) {
401                 // Simply check it
402                 $GLOBALS[__FUNCTION__] = ((isConfigEntrySet('DEBUG_RESET')) && (getConfig('DEBUG_RESET') == 'Y'));
403         } // END - if
404
405         // Return it
406         return $GLOBALS[__FUNCTION__];
407 }
408
409 // Checks wether SQL debugging is enabled
410 function isSqlDebuggingEnabled () {
411         // Is cache set?
412         if (!isset($GLOBALS[__FUNCTION__])) {
413                 // Determine if SQL debugging is enabled
414                 $GLOBALS[__FUNCTION__] = ((isConfigEntrySet('DEBUG_SQL')) && (getConfig('DEBUG_SQL') == 'Y'));
415         } // END - if
416
417         // Return it
418         return $GLOBALS[__FUNCTION__];
419 }
420
421 // Checks wether we shall debug regular expressions
422 function isDebugRegularExpressionEnabled () {
423         // Is cache set?
424         if (!isset($GLOBALS[__FUNCTION__])) {
425                 // Simply check it
426                 $GLOBALS[__FUNCTION__] = ((isConfigEntrySet('DEBUG_REGEX')) && (getConfig('DEBUG_REGEX') == 'Y'));
427         } // END - if
428
429         // Return it
430         return $GLOBALS[__FUNCTION__];
431 }
432
433 // Checks wether the cache instance is valid
434 function isCacheInstanceValid () {
435         // Do we have cache?
436         if (!isset($GLOBALS[__FUNCTION__])) {
437                 // Determine it
438                 $GLOBALS[__FUNCTION__] = ((isset($GLOBALS['cache_instance'])) && (is_object($GLOBALS['cache_instance'])));
439         } // END - if
440
441         // Return cache
442         return $GLOBALS[__FUNCTION__];
443 }
444
445 // Copies a file from source to destination and verifies if that goes fine.
446 // This function should wrap the copy() command and make a nicer debug backtrace
447 // even if there is no xdebug extension installed.
448 function copyFileVerified ($source, $dest, $chmod = '') {
449         // Failed is the default
450         $status = false;
451
452         // Is the source file there?
453         if (!isFileReadable($source)) {
454                 // Then abort here
455                 debug_report_bug(__FUNCTION__, __LINE__, 'Cannot read from source file ' . basename($source) . '.');
456         } // END - if
457
458         // Is the target directory there?
459         if (!isDirectory(dirname($dest))) {
460                 // Then abort here
461                 debug_report_bug(__FUNCTION__, __LINE__, 'Cannot find directory ' . str_replace(getPath(), '', dirname($dest)) . '.');
462         } // END - if
463
464         // Now try to copy it
465         if (!copy($source, $dest)) {
466                 // Something went wrong
467                 debug_report_bug(__FUNCTION__, __LINE__, 'copy() has failed to copy the file.');
468         } else {
469                 // Reset cache
470                 $GLOBALS['file_readable'][$dest] = true;
471         }
472
473         // If there are chmod rights set, apply them
474         if (!empty($chmod)) {
475                 // Try to apply them
476                 $status = changeMode($dest, $chmod);
477         } else {
478                 // All fine
479                 $status = true;
480         }
481
482         // All fine
483         return $status;
484 }
485
486 // Wrapper function for header()
487 // Send a header but checks before if we can do so
488 function sendHeader ($header) {
489         // Send the header
490         //* DEBUG: */ logDebugMessage(__FUNCTION__ . ': header=' . $header);
491         $GLOBALS['header'][] = trim($header);
492 }
493
494 // Flushes all headers
495 function flushHeaders () {
496         // Is the header already sent?
497         if (headers_sent()) {
498                 // Then abort here
499                 debug_report_bug(__FUNCTION__, __LINE__, 'Headers already sent!');
500         } // END - if
501
502         // Flush all headers if found
503         if ((isset($GLOBALS['header'])) && (is_array($GLOBALS['header']))) {
504                 foreach ($GLOBALS['header'] as $header) {
505                         header($header);
506                 } // END - foreach
507         } // END - if
508
509         // Mark them as flushed
510         $GLOBALS['header'] = array();
511 }
512
513 // Wrapper function for chmod()
514 // @TODO Do some more sanity check here
515 function changeMode ($FQFN, $mode) {
516         // Is the file/directory there?
517         if ((!isFileReadable($FQFN)) && (!isDirectory($FQFN))) {
518                 // Neither, so abort here
519                 debug_report_bug(__FUNCTION__, __LINE__, 'Cannot chmod() on ' . basename($FQFN) . '.');
520         } // END - if
521
522         // Try to set them
523         return chmod($FQFN, $mode);
524 }
525
526 // Wrapper for unlink()
527 function removeFile ($FQFN) {
528         // Is the file there?
529         if (isFileReadable($FQFN)) {
530                 // Reset cache first
531                 $GLOBALS['file_readable'][$FQFN] = false;
532
533                 // Yes, so remove it
534                 return unlink($FQFN);
535         } // END - if
536
537         // All fine if no file was removed. If we change this to 'false' or rewrite
538         // above if() block it would be to restrictive.
539         return true;
540 }
541
542 // Wrapper for $_POST['sel']
543 function countPostSelection ($element = 'sel') {
544         // Is it set?
545         if (isPostRequestParameterSet($element)) {
546                 // Return counted elements
547                 return countSelection(postRequestParameter($element));
548         } else {
549                 // Return zero if not found
550                 return 0;
551         }
552 }
553
554 // Checks wether the config-local.php is loaded
555 function isConfigLocalLoaded () {
556         return ((isset($GLOBALS['config_local_loaded'])) && ($GLOBALS['config_local_loaded'] === true));
557 }
558
559 // Checks wether a nickname or userid was entered and caches the result
560 function isNicknameUsed ($userid) {
561         // Is the cache there
562         if (!isset($GLOBALS[__FUNCTION__][$userid])) {
563                 // Determine it
564                 $GLOBALS[__FUNCTION__][$userid] = ((!empty($userid)) && (('' . round($userid) . '') != $userid));
565         } // END - if
566
567         // Return the result
568         return $GLOBALS[__FUNCTION__][$userid];
569 }
570
571 // Getter for 'what' value
572 function getWhat () {
573         // Default is null
574         $what = null;
575
576         // Is the value set?
577         if (isWhatSet(true)) {
578                 // Then use it
579                 $what = $GLOBALS['what'];
580         } // END - if
581
582         // Return it
583         return $what;
584 }
585
586 // Setter for 'what' value
587 function setWhat ($newWhat) {
588         $GLOBALS['what'] = SQL_ESCAPE($newWhat);
589 }
590
591 // Setter for 'what' from configuration
592 function setWhatFromConfig ($configEntry) {
593         // Get 'what' from config
594         $what = getConfig($configEntry);
595
596         // Set it
597         setWhat($what);
598 }
599
600 // Checks wether what is set and optionally aborts on miss
601 function isWhatSet ($strict =  false) {
602         // Check for it
603         $isset = isset($GLOBALS['what']);
604
605         // Should we abort here?
606         if (($strict === true) && ($isset === false)) {
607                 // Output backtrace
608                 debug_report_bug(__FUNCTION__, __LINE__, 'what is empty.');
609         } // END - if
610
611         // Return it
612         return $isset;
613 }
614
615 // Getter for 'action' value
616 function getAction ($strict = true) {
617         // Default is null
618         $action = null;
619
620         // Is the value set?
621         if (isActionSet(($strict) && (isHtmlOutputMode()))) {
622                 // Then use it
623                 $action = $GLOBALS['action'];
624         } // END - if
625
626         // Return it
627         return $action;
628 }
629
630 // Setter for 'action' value
631 function setAction ($newAction) {
632         $GLOBALS['action'] = SQL_ESCAPE($newAction);
633 }
634
635 // Checks wether action is set and optionally aborts on miss
636 function isActionSet ($strict =  false) {
637         // Check for it
638         $isset = ((isset($GLOBALS['action'])) && (!empty($GLOBALS['action'])));
639
640         // Should we abort here?
641         if (($strict === true) && ($isset === false)) {
642                 // Output backtrace
643                 debug_report_bug(__FUNCTION__, __LINE__, 'action is empty.');
644         } // END - if
645
646         // Return it
647         return $isset;
648 }
649
650 // Getter for 'module' value
651 function getModule ($strict = true) {
652         // Default is null
653         $module = null;
654
655         // Is the value set?
656         if (isModuleSet($strict)) {
657                 // Then use it
658                 $module = $GLOBALS['module'];
659         } // END - if
660
661         // Return it
662         return $module;
663 }
664
665 // Setter for 'module' value
666 function setModule ($newModule) {
667         // Secure it and make all modules lower-case
668         $GLOBALS['module'] = SQL_ESCAPE(strtolower($newModule));
669 }
670
671 // Checks wether module is set and optionally aborts on miss
672 function isModuleSet ($strict =  false) {
673         // Check for it
674         $isset = (!empty($GLOBALS['module']));
675
676         // Should we abort here?
677         if (($strict === true) && ($isset === false)) {
678                 // Output backtrace
679                 debug_report_bug(__FUNCTION__, __LINE__, 'module is empty.');
680         } // END - if
681
682         // Return it
683         return (($isset === true) && ($GLOBALS['module'] != 'unknown')) ;
684 }
685
686 // Getter for 'output_mode' value
687 function getScriptOutputMode () {
688         // Do we have cache?
689         if (!isset($GLOBALS[__FUNCTION__])) {
690                 // Default is null
691                 $output_mode = null;
692
693                 // Is the value set?
694                 if (isOutputModeSet(true)) {
695                         // Then use it
696                         $output_mode = $GLOBALS['output_mode'];
697                 } // END - if
698
699                 // Store it in cache
700                 $GLOBALS[__FUNCTION__] = $output_mode;
701         } // END - if
702
703         // Return cache
704         return $GLOBALS[__FUNCTION__];
705 }
706
707 // Setter for 'output_mode' value
708 function setOutputMode ($newOutputMode) {
709         $GLOBALS['output_mode'] = (int) $newOutputMode;
710 }
711
712 // Checks wether output_mode is set and optionally aborts on miss
713 function isOutputModeSet ($strict =  false) {
714         // Check for it
715         $isset = (isset($GLOBALS['output_mode']));
716
717         // Should we abort here?
718         if (($strict === true) && ($isset === false)) {
719                 // Output backtrace
720                 debug_report_bug(__FUNCTION__, __LINE__, 'Output mode is not set.');
721         } // END - if
722
723         // Return it
724         return $isset;
725 }
726
727 // Enables block-mode
728 function enableBlockMode ($enabled = true) {
729         $GLOBALS['block_mode'] = $enabled;
730 }
731
732 // Checks wether block-mode is enabled
733 function isBlockModeEnabled () {
734         // Abort if not set
735         if (!isset($GLOBALS['block_mode'])) {
736                 // Needs to be fixed
737                 debug_report_bug(__FUNCTION__, __LINE__, 'Block_mode is not set.');
738         } // END - if
739
740         // Return it
741         return $GLOBALS['block_mode'];
742 }
743
744 // Wrapper function for addPointsThroughReferalSystem()
745 function addPointsDirectly ($subject, $userid, $points) {
746         // Reset level here
747         unset($GLOBALS['ref_level']);
748
749         // Call more complicated method (due to more parameters)
750         return addPointsThroughReferalSystem($subject, $userid, $points, false, 0, 'DIRECT');
751 }
752
753 // Wrapper for redirectToUrl but URL comes from a configuration entry
754 function redirectToConfiguredUrl ($configEntry) {
755         // Load the URL
756         redirectToUrl(getConfig($configEntry));
757 }
758
759 // Wrapper function to redirect from member-only modules to index
760 function redirectToIndexMemberOnlyModule () {
761         // Do the redirect here
762         redirectToUrl('modules.php?module=index&amp;code=' . getCode('MODULE_MEMBER_ONLY') . '&amp;mod=' . getModule());
763 }
764
765 // Wrapper function to redirect to current URL
766 function redirectToRequestUri () {
767         redirectToUrl(basename(detectRequestUri()));
768 }
769
770 // Wrapper function to redirect to de-refered URL
771 function redirectToDereferedUrl ($url) {
772         // Redirect to to
773         redirectToUrl(generateDerefererUrl($url));
774 }
775
776 // Wrapper function for checking if extension is installed and newer or same version
777 function isExtensionInstalledAndNewer ($ext_name, $version) {
778         // Is an cache entry found?
779         if (!isset($GLOBALS[__FUNCTION__][$ext_name][$version])) {
780                 // Determine it
781                 $GLOBALS[__FUNCTION__][$ext_name][$version] = ((isExtensionInstalled($ext_name)) && (getExtensionVersion($ext_name) >= $version));
782         } else {
783                 // Cache hits should be incremented twice
784                 incrementStatsEntry('cache_hits', 2);
785         }
786
787         // Return it
788         //* DEBUG: */ debugOutput(__FUNCTION__ . ':' . $ext_name . '=&gt;' . $version . ':' . intval($GLOBALS[__FUNCTION__][$ext_name][$version]));
789         return $GLOBALS[__FUNCTION__][$ext_name][$version];
790 }
791
792 // Wrapper function for checking if extension is installed and older than given version
793 function isExtensionInstalledAndOlder ($ext_name, $version) {
794         // Is an cache entry found?
795         if (!isset($GLOBALS[__FUNCTION__][$ext_name][$version])) {
796                 // Determine it
797                 $GLOBALS[__FUNCTION__][$ext_name][$version] = ((isExtensionInstalled($ext_name)) && (isExtensionOlder($ext_name, $version)));
798         } else {
799                 // Cache hits should be incremented twice
800                 incrementStatsEntry('cache_hits', 2);
801         }
802
803         // Return it
804         //* DEBUG: */ debugOutput(__FUNCTION__ . ':' . $ext_name . '&lt;' . $version . ':' . intval($GLOBALS[__FUNCTION__][$ext_name][$version]));
805         return $GLOBALS[__FUNCTION__][$ext_name][$version];
806 }
807
808 // Set username
809 function setUsername ($userName) {
810         $GLOBALS['username'] = (string) $userName;
811 }
812
813 // Get username
814 function getUsername () {
815         // User name set?
816         if (!isset($GLOBALS['username'])) {
817                 // No, so it has to be a guest
818                 $GLOBALS['username'] = '{--USERNAME_GUEST--}';
819         } // END - if
820
821         // Return it
822         return $GLOBALS['username'];
823 }
824
825 // Wrapper function for installation phase
826 function isInstallationPhase () {
827         // Do we have cache?
828         if (!isset($GLOBALS[__FUNCTION__])) {
829                 // Determine it
830                 $GLOBALS[__FUNCTION__] = ((!isInstalled()) || (isInstalling()));
831         } // END - if
832
833         // Return result
834         return $GLOBALS[__FUNCTION__];
835 }
836
837 // Checks wether the extension demo is actuve and the admin login is demo (password needs to be demo, too!)
838 function isDemoModeActive () {
839         // Is cache set?
840         if (!isset($GLOBALS[__FUNCTION__])) {
841                 // Simply check it
842                 $GLOBALS[__FUNCTION__] = ((isExtensionActive('demo')) && (getCurrentAdminLogin() == 'demo'));
843         } // END - if
844
845         // Return it
846         return $GLOBALS[__FUNCTION__];
847 }
848
849 // Getter for PHP caching value
850 function getPhpCaching () {
851         return $GLOBALS['php_caching'];
852 }
853
854 // Checks wether the admin hash is set
855 function isAdminHashSet ($adminId) {
856         // Is the array there?
857         if (!isset($GLOBALS['cache_array']['admin'])) {
858                 // Missing array should be reported
859                 debug_report_bug(__FUNCTION__, __LINE__, 'Cache not set.');
860         } // END - if
861
862         // Check for admin hash
863         return isset($GLOBALS['cache_array']['admin']['password'][$adminId]);
864 }
865
866 // Setter for admin hash
867 function setAdminHash ($adminId, $hash) {
868         $GLOBALS['cache_array']['admin']['password'][$adminId] = $hash;
869 }
870
871 // Getter for current admin login
872 function getCurrentAdminLogin () {
873         // Log debug message
874         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'called!');
875
876         // Do we have cache?
877         if (!isset($GLOBALS[__FUNCTION__])) {
878                 // Determine it
879                 $GLOBALS[__FUNCTION__] = getAdminLogin(getCurrentAdminId());
880         } // END - if
881
882         // Return it
883         return $GLOBALS[__FUNCTION__];
884 }
885
886 // Setter for admin id (and current)
887 function setAdminId ($adminId) {
888         // Log debug message
889         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'adminId=' . $adminId);
890
891         // Set session
892         $status = setSession('admin_id', bigintval($adminId));
893
894         // Set current id
895         setCurrentAdminId($adminId);
896
897         // Return status
898         return $status;
899 }
900
901 // Setter for admin_last
902 function setAdminLast ($adminLast) {
903         // Log debug message
904         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'adminLast=' . $adminLast);
905
906         // Set session
907         $status = setSession('admin_last', $adminLast);
908
909         // Return status
910         return $status;
911 }
912
913 // Setter for admin_md5
914 function setAdminMd5 ($adminMd5) {
915         // Log debug message
916         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'adminMd5=' . $adminMd5);
917
918         // Set session
919         $status = setSession('admin_md5', $adminMd5);
920
921         // Return status
922         return $status;
923 }
924
925 // Getter for admin_md5
926 function getAdminMd5 () {
927         // Log debug message
928         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'called!');
929
930         // Get session
931         return getSession('admin_md5');
932 }
933
934 // Init user data array
935 function initUserData () {
936         // User id should not be zero
937         if (!isValidUserId(getCurrentUserId())) {
938                 // Should be always valid
939                 debug_report_bug(__FUNCTION__, __LINE__, 'Current user id is invalid: ' . getCurrentUserId());
940         } // END - if
941
942         // Init the user
943         $GLOBALS['user_data'][getCurrentUserId()] = array();
944 }
945
946 // Getter for user data
947 function getUserData ($column) {
948         // User id should not be zero
949         if (!isValidUserId(getCurrentUserId())) {
950                 // Should be always valid
951                 debug_report_bug(__FUNCTION__, __LINE__, 'Current user id is invalid: ' . getCurrentUserId());
952         } // END - if
953
954         // Default is empty
955         $data = null;
956
957         if (isset($GLOBALS['user_data'][getCurrentUserId()][$column])) {
958                 // Return the value
959                 $data = $GLOBALS['user_data'][getCurrentUserId()][$column];
960         } // END - if
961
962         // Return it
963         return $data;
964 }
965
966 // Checks wether given user data is set to 'Y'
967 function isUserDataEnabled ($column) {
968         // Do we have cache?
969         if (!isset($GLOBALS[__FUNCTION__][getCurrentUserId()][$column])) {
970                 // Determine it
971                 $GLOBALS[__FUNCTION__][getCurrentUserId()][$column] = (getUserData($column) == 'Y');
972         } // END - if
973
974         // Return cache
975         return $GLOBALS[__FUNCTION__][getCurrentUserId()][$column];
976 }
977
978 // Geter for whole user data array
979 function getUserDataArray () {
980         // Get user id
981         $userid = getCurrentUserId();
982
983         // Is the current userid valid?
984         if (!isValidUserId($userid)) {
985                 // Should be always valid
986                 debug_report_bug(__FUNCTION__, __LINE__, 'Current user id is invalid: ' . $userid);
987         } // END - if
988
989         // Get the whole array if found
990         if (isset($GLOBALS['user_data'][$userid])) {
991                 // Found, so return it
992                 return $GLOBALS['user_data'][$userid];
993         } else {
994                 // Return empty array
995                 return array();
996         }
997 }
998
999 // Checks if the user data is valid, this may indicate that the user has logged
1000 // in, but you should use isMember() if you want to find that out.
1001 function isUserDataValid () {
1002         // User id should not be zero so abort here
1003         if (!isCurrentUserIdSet()) return false;
1004
1005         // Is it cached?
1006         if (!isset($GLOBALS['is_userdata_valid'][getCurrentUserId()])) {
1007                 // Determine it
1008                 $GLOBALS['is_userdata_valid'][getCurrentUserId()] = ((isset($GLOBALS['user_data'][getCurrentUserId()])) && (count($GLOBALS['user_data'][getCurrentUserId()]) > 1));
1009         } // END - if
1010
1011         // Return the result
1012         return $GLOBALS['is_userdata_valid'][getCurrentUserId()];
1013 }
1014
1015 // Setter for current userid
1016 function setCurrentUserId ($userid) {
1017         // Set userid
1018         $GLOBALS['current_userid'] = bigintval($userid);
1019
1020         // Unset it to re-determine the actual state
1021         unset($GLOBALS['is_userdata_valid'][$userid]);
1022 }
1023
1024 // Getter for current userid
1025 function getCurrentUserId () {
1026         // Userid must be set before it can be used
1027         if (!isCurrentUserIdSet()) {
1028                 // Not set
1029                 debug_report_bug(__FUNCTION__, __LINE__, 'User id is not set.');
1030         } // END - if
1031
1032         // Return the userid
1033         return $GLOBALS['current_userid'];
1034 }
1035
1036 // Checks if current userid is set
1037 function isCurrentUserIdSet () {
1038         return ((isset($GLOBALS['current_userid'])) && (isValidUserId($GLOBALS['current_userid'])));
1039 }
1040
1041 // Checks wether we are debugging template cache
1042 function isDebuggingTemplateCache () {
1043         // Do we have cache?
1044         if (!isset($GLOBALS[__FUNCTION__])) {
1045                 // Determine it
1046                 $GLOBALS[__FUNCTION__] = (getConfig('DEBUG_TEMPLATE_CACHE') == 'Y');
1047         } // END - if
1048
1049         // Return cache
1050         return $GLOBALS[__FUNCTION__];
1051 }
1052
1053 // Wrapper for fetchUserData() and getUserData() calls
1054 function getFetchedUserData ($keyColumn, $userid, $valueColumn) {
1055         // Is it cached?
1056         if (!isset($GLOBALS[__FUNCTION__][$userid][$keyColumn][$valueColumn])) {
1057                 // Default is 'guest'
1058                 $data = '{--USERNAME_GUEST--}';
1059
1060                 // Can we fetch the user data?
1061                 if ((isValidUserId($userid)) && (fetchUserData($userid, $keyColumn))) {
1062                         // Now get the data back
1063                         $data = getUserData($valueColumn);
1064                 } // END - if
1065
1066                 // Cache it
1067                 $GLOBALS[__FUNCTION__][$userid][$keyColumn][$valueColumn] = $data;
1068         } // END - if
1069
1070         // Return it
1071         return $GLOBALS[__FUNCTION__][$userid][$keyColumn][$valueColumn];
1072 }
1073
1074 // Wrapper for strpos() to ease porting from deprecated ereg() function
1075 function isInString ($needle, $haystack) {
1076         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'needle=' . $needle . ', haystack=' . $haystack . ', returned=' . intval(strpos($haystack, $needle) !== false));
1077         return (strpos($haystack, $needle) !== false);
1078 }
1079
1080 // Wrapper for strpos() to ease porting from deprecated eregi() function
1081 // This function is case-insensitive
1082 function isInStringIgnoreCase ($needle, $haystack) {
1083         return (isInString(strtolower($needle), strtolower($haystack)));
1084 }
1085
1086 // Wrapper to check for if fatal errors where detected
1087 function ifFatalErrorsDetected () {
1088         // Just call the inner function
1089         return (getTotalFatalErrors() > 0);
1090 }
1091
1092 // Setter for HTTP status
1093 function setHttpStatus ($status) {
1094         $GLOBALS['http_status'] = (string) $status;
1095 }
1096
1097 // Getter for HTTP status
1098 function getHttpStatus () {
1099         // Is the status set?
1100         if (!isset($GLOBALS['http_status'])) {
1101                 // Abort here
1102                 debug_report_bug(__FUNCTION__, __LINE__, 'No HTTP status set!');
1103         } // END - if
1104
1105         // Return it
1106         return $GLOBALS['http_status'];
1107 }
1108
1109 /**
1110  * Send a HTTP redirect to the browser. This function was taken from DokuWiki
1111  * (GNU GPL 2; http://www.dokuwiki.org) and modified to fit into mailer project.
1112  *
1113  * ----------------------------------------------------------------------------
1114  * If you want to redirect, please use redirectToUrl(); instead
1115  * ----------------------------------------------------------------------------
1116  *
1117  * Works arround Microsoft IIS cookie sending bug. Does exit the script.
1118  *
1119  * @link    http://support.microsoft.com/kb/q176113/
1120  * @author  Andreas Gohr <andi@splitbrain.org>
1121  * @access  private
1122  */
1123 function sendRawRedirect ($url) {
1124         // Send helping header
1125         setHttpStatus('302 Found');
1126
1127         // always close the session
1128         session_write_close();
1129
1130         // Revert entity &amp;
1131         $url = str_replace('&amp;', '&', $url);
1132
1133         // check if running on IIS < 6 with CGI-PHP
1134         if ((isset($_SERVER['SERVER_SOFTWARE'])) && (isset($_SERVER['GATEWAY_INTERFACE'])) &&
1135                 (strpos($_SERVER['GATEWAY_INTERFACE'], 'CGI') !== false) &&
1136                 (preg_match('|^Microsoft-IIS/(\d)\.\d$|', trim($_SERVER['SERVER_SOFTWARE']), $matches)) &&
1137                 ($matches[1] < 6)) {
1138                 // Send the IIS header
1139                 sendHeader('Refresh: 0;url=' . $url);
1140         } else {
1141                 // Send generic header
1142                 sendHeader('Location: ' . $url);
1143         }
1144
1145         // Shutdown here
1146         shutdown();
1147 }
1148
1149 // Determines the country of the given user id
1150 function determineCountry ($userid) {
1151         // Do we have cache?
1152         if (!isset($GLOBALS[__FUNCTION__][$userid])) {
1153                 // Default is 'invalid'
1154                 $GLOBALS[__FUNCTION__][$userid] = 'invalid';
1155
1156                 // Is extension country active?
1157                 if (isExtensionActive('country')) {
1158                         // Determine the right country code through the country id
1159                         $id = getUserData('country_code');
1160
1161                         // Then handle it over
1162                         $GLOBALS[__FUNCTION__][$userid] = generateCountryInfo($id);
1163                 } else {
1164                         // Get raw code from user data
1165                         $GLOBALS[__FUNCTION__][$userid] = getUserData('country');
1166                 }
1167         } // END - if
1168
1169         // Return cache
1170         return $GLOBALS[__FUNCTION__][$userid];
1171 }
1172
1173 // "Getter" for total confirmed user accounts
1174 function getTotalConfirmedUser () {
1175         // Is it cached?
1176         if (!isset($GLOBALS[__FUNCTION__])) {
1177                 // Then do it
1178                 if (isExtensionActive('user')) {
1179                         $GLOBALS[__FUNCTION__] = countSumTotalData('CONFIRMED', 'user_data', 'userid', 'status', true);
1180                 } else {
1181                         $GLOBALS[__FUNCTION__] = 0;
1182                 }
1183         } // END - if
1184
1185         // Return cached value
1186         return $GLOBALS[__FUNCTION__];
1187 }
1188
1189 // "Getter" for total unconfirmed user accounts
1190 function getTotalUnconfirmedUser () {
1191         // Is it cached?
1192         if (!isset($GLOBALS[__FUNCTION__])) {
1193                 // Then do it
1194                 if (isExtensionActive('user')) {
1195                         $GLOBALS[__FUNCTION__] = countSumTotalData('UNCONFIRMED', 'user_data', 'userid', 'status', true);
1196                 } else {
1197                         $GLOBALS[__FUNCTION__] = 0;
1198                 }
1199         } // END - if
1200
1201         // Return cached value
1202         return $GLOBALS[__FUNCTION__];
1203 }
1204
1205 // "Getter" for total locked user accounts
1206 function getTotalLockedUser () {
1207         // Is it cached?
1208         if (!isset($GLOBALS[__FUNCTION__])) {
1209                 // Then do it
1210                 if (isExtensionActive('user')) {
1211                         $GLOBALS[__FUNCTION__] = countSumTotalData('LOCKED', 'user_data', 'userid', 'status', true);
1212                 } else {
1213                         $GLOBALS[__FUNCTION__] = 0;
1214                 }
1215         } // END - if
1216
1217         // Return cached value
1218         return $GLOBALS[__FUNCTION__];
1219 }
1220
1221 // "Getter" for total locked user accounts
1222 function getTotalRandomRefidUser () {
1223         // Is it cached?
1224         if (!isset($GLOBALS[__FUNCTION__])) {
1225                 // Then do it
1226                 if (isExtensionInstalledAndNewer('user', '0.3.4')) {
1227                         $GLOBALS[__FUNCTION__] = countSumTotalData('{?user_min_confirmed?}', 'user_data', 'userid', 'rand_confirmed', true, '', '>=');
1228                 } else {
1229                         $GLOBALS[__FUNCTION__] = 0;
1230                 }
1231         } // END - if
1232
1233         // Return cached value
1234         return $GLOBALS[__FUNCTION__];
1235 }
1236
1237 // Is given userid valid?
1238 function isValidUserId ($userid) {
1239         // Do we have cache?
1240         if (!isset($GLOBALS[__FUNCTION__][$userid])) {
1241                 // Check it out
1242                 $GLOBALS[__FUNCTION__][$userid] = ((!is_null($userid)) && (!empty($userid)) && ($userid > 0));
1243         } // END - if
1244
1245         // Return cache
1246         return $GLOBALS[__FUNCTION__][$userid];
1247 }
1248
1249 // Encodes entities
1250 function encodeEntities ($str) {
1251         // Secure it first
1252         $str = secureString($str, true, true);
1253
1254         // Encode dollar sign as well
1255         $str = str_replace('$', '&#36;', $str);
1256
1257         // Return it
1258         return $str;
1259 }
1260
1261 // "Getter" for date from patch_ctime
1262 function getDateFromPatchTime () {
1263         // Is it cached?
1264         if (!isset($GLOBALS[__FUNCTION__])) {
1265                 // Then set it
1266                 $GLOBALS[__FUNCTION__] = generateDateTime(getConfig('patch_ctime'), '5');
1267         } // END - if
1268
1269         // Return cache
1270         return $GLOBALS[__FUNCTION__];
1271 }
1272
1273 // Getter for current year (default)
1274 function getYear ($timestamp = null) {
1275         // Is it cached?
1276         if (!isset($GLOBALS[__FUNCTION__][$timestamp])) {
1277                 // null is time()
1278                 if (is_null($timestamp)) {
1279                         $timestamp = time();
1280                 } // END - if
1281
1282                 // Then create it
1283                 $GLOBALS[__FUNCTION__][$timestamp] = date('Y', $timestamp);
1284         } // END - if
1285
1286         // Return cache
1287         return $GLOBALS[__FUNCTION__][$timestamp];
1288 }
1289
1290 // Getter for current month (default)
1291 function getMonth ($timestamp = null) {
1292         // Is it cached?
1293         if (!isset($GLOBALS[__FUNCTION__][$timestamp])) {
1294                 // If null is set, use time()
1295                 if (is_null($timestamp)) {
1296                         // Use time() which is current timestamp
1297                         $timestamp = time();
1298                 } // END - if
1299
1300                 // Then create it
1301                 $GLOBALS[__FUNCTION__][$timestamp] = date('m', $timestamp);
1302         } // END - if
1303
1304         // Return cache
1305         return $GLOBALS[__FUNCTION__][$timestamp];
1306 }
1307
1308 // Getter for current hour (default)
1309 function getHour ($timestamp = null) {
1310         // Is it cached?
1311         if (!isset($GLOBALS[__FUNCTION__][$timestamp])) {
1312                 // null is time()
1313                 if (is_null($timestamp)) {
1314                         $timestamp = time();
1315                 } // END - if
1316
1317                 // Then create it
1318                 $GLOBALS[__FUNCTION__][$timestamp] = date('H', $timestamp);
1319         } // END - if
1320
1321         // Return cache
1322         return $GLOBALS[__FUNCTION__][$timestamp];
1323 }
1324
1325 // Getter for current day (default)
1326 function getDay ($timestamp = null) {
1327         // Is it cached?
1328         if (!isset($GLOBALS[__FUNCTION__][$timestamp])) {
1329                 // null is time()
1330                 if (is_null($timestamp)) {
1331                         $timestamp = time();
1332                 } // END - if
1333
1334                 // Then create it
1335                 $GLOBALS[__FUNCTION__][$timestamp] = date('d', $timestamp);
1336         } // END - if
1337
1338         // Return cache
1339         return $GLOBALS[__FUNCTION__][$timestamp];
1340 }
1341
1342 // Getter for current week (default)
1343 function getWeek ($timestamp = null) {
1344         // Is it cached?
1345         if (!isset($GLOBALS[__FUNCTION__][$timestamp])) {
1346                 // null is time()
1347                 if (is_null($timestamp)) $timestamp = time();
1348
1349                 // Then create it
1350                 $GLOBALS[__FUNCTION__][$timestamp] = date('W', $timestamp);
1351         } // END - if
1352
1353         // Return cache
1354         return $GLOBALS[__FUNCTION__][$timestamp];
1355 }
1356
1357 // Getter for current short_hour (default)
1358 function getShortHour ($timestamp = null) {
1359         // Is it cached?
1360         if (!isset($GLOBALS[__FUNCTION__][$timestamp])) {
1361                 // null is time()
1362                 if (is_null($timestamp)) $timestamp = time();
1363
1364                 // Then create it
1365                 $GLOBALS[__FUNCTION__][$timestamp] = date('G', $timestamp);
1366         } // END - if
1367
1368         // Return cache
1369         return $GLOBALS[__FUNCTION__][$timestamp];
1370 }
1371
1372 // Getter for current long_hour (default)
1373 function getLongHour ($timestamp = null) {
1374         // Is it cached?
1375         if (!isset($GLOBALS[__FUNCTION__][$timestamp])) {
1376                 // null is time()
1377                 if (is_null($timestamp)) $timestamp = time();
1378
1379                 // Then create it
1380                 $GLOBALS[__FUNCTION__][$timestamp] = date('H', $timestamp);
1381         } // END - if
1382
1383         // Return cache
1384         return $GLOBALS[__FUNCTION__][$timestamp];
1385 }
1386
1387 // Getter for current second (default)
1388 function getSecond ($timestamp = null) {
1389         // Is it cached?
1390         if (!isset($GLOBALS[__FUNCTION__][$timestamp])) {
1391                 // null is time()
1392                 if (is_null($timestamp)) $timestamp = time();
1393
1394                 // Then create it
1395                 $GLOBALS[__FUNCTION__][$timestamp] = date('s', $timestamp);
1396         } // END - if
1397
1398         // Return cache
1399         return $GLOBALS[__FUNCTION__][$timestamp];
1400 }
1401
1402 // Getter for current minute (default)
1403 function getMinute ($timestamp = null) {
1404         // Is it cached?
1405         if (!isset($GLOBALS[__FUNCTION__][$timestamp])) {
1406                 // null is time()
1407                 if (is_null($timestamp)) $timestamp = time();
1408
1409                 // Then create it
1410                 $GLOBALS[__FUNCTION__][$timestamp] = date('i', $timestamp);
1411         } // END - if
1412
1413         // Return cache
1414         return $GLOBALS[__FUNCTION__][$timestamp];
1415 }
1416
1417 // Checks wether the title decoration is enabled
1418 function isTitleDecorationEnabled () {
1419         // Do we have cache?
1420         if (!isset($GLOBALS[__FUNCTION__])) {
1421                 // Just check it
1422                 $GLOBALS[__FUNCTION__] = (getConfig('enable_title_deco') == 'Y');
1423         } // END - if
1424
1425         // Return cache
1426         return $GLOBALS[__FUNCTION__];
1427 }
1428
1429 // Checks wether filter usage updates are enabled (expensive queries!)
1430 function isFilterUsageUpdateEnabled () {
1431         // Do we have cache?
1432         if (!isset($GLOBALS[__FUNCTION__])) {
1433                 // Determine it
1434                 $GLOBALS[__FUNCTION__] = ((isExtensionInstalledAndNewer('sql_patches', '0.6.0')) && (isConfigEntrySet('update_filter_usage')) && (getConfig('update_filter_usage') == 'Y'));
1435         } // END - if
1436
1437         // Return cache
1438         return $GLOBALS[__FUNCTION__];
1439 }
1440
1441 // Checks wether debugging of weekly resets is enabled
1442 function isWeeklyResetDebugEnabled () {
1443         // Do we have cache?
1444         if (!isset($GLOBALS[__FUNCTION__])) {
1445                 // Determine it
1446                 $GLOBALS[__FUNCTION__] = ((isConfigEntrySet('DEBUG_WEEKLY')) && (getConfig('DEBUG_WEEKLY') == 'Y'));
1447         } // END - if
1448
1449         // Return cache
1450         return $GLOBALS[__FUNCTION__];
1451 }
1452
1453 // Checks wether debugging of monthly resets is enabled
1454 function isMonthlyResetDebugEnabled () {
1455         // Do we have cache?
1456         if (!isset($GLOBALS[__FUNCTION__])) {
1457                 // Determine it
1458                 $GLOBALS[__FUNCTION__] = ((isConfigEntrySet('DEBUG_MONTHLY')) && (getConfig('DEBUG_MONTHLY') == 'Y'));
1459         } // END - if
1460
1461         // Return cache
1462         return $GLOBALS[__FUNCTION__];
1463 }
1464
1465 // Checks wether displaying of debug SQLs are enabled
1466 function isDisplayDebugSqlEnabled () {
1467         // Do we have cache?
1468         if (!isset($GLOBALS[__FUNCTION__])) {
1469                 // Determine it
1470                 $GLOBALS[__FUNCTION__] = ((isExtensionInstalledAndNewer('other', '0.2.2')) && (getConfig('display_debug_sqls') == 'Y'));
1471         } // END - if
1472
1473         // Return cache
1474         return $GLOBALS[__FUNCTION__];
1475 }
1476
1477 // Checks wether module title is enabled
1478 function isModuleTitleEnabled () {
1479         // Do we have cache?
1480         if (!isset($GLOBALS[__FUNCTION__])) {
1481                 // Determine it
1482                 $GLOBALS[__FUNCTION__] = (getConfig('enable_mod_title') == 'Y');
1483         } // END - if
1484
1485         // Return cache
1486         return $GLOBALS[__FUNCTION__];
1487 }
1488
1489 // Checks wether what title is enabled
1490 function isWhatTitleEnabled () {
1491         // Do we have cache?
1492         if (!isset($GLOBALS[__FUNCTION__])) {
1493                 // Determine it
1494                 $GLOBALS[__FUNCTION__] = (getConfig('enable_what_title') == 'Y');
1495         } // END - if
1496
1497         // Return cache
1498         return $GLOBALS[__FUNCTION__];
1499 }
1500
1501 // Checks wether stats are enabled
1502 function ifStatsAreEnabled () {
1503         // Do we have cache?
1504         if (!isset($GLOBALS[__FUNCTION__])) {
1505                 // Then determine it
1506                 $GLOBALS[__FUNCTION__] = (getConfig('stats_enabled') == 'Y');
1507         } // END - if
1508
1509         // Return cached value
1510         return $GLOBALS[__FUNCTION__];
1511 }
1512
1513 // Checks wether admin-notification of certain user actions is enabled
1514 function isAdminNotificationEnabled () {
1515         // Do we have cache?
1516         if (!isset($GLOBALS[__FUNCTION__])) {
1517                 // Determine it
1518                 $GLOBALS[__FUNCTION__] = (getConfig('admin_notify') == 'Y');
1519         } // END - if
1520
1521         // Return cache
1522         return $GLOBALS[__FUNCTION__];
1523 }
1524
1525 // Checks wether random referal id selection is enabled
1526 function isRandomReferalIdEnabled () {
1527         // Do we have cache?
1528         if (!isset($GLOBALS[__FUNCTION__])) {
1529                 // Determine it
1530                 $GLOBALS[__FUNCTION__] = ((isExtensionInstalledAndNewer('user', '0.3.4')) && (getConfig('select_user_zero_refid') == 'Y'));
1531         } // END - if
1532
1533         // Return cache
1534         return $GLOBALS[__FUNCTION__];
1535 }
1536
1537 // "Getter" for default language
1538 function getDefaultLanguage () {
1539         // Do we have cache?
1540         if (!isset($GLOBALS[__FUNCTION__])) {
1541                 // Determine it
1542                 $GLOBALS[__FUNCTION__] = getConfig('DEFAULT_LANG');
1543         } // END - if
1544
1545         // Return cache
1546         return $GLOBALS[__FUNCTION__];
1547 }
1548
1549 // "Getter" for default referal id
1550 function getDefRefid () {
1551         // Do we have cache?
1552         if (!isset($GLOBALS[__FUNCTION__])) {
1553                 // Determine it
1554                 $GLOBALS[__FUNCTION__] = getConfig('def_refid');
1555         } // END - if
1556
1557         // Return cache
1558         return $GLOBALS[__FUNCTION__];
1559 }
1560
1561 // "Getter" for path
1562 function getPath () {
1563         // Do we have cache?
1564         if (!isset($GLOBALS[__FUNCTION__])) {
1565                 // Determine it
1566                 $GLOBALS[__FUNCTION__] = getConfig('PATH');
1567         } // END - if
1568
1569         // Return cache
1570         return $GLOBALS[__FUNCTION__];
1571 }
1572
1573 // "Getter" for url
1574 function getUrl () {
1575         // Do we have cache?
1576         if (!isset($GLOBALS[__FUNCTION__])) {
1577                 // Determine it
1578                 $GLOBALS[__FUNCTION__] = getConfig('URL');
1579         } // END - if
1580
1581         // Return cache
1582         return $GLOBALS[__FUNCTION__];
1583 }
1584
1585 // "Getter" for cache_path
1586 function getCachePath () {
1587         // Do we have cache?
1588         if (!isset($GLOBALS[__FUNCTION__])) {
1589                 // Determine it
1590                 $GLOBALS[__FUNCTION__] = getConfig('CACHE_PATH');
1591         } // END - if
1592
1593         // Return cache
1594         return $GLOBALS[__FUNCTION__];
1595 }
1596
1597 // "Getter" for secret_key
1598 function getSecretKey () {
1599         // Do we have cache?
1600         if (!isset($GLOBALS[__FUNCTION__])) {
1601                 // Determine it
1602                 $GLOBALS[__FUNCTION__] = getConfig('secret_key');
1603         } // END - if
1604
1605         // Return cache
1606         return $GLOBALS[__FUNCTION__];
1607 }
1608
1609 // "Getter" for SITE_KEY
1610 function getSiteKey () {
1611         // Do we have cache?
1612         if (!isset($GLOBALS[__FUNCTION__])) {
1613                 // Determine it
1614                 $GLOBALS[__FUNCTION__] = getConfig('SITE_KEY');
1615         } // END - if
1616
1617         // Return cache
1618         return $GLOBALS[__FUNCTION__];
1619 }
1620
1621 // "Getter" for DATE_KEY
1622 function getDateKey () {
1623         // Do we have cache?
1624         if (!isset($GLOBALS[__FUNCTION__])) {
1625                 // Determine it
1626                 $GLOBALS[__FUNCTION__] = getConfig('DATE_KEY');
1627         } // END - if
1628
1629         // Return cache
1630         return $GLOBALS[__FUNCTION__];
1631 }
1632
1633 // "Getter" for master_salt
1634 function getMasterSalt () {
1635         // Do we have cache?
1636         if (!isset($GLOBALS[__FUNCTION__])) {
1637                 // Determine it
1638                 $GLOBALS[__FUNCTION__] = getConfig('master_salt');
1639         } // END - if
1640
1641         // Return cache
1642         return $GLOBALS[__FUNCTION__];
1643 }
1644
1645 // "Getter" for prime
1646 function getPrime () {
1647         // Do we have cache?
1648         if (!isset($GLOBALS[__FUNCTION__])) {
1649                 // Determine it
1650                 $GLOBALS[__FUNCTION__] = getConfig('_PRIME');
1651         } // END - if
1652
1653         // Return cache
1654         return $GLOBALS[__FUNCTION__];
1655 }
1656
1657 // "Getter" for encrypt_seperator
1658 function getEncryptSeperator () {
1659         // Do we have cache?
1660         if (!isset($GLOBALS[__FUNCTION__])) {
1661                 // Determine it
1662                 $GLOBALS[__FUNCTION__] = getConfig('ENCRYPT_SEPERATOR');
1663         } // END - if
1664
1665         // Return cache
1666         return $GLOBALS[__FUNCTION__];
1667 }
1668
1669 // "Getter" for mysql_prefix
1670 function getMysqlPrefix () {
1671         // Do we have cache?
1672         if (!isset($GLOBALS[__FUNCTION__])) {
1673                 // Determine it
1674                 $GLOBALS[__FUNCTION__] = getConfig('_MYSQL_PREFIX');
1675         } // END - if
1676
1677         // Return cache
1678         return $GLOBALS[__FUNCTION__];
1679 }
1680
1681 // "Getter" for table_type
1682 function getTableType () {
1683         // Do we have cache?
1684         if (!isset($GLOBALS[__FUNCTION__])) {
1685                 // Determine it
1686                 $GLOBALS[__FUNCTION__] = getConfig('_TABLE_TYPE');
1687         } // END - if
1688
1689         // Return cache
1690         return $GLOBALS[__FUNCTION__];
1691 }
1692
1693 // "Getter" for salt_length
1694 function getSaltLength () {
1695         // Do we have cache?
1696         if (!isset($GLOBALS[__FUNCTION__])) {
1697                 // Determine it
1698                 $GLOBALS[__FUNCTION__] = getConfig('salt_length');
1699         } // END - if
1700
1701         // Return cache
1702         return $GLOBALS[__FUNCTION__];
1703 }
1704
1705 // "Getter" for output_mode
1706 function getOutputMode () {
1707         // Do we have cache?
1708         if (!isset($GLOBALS[__FUNCTION__])) {
1709                 // Determine it
1710                 $GLOBALS[__FUNCTION__] = getConfig('OUTPUT_MODE');
1711         } // END - if
1712
1713         // Return cache
1714         return $GLOBALS[__FUNCTION__];
1715 }
1716
1717 // "Getter" for full_version
1718 function getFullVersion () {
1719         // Do we have cache?
1720         if (!isset($GLOBALS[__FUNCTION__])) {
1721                 // Determine it
1722                 $GLOBALS[__FUNCTION__] = getConfig('FULL_VERSION');
1723         } // END - if
1724
1725         // Return cache
1726         return $GLOBALS[__FUNCTION__];
1727 }
1728
1729 // "Getter" for title
1730 function getTitle () {
1731         // Do we have cache?
1732         if (!isset($GLOBALS[__FUNCTION__])) {
1733                 // Determine it
1734                 $GLOBALS[__FUNCTION__] = getConfig('TITLE');
1735         } // END - if
1736
1737         // Return cache
1738         return $GLOBALS[__FUNCTION__];
1739 }
1740
1741 // "Getter" for curr_svn_revision
1742 function getCurrentRepositoryRevision () {
1743         // Do we have cache?
1744         if (!isset($GLOBALS[__FUNCTION__])) {
1745                 // Determine it
1746                 $GLOBALS[__FUNCTION__] = getConfig('CURRENT_REPOSITORY_REVISION');
1747         } // END - if
1748
1749         // Return cache
1750         return $GLOBALS[__FUNCTION__];
1751 }
1752
1753 // "Getter" for server_url
1754 function getServerUrl () {
1755         // Do we have cache?
1756         if (!isset($GLOBALS[__FUNCTION__])) {
1757                 // Determine it
1758                 $GLOBALS[__FUNCTION__] = getConfig('SERVER_URL');
1759         } // END - if
1760
1761         // Return cache
1762         return $GLOBALS[__FUNCTION__];
1763 }
1764
1765 // "Getter" for mt_word
1766 function getMtWord () {
1767         // Do we have cache?
1768         if (!isset($GLOBALS[__FUNCTION__])) {
1769                 // Determine it
1770                 $GLOBALS[__FUNCTION__] = getConfig('mt_word');
1771         } // END - if
1772
1773         // Return cache
1774         return $GLOBALS[__FUNCTION__];
1775 }
1776
1777 // "Getter" for mt_word2
1778 function getMtWord2 () {
1779         // Do we have cache?
1780         if (!isset($GLOBALS[__FUNCTION__])) {
1781                 // Determine it
1782                 $GLOBALS[__FUNCTION__] = getConfig('mt_word2');
1783         } // END - if
1784
1785         // Return cache
1786         return $GLOBALS[__FUNCTION__];
1787 }
1788
1789 // "Getter" for main_title
1790 function getMainTitle () {
1791         // Do we have cache?
1792         if (!isset($GLOBALS[__FUNCTION__])) {
1793                 // Determine it
1794                 $GLOBALS[__FUNCTION__] = getConfig('MAIN_TITLE');
1795         } // END - if
1796
1797         // Return cache
1798         return $GLOBALS[__FUNCTION__];
1799 }
1800
1801 // "Getter" for file_hash
1802 function getFileHash () {
1803         // Do we have cache?
1804         if (!isset($GLOBALS[__FUNCTION__])) {
1805                 // Determine it
1806                 $GLOBALS[__FUNCTION__] = getConfig('file_hash');
1807         } // END - if
1808
1809         // Return cache
1810         return $GLOBALS[__FUNCTION__];
1811 }
1812
1813 // "Getter" for pass_scramble
1814 function getPassScramble () {
1815         // Do we have cache?
1816         if (!isset($GLOBALS[__FUNCTION__])) {
1817                 // Determine it
1818                 $GLOBALS[__FUNCTION__] = getConfig('pass_scramble');
1819         } // END - if
1820
1821         // Return cache
1822         return $GLOBALS[__FUNCTION__];
1823 }
1824
1825 // "Getter" for ap_inactive_since
1826 function getApInactiveSince () {
1827         // Do we have cache?
1828         if (!isset($GLOBALS[__FUNCTION__])) {
1829                 // Determine it
1830                 $GLOBALS[__FUNCTION__] = getConfig('ap_inactive_since');
1831         } // END - if
1832
1833         // Return cache
1834         return $GLOBALS[__FUNCTION__];
1835 }
1836
1837 // "Getter" for user_min_confirmed
1838 function getUserMinConfirmed () {
1839         // Do we have cache?
1840         if (!isset($GLOBALS[__FUNCTION__])) {
1841                 // Determine it
1842                 $GLOBALS[__FUNCTION__] = getConfig('user_min_confirmed');
1843         } // END - if
1844
1845         // Return cache
1846         return $GLOBALS[__FUNCTION__];
1847 }
1848
1849 // "Getter" for auto_purge
1850 function getAutoPurge () {
1851         // Do we have cache?
1852         if (!isset($GLOBALS[__FUNCTION__])) {
1853                 // Determine it
1854                 $GLOBALS[__FUNCTION__] = getConfig('auto_purge');
1855         } // END - if
1856
1857         // Return cache
1858         return $GLOBALS[__FUNCTION__];
1859 }
1860
1861 // "Getter" for bonus_userid
1862 function getBonusUserid () {
1863         // Do we have cache?
1864         if (!isset($GLOBALS[__FUNCTION__])) {
1865                 // Determine it
1866                 $GLOBALS[__FUNCTION__] = getConfig('bonus_userid');
1867         } // END - if
1868
1869         // Return cache
1870         return $GLOBALS[__FUNCTION__];
1871 }
1872
1873 // "Getter" for ap_inactive_time
1874 function getApInactiveTime () {
1875         // Do we have cache?
1876         if (!isset($GLOBALS[__FUNCTION__])) {
1877                 // Determine it
1878                 $GLOBALS[__FUNCTION__] = getConfig('ap_inactive_time');
1879         } // END - if
1880
1881         // Return cache
1882         return $GLOBALS[__FUNCTION__];
1883 }
1884
1885 // "Getter" for ap_dm_timeout
1886 function getApDmTimeout () {
1887         // Do we have cache?
1888         if (!isset($GLOBALS[__FUNCTION__])) {
1889                 // Determine it
1890                 $GLOBALS[__FUNCTION__] = getConfig('ap_dm_timeout');
1891         } // END - if
1892
1893         // Return cache
1894         return $GLOBALS[__FUNCTION__];
1895 }
1896
1897 // "Getter" for ap_tasks_time
1898 function getApTasksTime () {
1899         // Do we have cache?
1900         if (!isset($GLOBALS[__FUNCTION__])) {
1901                 // Determine it
1902                 $GLOBALS[__FUNCTION__] = getConfig('ap_tasks_time');
1903         } // END - if
1904
1905         // Return cache
1906         return $GLOBALS[__FUNCTION__];
1907 }
1908
1909 // "Getter" for ap_unconfirmed_time
1910 function getApUnconfirmedTime () {
1911         // Do we have cache?
1912         if (!isset($GLOBALS[__FUNCTION__])) {
1913                 // Determine it
1914                 $GLOBALS[__FUNCTION__] = getConfig('ap_unconfirmed_time');
1915         } // END - if
1916
1917         // Return cache
1918         return $GLOBALS[__FUNCTION__];
1919 }
1920
1921 // "Getter" for points
1922 function getPoints () {
1923         // Do we have cache?
1924         if (!isset($GLOBALS[__FUNCTION__])) {
1925                 // Determine it
1926                 $GLOBALS[__FUNCTION__] = getConfig('POINTS');
1927         } // END - if
1928
1929         // Return cache
1930         return $GLOBALS[__FUNCTION__];
1931 }
1932
1933 // "Getter" for slogan
1934 function getSlogan () {
1935         // Do we have cache?
1936         if (!isset($GLOBALS[__FUNCTION__])) {
1937                 // Determine it
1938                 $GLOBALS[__FUNCTION__] = getConfig('SLOGAN');
1939         } // END - if
1940
1941         // Return cache
1942         return $GLOBALS[__FUNCTION__];
1943 }
1944
1945 // "Getter" for copy
1946 function getCopy () {
1947         // Do we have cache?
1948         if (!isset($GLOBALS[__FUNCTION__])) {
1949                 // Determine it
1950                 $GLOBALS[__FUNCTION__] = getConfig('COPY');
1951         } // END - if
1952
1953         // Return cache
1954         return $GLOBALS[__FUNCTION__];
1955 }
1956
1957 // "Getter" for webmaster
1958 function getWebmaster () {
1959         // Do we have cache?
1960         if (!isset($GLOBALS[__FUNCTION__])) {
1961                 // Determine it
1962                 $GLOBALS[__FUNCTION__] = getConfig('WEBMASTER');
1963         } // END - if
1964
1965         // Return cache
1966         return $GLOBALS[__FUNCTION__];
1967 }
1968
1969 // "Getter" for sql_count
1970 function getSqlCount () {
1971         // Do we have cache?
1972         if (!isset($GLOBALS[__FUNCTION__])) {
1973                 // Determine it
1974                 $GLOBALS[__FUNCTION__] = getConfig('sql_count');
1975         } // END - if
1976
1977         // Return cache
1978         return $GLOBALS[__FUNCTION__];
1979 }
1980
1981 // "Getter" for num_templates
1982 function getNumTemplates () {
1983         // Do we have cache?
1984         if (!isset($GLOBALS[__FUNCTION__])) {
1985                 // Determine it
1986                 $GLOBALS[__FUNCTION__] = getConfig('num_templates');
1987         } // END - if
1988
1989         // Return cache
1990         return $GLOBALS[__FUNCTION__];
1991 }
1992
1993 // "Getter" for dns_cache_timeout
1994 function getDnsCacheTimeout () {
1995         // Do we have cache?
1996         if (!isset($GLOBALS[__FUNCTION__])) {
1997                 // Determine it
1998                 $GLOBALS[__FUNCTION__] = getConfig('dns_cache_timeout');
1999         } // END - if
2000
2001         // Return cache
2002         return $GLOBALS[__FUNCTION__];
2003 }
2004
2005 // "Getter" for menu_blur_spacer
2006 function getMenuBlurSpacer () {
2007         // Do we have cache?
2008         if (!isset($GLOBALS[__FUNCTION__])) {
2009                 // Determine it
2010                 $GLOBALS[__FUNCTION__] = getConfig('menu_blur_spacer');
2011         } // END - if
2012
2013         // Return cache
2014         return $GLOBALS[__FUNCTION__];
2015 }
2016
2017 // "Getter" for points_register
2018 function getPointsRegister () {
2019         // Do we have cache?
2020         if (!isset($GLOBALS[__FUNCTION__])) {
2021                 // Determine it
2022                 $GLOBALS[__FUNCTION__] = getConfig('points_register');
2023         } // END - if
2024
2025         // Return cache
2026         return $GLOBALS[__FUNCTION__];
2027 }
2028
2029 // "Getter" for points_ref
2030 function getPointsRef () {
2031         // Do we have cache?
2032         if (!isset($GLOBALS[__FUNCTION__])) {
2033                 // Determine it
2034                 $GLOBALS[__FUNCTION__] = getConfig('points_ref');
2035         } // END - if
2036
2037         // Return cache
2038         return $GLOBALS[__FUNCTION__];
2039 }
2040
2041 // "Getter" for ref_payout
2042 function getRefPayout () {
2043         // Do we have cache?
2044         if (!isset($GLOBALS[__FUNCTION__])) {
2045                 // Determine it
2046                 $GLOBALS[__FUNCTION__] = getConfig('ref_payout');
2047         } // END - if
2048
2049         // Return cache
2050         return $GLOBALS[__FUNCTION__];
2051 }
2052
2053 // "Getter" for online_timeout
2054 function getOnlineTimeout () {
2055         // Do we have cache?
2056         if (!isset($GLOBALS[__FUNCTION__])) {
2057                 // Determine it
2058                 $GLOBALS[__FUNCTION__] = getConfig('online_timeout');
2059         } // END - if
2060
2061         // Return cache
2062         return $GLOBALS[__FUNCTION__];
2063 }
2064
2065 // "Getter" for index_home
2066 function getIndexHome () {
2067         // Do we have cache?
2068         if (!isset($GLOBALS[__FUNCTION__])) {
2069                 // Determine it
2070                 $GLOBALS[__FUNCTION__] = getConfig('index_home');
2071         } // END - if
2072
2073         // Return cache
2074         return $GLOBALS[__FUNCTION__];
2075 }
2076
2077 // "Getter" for one_day
2078 function getOneDay () {
2079         // Do we have cache?
2080         if (!isset($GLOBALS[__FUNCTION__])) {
2081                 // Determine it
2082                 $GLOBALS[__FUNCTION__] = getConfig('ONE_DAY');
2083         } // END - if
2084
2085         // Return cache
2086         return $GLOBALS[__FUNCTION__];
2087 }
2088
2089 // "Getter" for activate_xchange
2090 function getActivateXchange () {
2091         // Do we have cache?
2092         if (!isset($GLOBALS[__FUNCTION__])) {
2093                 // Determine it
2094                 $GLOBALS[__FUNCTION__] = getConfig('activate_xchange');
2095         } // END - if
2096
2097         // Return cache
2098         return $GLOBALS[__FUNCTION__];
2099 }
2100
2101 // "Getter" for img_type
2102 function getImgType () {
2103         // Do we have cache?
2104         if (!isset($GLOBALS[__FUNCTION__])) {
2105                 // Determine it
2106                 $GLOBALS[__FUNCTION__] = getConfig('img_type');
2107         } // END - if
2108
2109         // Return cache
2110         return $GLOBALS[__FUNCTION__];
2111 }
2112
2113 // "Getter" for code_length
2114 function getCodeLength () {
2115         // Do we have cache?
2116         if (!isset($GLOBALS[__FUNCTION__])) {
2117                 // Determine it
2118                 $GLOBALS[__FUNCTION__] = getConfig('code_length');
2119         } // END - if
2120
2121         // Return cache
2122         return $GLOBALS[__FUNCTION__];
2123 }
2124
2125 // "Getter" for least_cats
2126 function getLeastCats () {
2127         // Do we have cache?
2128         if (!isset($GLOBALS[__FUNCTION__])) {
2129                 // Determine it
2130                 $GLOBALS[__FUNCTION__] = getConfig('least_cats');
2131         } // END - if
2132
2133         // Return cache
2134         return $GLOBALS[__FUNCTION__];
2135 }
2136
2137 // "Getter" for pass_len
2138 function getPassLen () {
2139         // Do we have cache?
2140         if (!isset($GLOBALS[__FUNCTION__])) {
2141                 // Determine it
2142                 $GLOBALS[__FUNCTION__] = getConfig('pass_len');
2143         } // END - if
2144
2145         // Return cache
2146         return $GLOBALS[__FUNCTION__];
2147 }
2148
2149 // "Getter" for admin_menu
2150 function getAdminMenu () {
2151         // Do we have cache?
2152         if (!isset($GLOBALS[__FUNCTION__])) {
2153                 // Determine it
2154                 $GLOBALS[__FUNCTION__] = getConfig('admin_menu');
2155         } // END - if
2156
2157         // Return cache
2158         return $GLOBALS[__FUNCTION__];
2159 }
2160
2161 // "Getter" for last_month
2162 function getLastMonth () {
2163         // Do we have cache?
2164         if (!isset($GLOBALS[__FUNCTION__])) {
2165                 // Determine it
2166                 $GLOBALS[__FUNCTION__] = getConfig('last_month');
2167         } // END - if
2168
2169         // Return cache
2170         return $GLOBALS[__FUNCTION__];
2171 }
2172
2173 // "Getter" for max_send
2174 function getMaxSend () {
2175         // Do we have cache?
2176         if (!isset($GLOBALS[__FUNCTION__])) {
2177                 // Determine it
2178                 $GLOBALS[__FUNCTION__] = getConfig('max_send');
2179         } // END - if
2180
2181         // Return cache
2182         return $GLOBALS[__FUNCTION__];
2183 }
2184
2185 // "Getter" for mails_page
2186 function getMailsPage () {
2187         // Do we have cache?
2188         if (!isset($GLOBALS[__FUNCTION__])) {
2189                 // Determine it
2190                 $GLOBALS[__FUNCTION__] = getConfig('mails_page');
2191         } // END - if
2192
2193         // Return cache
2194         return $GLOBALS[__FUNCTION__];
2195 }
2196
2197 // "Getter" for rand_no
2198 function getRandNo () {
2199         // Do we have cache?
2200         if (!isset($GLOBALS[__FUNCTION__])) {
2201                 // Determine it
2202                 $GLOBALS[__FUNCTION__] = getConfig('rand_no');
2203         } // END - if
2204
2205         // Return cache
2206         return $GLOBALS[__FUNCTION__];
2207 }
2208
2209 // "Getter" for __DB_NAME
2210 function getDbName () {
2211         // Do we have cache?
2212         if (!isset($GLOBALS[__FUNCTION__])) {
2213                 // Determine it
2214                 $GLOBALS[__FUNCTION__] = getConfig('__DB_NAME');
2215         } // END - if
2216
2217         // Return cache
2218         return $GLOBALS[__FUNCTION__];
2219 }
2220
2221 // "Getter" for DOMAIN
2222 function getDomain () {
2223         // Do we have cache?
2224         if (!isset($GLOBALS[__FUNCTION__])) {
2225                 // Determine it
2226                 $GLOBALS[__FUNCTION__] = getConfig('DOMAIN');
2227         } // END - if
2228
2229         // Return cache
2230         return $GLOBALS[__FUNCTION__];
2231 }
2232
2233 // "Getter" for proxy_username
2234 function getProxyUsername () {
2235         // Do we have cache?
2236         if (!isset($GLOBALS[__FUNCTION__])) {
2237                 // Determine it
2238                 $GLOBALS[__FUNCTION__] = getConfig('proxy_username');
2239         } // END - if
2240
2241         // Return cache
2242         return $GLOBALS[__FUNCTION__];
2243 }
2244
2245 // "Getter" for proxy_password
2246 function getProxyPassword () {
2247         // Do we have cache?
2248         if (!isset($GLOBALS[__FUNCTION__])) {
2249                 // Determine it
2250                 $GLOBALS[__FUNCTION__] = getConfig('proxy_password');
2251         } // END - if
2252
2253         // Return cache
2254         return $GLOBALS[__FUNCTION__];
2255 }
2256
2257 // "Getter" for proxy_host
2258 function getProxyHost () {
2259         // Do we have cache?
2260         if (!isset($GLOBALS[__FUNCTION__])) {
2261                 // Determine it
2262                 $GLOBALS[__FUNCTION__] = getConfig('proxy_host');
2263         } // END - if
2264
2265         // Return cache
2266         return $GLOBALS[__FUNCTION__];
2267 }
2268
2269 // "Getter" for proxy_port
2270 function getProxyPort () {
2271         // Do we have cache?
2272         if (!isset($GLOBALS[__FUNCTION__])) {
2273                 // Determine it
2274                 $GLOBALS[__FUNCTION__] = getConfig('proxy_port');
2275         } // END - if
2276
2277         // Return cache
2278         return $GLOBALS[__FUNCTION__];
2279 }
2280
2281 // "Getter" for SMTP_HOSTNAME
2282 function getSmtpHostname () {
2283         // Do we have cache?
2284         if (!isset($GLOBALS[__FUNCTION__])) {
2285                 // Determine it
2286                 $GLOBALS[__FUNCTION__] = getConfig('SMTP_HOSTNAME');
2287         } // END - if
2288
2289         // Return cache
2290         return $GLOBALS[__FUNCTION__];
2291 }
2292
2293 // "Getter" for SMTP_USER
2294 function getSmtpUser () {
2295         // Do we have cache?
2296         if (!isset($GLOBALS[__FUNCTION__])) {
2297                 // Determine it
2298                 $GLOBALS[__FUNCTION__] = getConfig('SMTP_USER');
2299         } // END - if
2300
2301         // Return cache
2302         return $GLOBALS[__FUNCTION__];
2303 }
2304
2305 // "Getter" for SMTP_PASSWORD
2306 function getSmtpPassword () {
2307         // Do we have cache?
2308         if (!isset($GLOBALS[__FUNCTION__])) {
2309                 // Determine it
2310                 $GLOBALS[__FUNCTION__] = getConfig('SMTP_PASSWORD');
2311         } // END - if
2312
2313         // Return cache
2314         return $GLOBALS[__FUNCTION__];
2315 }
2316
2317 // "Getter" for points_word
2318 function getPointsWord () {
2319         // Do we have cache?
2320         if (!isset($GLOBALS[__FUNCTION__])) {
2321                 // Determine it
2322                 $GLOBALS[__FUNCTION__] = getConfig('points_word');
2323         } // END - if
2324
2325         // Return cache
2326         return $GLOBALS[__FUNCTION__];
2327 }
2328
2329 // "Getter" for profile_lock
2330 function getProfileLock () {
2331         // Do we have cache?
2332         if (!isset($GLOBALS[__FUNCTION__])) {
2333                 // Determine it
2334                 $GLOBALS[__FUNCTION__] = getConfig('profile_lock');
2335         } // END - if
2336
2337         // Return cache
2338         return $GLOBALS[__FUNCTION__];
2339 }
2340
2341 // "Getter" for url_tlock
2342 function getUrlTlock () {
2343         // Do we have cache?
2344         if (!isset($GLOBALS[__FUNCTION__])) {
2345                 // Determine it
2346                 $GLOBALS[__FUNCTION__] = getConfig('url_tlock');
2347         } // END - if
2348
2349         // Return cache
2350         return $GLOBALS[__FUNCTION__];
2351 }
2352
2353 // Checks wether proxy configuration is used
2354 function isProxyUsed () {
2355         // Do we have cache?
2356         if (!isset($GLOBALS[__FUNCTION__])) {
2357                 // Determine it
2358                 $GLOBALS[__FUNCTION__] = ((isExtensionInstalledAndNewer('sql_patches', '0.4.3')) && (getConfig('proxy_host') != '') && (getConfig('proxy_port') > 0));
2359         } // END - if
2360
2361         // Return cache
2362         return $GLOBALS[__FUNCTION__];
2363 }
2364
2365 // Checks wether POST data contains selections
2366 function ifPostContainsSelections ($element = 'sel') {
2367         // Do we have cache?
2368         if (!isset($GLOBALS[__FUNCTION__][$element])) {
2369                 // Determine it
2370                 $GLOBALS[__FUNCTION__][$element] = ((isPostRequestParameterSet($element)) && (countPostSelection($element) > 0));
2371         } // END - if
2372
2373         // Return cache
2374         return $GLOBALS[__FUNCTION__][$element];
2375 }
2376
2377 // Checks wether verbose_sql is Y and returns true/false if so
2378 function isVerboseSqlEnabled () {
2379         // Do we have cache?
2380         if (!isset($GLOBALS[__FUNCTION__])) {
2381                 // Determine it
2382                 $GLOBALS[__FUNCTION__] = ((isExtensionInstalledAndNewer('sql_patches', '0.0.7')) && (getConfig('verbose_sql') == 'Y'));
2383         } // END - if
2384
2385         // Return cache
2386         return $GLOBALS[__FUNCTION__];
2387 }
2388
2389 // "Getter" for total user points
2390 function getTotalPoints ($userid) {
2391         // Do we have cache?
2392         if (!isset($GLOBALS[__FUNCTION__][$userid])) {
2393                 // Init array for filter chain
2394                 $data = array(
2395                         'userid' => $userid,
2396                         'points' => 0
2397                 );
2398
2399                 // Run filter chain for getting more point values
2400                 $data = runFilterChain('get_total_points', $data);
2401
2402                 // Determine it
2403                 $GLOBALS[__FUNCTION__][$userid] = $data['points']  - countSumTotalData($userid, 'user_data', 'used_points');
2404         } // END - if
2405
2406         // Return cache
2407         return $GLOBALS[__FUNCTION__][$userid];
2408 }
2409
2410 // Wrapper to check if url_blacklist is enabled
2411 function isUrlBlacklistEnabled () {
2412         // Do we have cache?
2413         if (!isset($GLOBALS[__FUNCTION__])) {
2414                 // Determine it
2415                 $GLOBALS[__FUNCTION__] = (getConfig('url_blacklist') == 'Y');
2416         } // END - if
2417
2418         // Return cache
2419         return $GLOBALS[__FUNCTION__];
2420 }
2421
2422 // Checks wether direct payment is allowed in configuration
2423 function isDirectPaymentEnabled () {
2424         // Do we have cache?
2425         if (!isset($GLOBALS[__FUNCTION__])) {
2426                 // Determine it
2427                 $GLOBALS[__FUNCTION__] = (getConfig('allow_direct_pay') == 'Y');
2428         } // END - if
2429
2430         // Return cache
2431         return $GLOBALS[__FUNCTION__];
2432 }
2433
2434 // Wrapper to check if current task is for extension (not update)
2435 function isExtensionTask ($content) {
2436         // Do we have cache?
2437         if (!isset($GLOBALS[__FUNCTION__][$content['task_type'] . '_' . $content['infos']])) {
2438                 // Determine it
2439                 $GLOBALS[__FUNCTION__][$content['task_type'] . '_' . $content['infos']] = (($content['task_type'] == 'EXTENSION') && (isExtensionNameValid($content['infos'])) && (!isExtensionInstalled($content['infos'])));
2440         } // END - if
2441
2442         // Return cache
2443         return $GLOBALS[__FUNCTION__][$content['task_type'] . '_' . $content['infos']];
2444 }
2445
2446 // Wrapper to check if output mode is CSS
2447 function isCssOutputMode () {
2448         // Determine it
2449         return (getScriptOutputMode() == 1);
2450 }
2451
2452 // Wrapper to check if output mode is HTML
2453 function isHtmlOutputMode () {
2454         // Determine it
2455         return (getScriptOutputMode() == 0);
2456 }
2457
2458 // Wrapper to check if output mode is RAW
2459 function isRawOutputMode () {
2460         // Determine it
2461         return (getScriptOutputMode() == -1);
2462 }
2463
2464 // Wrapper to generate a user email link
2465 function generateWrappedUserEmailLink ($email) {
2466         // Just call the inner function
2467         return generateEmailLink($email, 'user_data');
2468 }
2469
2470 // Wrapper to check if user points are locked
2471 function ifUserPointsLocked ($userid) {
2472         // Do we have cache?
2473         if (!isset($GLOBALS[__FUNCTION__][$userid])) {
2474                 // Determine it
2475                 $GLOBALS[__FUNCTION__][$userid] = ((getFetchedUserData('userid', $userid, 'ref_payout') > 0) && (!isDirectPaymentEnabled()));
2476         } // END - if
2477
2478         // Return cache
2479         return $GLOBALS[__FUNCTION__][$userid];
2480 }
2481
2482 // Appends a line to an existing file or creates it instantly with given content.
2483 // This function does always add a new-line character to every line.
2484 function appendLineToFile ($file, $line) {
2485         $fp = fopen($file, 'a') or debug_report_bug(__FUNCTION__, __LINE__, 'Cannot write to file ' . basename($file) . '!');
2486         fwrite($fp, $line . "\n");
2487         fclose($fp);
2488 }
2489
2490 // Wrapper for changeDataInFile() but with full path added
2491 function changeDataInInclude ($FQFN, $comment, $prefix, $suffix, $DATA, $seek=0) {
2492         // Add full path
2493         $FQFN = getPath() . $FQFN;
2494
2495         // Call inner function
2496         return changeDataInFile($FQFN, $comment, $prefix, $suffix, $DATA, $seek);
2497 }
2498
2499 // Wrapper for changing entries in config-local.php
2500 function changeDataInLocalConfigurationFile ($comment, $prefix, $suffix, $DATA, $seek = 0) {
2501         // Call the inner function
2502         return changeDataInInclude(getCachePath() . 'config-local.php', $comment, $prefix, $suffix, $DATA, $seek);
2503 }
2504
2505 // Shortens ucfirst(strtolower()) calls
2506 function firstCharUpperCase ($str) {
2507         return ucfirst(strtolower($str));
2508 }
2509
2510 // Shortens calls with configuration entry as first argument (the second will become obsolete in the future)
2511 function createConfigurationTimeSelections ($configEntry, $stamps, $align = 'center') {
2512         // Get the configuration entry
2513         $configValue = getConfig($configEntry);
2514
2515         // Call inner method
2516         return createTimeSelections($configValue, $configEntry, $stamps, $align);
2517 }
2518
2519 // Shortens converting of German comma to Computer's version in POST data
2520 function convertCommaToDotInPostData ($postEntry) {
2521         // Read and convert given entry
2522         $postValue = convertCommaToDot(postRequestParameter($postEntry));
2523
2524         // ... and set it again
2525         setPostRequestParameter($postEntry, $postValue);
2526 }
2527
2528 // Converts German commas to Computer's version in all entries
2529 function convertCommaToDotInPostDataArray ($postEntries) {
2530         // Replace german decimal comma with computer decimal dot
2531         foreach ($postEntries as $entry) {
2532                 // Is the entry there?
2533                 if (isPostRequestParameterSet($entry)) {
2534                         // Then convert it
2535                         convertCommaToDotInPostData($entry);
2536                 } // END - if
2537         } // END - foreach
2538 }
2539
2540 // Getter for 'check_double_email'
2541 function getCheckDoubleEmail () {
2542         // Is the cache entry set?
2543         if (!isset($GLOBALS[__FUNCTION__])) {
2544                 // No, so determine it
2545                 $GLOBALS[__FUNCTION__] = getConfig('check_double_email');
2546         } // END - if
2547
2548         // Return cached entry
2549         return $GLOBALS[__FUNCTION__];
2550 }
2551
2552 // Checks wether 'check_double_email' is "YES"
2553 function isCheckDoubleEmailEnabled () {
2554         // Is the cache entry set?
2555         if (!isset($GLOBALS[__FUNCTION__])) {
2556                 // No, so determine it
2557                 $GLOBALS[__FUNCTION__] = (getCheckDoubleEmail() == 'Y');
2558         } // END - if
2559
2560         // Return cached entry
2561         return $GLOBALS[__FUNCTION__];
2562 }
2563
2564 // [EOF]
2565 ?>