Caching of XML/email templates finished:
[mailer.git] / inc / template-functions.php
index d96bfb73958aba1460208f8337006826b333912b..9c7192ab1a5d40132d25ab1f45c122e2a11e93cf 100644 (file)
  * $Date::                                                            $ *
  * $Tag:: 0.2.1-FINAL                                                 $ *
  * $Author::                                                          $ *
- * Needs to be in all Files and every File needs "svn propset           *
- * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
- * For more information visit: http://www.mxchange.org                  *
+ * Copyright (c) 2009 - 2012 by Mailer Developer Team                   *
+ * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
  * it under the terms of the GNU General Public License as published by *
@@ -52,7 +50,7 @@ function enableTemplateHtml ($enable = true) {
        $GLOBALS['is_template_html'] = (bool) $enable;
 }
 
-// Checks wether the template is HTML or not by previously set flag
+// Checks whether the template is HTML or not by previously set flag
 // Default: true
 function isTemplateHtml () {
        // Is the output_mode other than 0 (HTML), then no comments are enabled
@@ -72,11 +70,8 @@ function debugOutput ($message) {
 
 // "Fixes" an empty string into three dashes (use for templates)
 function fixEmptyContentToDashes ($str) {
-       // Trim the string
-       $str = trim($str);
-
-       // Is the string empty?
-       if (empty($str)) $str = '---';
+       // Call inner function
+       $str = fixNullEmptyToDashes($str, 3);
 
        // Return string
        return $str;
@@ -100,51 +95,62 @@ function getColorSwitchCode ($template) {
 // Output HTML code directly or 'render' it. You addionally switch the new-line character off
 function outputHtml ($htmlCode, $newLine = true) {
        // Init output
-       if (!isset($GLOBALS['output'])) {
-               $GLOBALS['output'] = '';
+       if (!isset($GLOBALS['__output'])) {
+               $GLOBALS['__output'] = '';
        } // END - if
 
-       // Do we have HTML-Code here?
+       //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'getOutputMode()=' . getOutputMode() . ',htmlCode(length)=' . strlen($htmlCode) . ',output(length)=' . strlen($GLOBALS['__output']));
+       // Is there HTML-Code here?
        if (!empty($htmlCode)) {
                // Yes, so we handle it as you have configured
                switch (getOutputMode()) {
                        case 'render':
-                               // That's why you don't need any \n at the end of your HTML code... :-)
+                               // But if PHP is caching, then we don't need to do that
                                if (getPhpCaching() == 'on') {
                                        // Output into PHP's internal buffer
                                        outputRawCode($htmlCode);
 
                                        // That's why you don't need any \n at the end of your HTML code... :-)
-                                       if ($newLine === true) print("\n");
+                                       if ($newLine === true) {
+                                               outputRawCode(chr(10));
+                                       } // END - if
                                } else {
                                        // Render mode for old or lame servers...
-                                       $GLOBALS['output'] .= $htmlCode;
+                                       $GLOBALS['__output'] .= $htmlCode;
 
                                        // That's why you don't need any \n at the end of your HTML code... :-)
-                                       if ($newLine === true) $GLOBALS['output'] .= "\n";
+                                       if ($newLine === true) {
+                                               $GLOBALS['__output'] .= chr(10);
+                                       } // END - if
                                }
                                break;
 
                        case 'direct':
-                               // If we are switching from render to direct output rendered code
-                               if ((!empty($GLOBALS['output'])) && (getPhpCaching() != 'on')) { outputRawCode($GLOBALS['output']); $GLOBALS['output'] = ''; }
+                               // If we are switching from 'render' to 'direct' mode, all data in '__output' must be flushed and cleared
+                               if ((!empty($GLOBALS['__output'])) && (getPhpCaching() != 'on')) {
+                                       outputRawCode($GLOBALS['__output']);
+                                       $GLOBALS['__output'] = '';
+                               } // END - if
 
                                // The same as above... ^
                                outputRawCode($htmlCode);
-                               if ($newLine === true) print("\n");
+                               if ($newLine === true) {
+                                       outputRawCode(chr(10));
+                               } // END - if
                                break;
 
                        default:
                                // Huh, something goes wrong or maybe you have edited config.php ???
-                               debug_report_bug(__FUNCTION__, __LINE__, '<strong>{--FATAL_ERROR--}:</strong> {--NO_RENDER_DIRECT--}');
+                               reportBug(__FUNCTION__, __LINE__, '<strong>{--FATAL_ERROR--}:</strong> {--NO_RENDER_DIRECT--}');
                                break;
                } // END - switch
-       } elseif ((getPhpCaching() == 'on') && ((!isset($GLOBALS['header'])) || (count($GLOBALS['header']) == 0))) {
+       } elseif ((getPhpCaching() == 'on') && ((!isset($GLOBALS['http_header'])) || (count($GLOBALS['http_header']) == 0)) && (!isRawOutputMode())) {
+               //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'getPhpCaching()=' . getPhpCaching() . ',isset(http_header)=' . intval(isset($GLOBALS['http_header'])) . ',getScriptOutputMode()=' . getScriptOutputMode() . '');
                // Output cached HTML code
-               $GLOBALS['output'] = ob_get_contents();
+               $GLOBALS['__output'] = ob_get_contents();
 
                // Clear output buffer for later output if output is found
-               if (!empty($GLOBALS['output'])) {
+               if (!empty($GLOBALS['__output'])) {
                        clearOutputBuffer();
                } // END - if
 
@@ -155,8 +161,8 @@ function outputHtml ($htmlCode, $newLine = true) {
                compileFinalOutput();
 
                // Output code here, DO NOT REMOVE! ;-)
-               outputRawCode($GLOBALS['output']);
-       } elseif ((getOutputMode() == 'render') && (!empty($GLOBALS['output']))) {
+               outputRawCode($GLOBALS['__output']);
+       } elseif ((getOutputMode() == 'render') && (!empty($GLOBALS['__output'])) && (!isRawOutputMode())) {
                // Send all HTTP headers
                sendHttpHeaders();
 
@@ -164,49 +170,51 @@ function outputHtml ($htmlCode, $newLine = true) {
                compileFinalOutput();
 
                // Output code here, DO NOT REMOVE! ;-)
-               outputRawCode($GLOBALS['output']);
+               outputRawCode($GLOBALS['__output']);
        } else {
                // And flush all headers
-               flushHeaders();
+               flushHttpHeaders();
        }
 }
 
 // Compiles the final output
 function compileFinalOutput () {
+       //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, '__output(length)=' . strlen($GLOBALS['__output']) . ',getScriptOutputMode()=' . getScriptOutputMode() . ' - ENTERED!');
        // Add page header and footer
        addPageHeaderFooter();
+       //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, '__output(length)=' . strlen($GLOBALS['__output']) . ' - After addPageHeaderFooter() call.');
 
        // Do the final compilation
-       $GLOBALS['output'] = doFinalCompilation($GLOBALS['output']);
+       $GLOBALS['__output'] = compileUriCode(doFinalCompilation($GLOBALS['__output']));
 
        // Extension 'rewrite' installed?
        if ((isExtensionActive('rewrite')) && (!isCssOutputMode())) {
-               $GLOBALS['output'] = rewriteLinksInCode($GLOBALS['output']);
+               $GLOBALS['__output'] = rewriteLinksInCode($GLOBALS['__output']);
        } // END - if
 
        // Compress it?
        /**
         * @TODO On some pages this is buggy
-       if (!empty($_SERVER['HTTP_ACCEPT_ENCODING']) && (strpos('gzip', $_SERVER['HTTP_ACCEPT_ENCODING']) !== null)) {
+       if (!empty($_SERVER['HTTP_ACCEPT_ENCODING']) && (isInStringIgnoreCase('gzip', $_SERVER['HTTP_ACCEPT_ENCODING']))) {
                // Compress it for HTTP gzip
-               $GLOBALS['output'] = gzencode($GLOBALS['output'], 9);
+               $GLOBALS['__output'] = gzencode($GLOBALS['__output'], 9);
 
                // Add header
-               sendHeader('Content-Encoding: gzip');
-       } elseif (!empty($_SERVER['HTTP_ACCEPT_ENCODING']) && (strpos('deflate', $_SERVER['HTTP_ACCEPT_ENCODING']) !== null)) {
+               addHttpHeader('Content-Encoding: gzip');
+       } elseif (!empty($_SERVER['HTTP_ACCEPT_ENCODING']) && (isInStringIgnoreCase('deflate', $_SERVER['HTTP_ACCEPT_ENCODING']))) {
                // Compress it for HTTP deflate
-               $GLOBALS['output'] = gzcompress($GLOBALS['output'], 9);
+               $GLOBALS['__output'] = gzcompress($GLOBALS['__output'], 9);
 
                // Add header
-               sendHeader('Content-Encoding: deflate');
+               addHttpHeader('Content-Encoding: deflate');
        }
        */
 
        // Add final length
-       sendHeader('Content-Length: ' . strlen($GLOBALS['output']));
+       addHttpHeader('Content-Length: ' . strlen($GLOBALS['__output']));
 
        // Flush all headers
-       flushHeaders();
+       flushHttpHeaders();
 }
 
 // Main compilation loop
@@ -215,10 +223,10 @@ function doFinalCompilation ($code, $insertComments = true, $enableCodes = true)
        enableTemplateHtml($insertComments);
 
        // Init counter
-       $cnt = 0;
+       $count = 0;
 
        // Compile all out
-       while (((strpos($code, '{--') !== false) || (strpos($code, '{DQUOTE}') !== false) || (strpos($code, '{?') !== false) || (strpos($code, '{%') !== false)) && ($cnt < 5)) {
+       while (((isInString('{--', $code)) || (isInString('{DQUOTE}', $code)) || (isInString('{?', $code)) || (isInString('{%', $code) !== false)) && ($count < 7)) {
                // Init common variables
                $content = array();
                $newContent = '';
@@ -234,16 +242,28 @@ function doFinalCompilation ($code, $insertComments = true, $enableCodes = true)
                // Was that eval okay?
                if (empty($newContent)) {
                        // Something went wrong!
-                       debug_report_bug(__FUNCTION__, __LINE__, 'Evaluation error:<pre>' . linenumberCode($eval) . '</pre>', false);
+                       reportBug(__FUNCTION__, __LINE__, 'Evaluation error:<pre>' . linenumberCode($eval) . '</pre>', false);
                } // END - if
 
                // Use it again
                $code = $newContent;
 
+               // Compile the final code if insertComments is true
+               if ($insertComments == true) {
+                       // ... because SQL queries shall keep OPEN_CONFIG and such in
+                       $code = compileRawCode($code);
+               } // END - if
+
                // Count round
-               $cnt++;
+               $count++;
        } // END - while
 
+       // Add debugging data in HTML code, if mode is enabled
+       if ((isDebugModeEnabled()) && ($insertComments === true) && ((isHtmlOutputMode()) || (isCssOutputMode()))) {
+               // Add loop count
+               $code .= '<!-- Total compilation loop=' . $count . ' //-->';
+       } // END - if
+
        // Return the compiled code
        return $code;
 }
@@ -251,7 +271,7 @@ function doFinalCompilation ($code, $insertComments = true, $enableCodes = true)
 // Output the raw HTML code
 function outputRawCode ($htmlCode) {
        // Output stripped HTML code to avoid broken JavaScript code, etc.
-       print(str_replace('{BACK}', "\\", $htmlCode));
+       print(str_replace('{BACK}', chr(92), $htmlCode));
 
        // Flush the output if only getPhpCaching() is not 'on'
        if (getPhpCaching() != 'on') {
@@ -261,31 +281,37 @@ function outputRawCode ($htmlCode) {
 }
 
 // Load a template file and return it's content (only it's name; do not use ' or ")
-function loadTemplate ($template, $return = false, $content = array()) {
-       // @TODO Remove this sanity-check if all is fine
-       if (!is_bool($return)) debug_report_bug(__FUNCTION__, __LINE__, 'return is not bool (' . gettype($return) . ')');
+function loadTemplate ($template, $return = false, $content = array(), $compileCode = true) {
+       // @TODO Remove these sanity checks if all is fine
+       if (!is_bool($return)) {
+               // $return has to be boolean
+               reportBug(__FUNCTION__, __LINE__, 'return[] is not bool (' . gettype($return) . ')');
+       } elseif (!is_string($template)) {
+               // $template has to be string
+               reportBug(__FUNCTION__, __LINE__, 'template[] is not string (' . gettype($template) . ')');
+       }
+
+       // Init returned content
+       $ret = '';
 
        // Set current template
        $GLOBALS['current_template'] = $template;
 
-       // Do we have cache?
-       if ((isDebuggingTemplateCache() === false) && (isTemplateCached($template))) {
+       // Is there cache?
+       if ((!isDebuggingTemplateCache()) && (isTemplateCached('html', $template))) {
                // Evaluate the cache
-               eval(readTemplateCache($template));
-       } elseif (!isset($GLOBALS['template_eval'][$template])) {
+               eval(readTemplateCache('html', $template));
+       } elseif (!isset($GLOBALS['template_eval']['html'][$template])) {
                // Make all template names lowercase
                $template = strtolower($template);
 
-               // Init some data
-               $ret = '';
-               if (empty($GLOBALS['refid'])) $GLOBALS['refid'] = '0';
-
                // Base directory
                $basePath = sprintf("%stemplates/%s/html/", getPath(), getLanguage());
-               $extraPath = detectExtraTemplatePath($template);;
+               $extraPath = detectExtraTemplatePath('html', $template);
 
                // Generate FQFN
                $FQFN = $basePath . $extraPath . $template . '.tpl';
+               //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Template ' . $template . ' is solved to FQFN=' . $FQFN);
 
                // Does the special template exists?
                if (!isFileReadable($FQFN)) {
@@ -299,55 +325,60 @@ function loadTemplate ($template, $return = false, $content = array()) {
                        incrementConfigEntry('num_templates');
 
                        // The local file does exists so we load it. :)
-                       $GLOBALS['tpl_content'] = readFromFile($FQFN);
+                       $GLOBALS['template_content']['html'][$template] = readFromFile($FQFN);
 
-                       // Do we have to compile the code?
-                       $ret = '';
-                       if ((strpos($GLOBALS['tpl_content'], '$') !== false) || (strpos($GLOBALS['tpl_content'], '{--') !== false) || (strpos($GLOBALS['tpl_content'], '{?') !== false) || (strpos($GLOBALS['tpl_content'], '{%') !== false)) {
+                       // Is there to compile the code?
+                       if ((isInString('$', $GLOBALS['template_content']['html'][$template])) || (isInString('{--', $GLOBALS['template_content']['html'][$template])) || (isInString('{?', $GLOBALS['template_content']['html'][$template])) || (isInString('{%', $GLOBALS['template_content']['html'][$template]))) {
                                // Normal HTML output?
-                               if (isHtmlOutputMode()) {
+                               if ((isHtmlOutputMode()) && (substr($template, 0, 3) != 'js_')) {
                                        // Add surrounding HTML comments to help finding bugs faster
-                                       $ret = '<!-- Template ' . $template . ' - Start //-->' . $GLOBALS['tpl_content'] . '<!-- Template ' . $template . ' - End //-->';
+                                       $code = '<!-- Template ' . $template . ' - Start //-->' . $GLOBALS['template_content']['html'][$template] . '<!-- Template ' . $template . ' - End //-->';
 
                                        // Prepare eval() command
-                                       $GLOBALS['template_eval'][$template] = '$ret = "' . getColorSwitchCode($template) . compileCode(escapeQuotes($ret)) . '";';
+                                       $GLOBALS['template_eval']['html'][$template] = '$ret = "' . getColorSwitchCode($template) . compileCode(escapeQuotes($code), false, true, true, $compileCode) . '";';
                                } elseif (substr($template, 0, 3) == 'js_') {
-                                       // JavaScripts don't like entities and timings
-                                       $GLOBALS['template_eval'][$template] = '$ret = decodeEntities("' . compileRawCode(escapeJavaScriptQuotes($GLOBALS['tpl_content'])) . '");';
+                                       // JavaScripts don't like entities, dollar signs and timings
+                                       $GLOBALS['template_eval']['html'][$template] = '$ret = decodeEntities("' . compileRawCode(escapeJavaScriptQuotes($GLOBALS['template_content']['html'][$template]), false, true, true, $compileCode) . '");';
                                } else {
                                        // Prepare eval() command, other output doesn't like entities, maybe
-                                       $GLOBALS['template_eval'][$template] = '$ret = decodeEntities("' . compileRawCode(escapeQuotes($GLOBALS['tpl_content'])) . '");';
+                                       $GLOBALS['template_eval']['html'][$template] = '$ret = decodeEntities("' . compileRawCode(escapeQuotes($GLOBALS['template_content']['html'][$template]), false, true, true, $compileCode) . '");';
                                }
-                       } else {
+                       } elseif (isHtmlOutputMode()) {
                                // Add surrounding HTML comments to help finding bugs faster
-                               $ret = '<!-- Template ' . $template . ' - Start //-->' . $GLOBALS['tpl_content'] . '<!-- Template ' . $template . ' - End //-->';
-                               $GLOBALS['template_eval'][$template] = '$ret = "' . getColorSwitchCode($template) . compileRawCode(escapeQuotes($ret)) . '";';
+                               $ret = '<!-- Template ' . $template . ' - Start //-->' . $GLOBALS['template_content']['html'][$template] . '<!-- Template ' . $template . ' - End //-->';
+                               $GLOBALS['template_eval']['html'][$template] = '$ret = "' . getColorSwitchCode($template) . compileRawCode(escapeQuotes($ret), false, true, true, $compileCode) . '";';
+                       } else {
+                               // JavaScript again
+                               $GLOBALS['template_eval']['html'][$template] = '$ret = decodeEntities("' . compileRawCode(escapeJavaScriptQuotes($GLOBALS['template_content']['html'][$template]), false, true, true, $compileCode) . '");';
                        } // END - if
                } elseif ((isAdmin()) || ((isInstalling()) && (!isInstalled()))) {
                        // Only admins shall see this warning or when installation mode is active
                        $ret = '<div class="para">
-       <span class="guest_failed">{--TEMPLATE_404--}</span>
+       {--TEMPLATE_404--}
 </div>
 <div class="para">
        (' . $template . ')
 </div>
 <div class="para">
-       {--TEMPLATE_CONTENT--}
+       {--TEMPLATE_CONTENT--}:
        <pre>' . print_r($content, true) . '</pre>
 </div>';
                } else {
                        // No file!
-                       $GLOBALS['template_eval'][$template] = '404';
+                       $GLOBALS['template_eval']['html'][$template] = '404';
                }
        }
 
        // Code set?
-       if ((isset($GLOBALS['template_eval'][$template])) && ($GLOBALS['template_eval'][$template] != '404')) {
+       if ((isset($GLOBALS['template_eval']['html'][$template])) && ($GLOBALS['template_eval']['html'][$template] != '404')) {
                // Eval the code
-               eval($GLOBALS['template_eval'][$template]);
+               //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'template=' . $template . ' - BEFORE EVAL');
+               ///* DEBUG: */ print('<pre>'.htmlentities($GLOBALS['template_eval']['html'][$template]).'</pre>');
+               eval($GLOBALS['template_eval']['html'][$template]);
+               //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'template=' . $template . ' - AFTER EVAL');
        } // END - if
 
-       // Do we have some content to output or return?
+       // Is there some content to output or return?
        if (!empty($ret)) {
                // Not empty so let's put it out! ;)
                if ($return === true) {
@@ -364,12 +395,12 @@ function loadTemplate ($template, $return = false, $content = array()) {
 }
 
 // Detects the extra template path from given template name
-function detectExtraTemplatePath ($template) {
+function detectExtraTemplatePath ($prefix, $template) {
        // Default is empty
        $extraPath = '';
 
-       // Do we have cache?
-       if (!isset($GLOBALS['extra_path'][$template])) {
+       // Is there cache?
+       if (!isset($GLOBALS['extra_path'][$prefix][$template])) {
                // Check for admin/guest/member/etc. templates
                if (substr($template, 0, 6) == 'admin_') {
                        // Admin template found
@@ -410,20 +441,21 @@ function detectExtraTemplatePath ($template) {
                }
 
                // Store it in cache
-               $GLOBALS['extra_path'][$template] = $extraPath;
+               $GLOBALS['extra_path'][$prefix][$template] = $extraPath;
        } // END - if
 
        // Return result
-       return $GLOBALS['extra_path'][$template];
+       return $GLOBALS['extra_path'][$prefix][$template];
 }
 
 // Loads an email template and compiles it
-function loadEmailTemplate ($template, $content = array(), $userid = '0') {
-       global $DATA;
-
+function loadEmailTemplate ($template, $content = array(), $userid = NULL, $loadUserData = true) {
        // Make sure all template names are lowercase!
        $template = strtolower($template);
 
+       // Set current template
+       $GLOBALS['current_template'] = $template;
+
        // Is content an array?
        if (is_array($content)) {
                // Add expiration to array
@@ -432,90 +464,89 @@ function loadEmailTemplate ($template, $content = array(), $userid = '0') {
                        $content['expiration'] = '{--MAIL_WILL_NEVER_EXPIRE--}';
                } elseif (isConfigEntrySet('auto_purge')) {
                        // Create nice date string
-                       $content['expiration'] = createFancyTime(getAutoPurge());
+                       $content['expiration'] = '{%config,createFancyTime=auto_purge%}';
                } else {
                        // Missing entry
                        $content['expiration'] = '{--MAIL_NO_CONFIG_AUTO_PURGE--}';
                }
        } // END - if
 
-       // Load user's data
-       //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "UID={$userid},template={$template},content[]=".gettype($content));
-       if ((isValidUserId($userid)) && (is_array($content))) {
-               // If nickname extension is installed, fetch nickname as well
-               if ((isExtensionActive('nickname')) && (isNicknameUsed($userid))) {
-                       //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "NICKNAME!<br />");
-                       // Load by nickname
-                       fetchUserData($userid, 'nickname');
-               } else {
-                       //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "NO-NICK!<br />");
-                       /// Load by userid
-                       fetchUserData($userid);
-               }
-
-               // Merge data if valid
-               //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "content()=".count($content)." - PRE<br />");
-               if (isUserDataValid()) {
-                       $content = merge_array($content, getUserDataArray());
-               } // END - if
-               //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "content()=".count($content)." - AFTER<br />");
-       } // END - if
+       // Is there cache?
+       if ((!isDebuggingTemplateCache()) && (isTemplateCached('email', $template))) {
+               // Evaluate the cache
+               eval(readTemplateCache('email', $template));
+       } elseif (!isset($GLOBALS['template_eval']['email'][$template])) {
+               // Base directory
+               $basePath = sprintf("%stemplates/%s/emails/", getPath(), getLanguage());
 
-       // Base directory
-       $basePath = sprintf("%stemplates/%s/emails/", getPath(), getLanguage());
+               // Detect extra path
+               $extraPath = detectExtraTemplatePath('email', $template);
 
-       // Detect extra path
-       $extraPath = detectExtraTemplatePath($template);
+               // Generate full FQFN
+               $FQFN = $basePath . $extraPath . $template . '.tpl';
 
-       // Generate full FQFN
-       $FQFN = $basePath . $extraPath . $template . '.tpl';
+               // Does the special template exists?
+               if (!isFileReadable($FQFN)) {
+                       // Reset to default template
+                       $FQFN = $basePath . $template . '.tpl';
+               } // END - if
 
-       // Does the special template exists?
-       if (!isFileReadable($FQFN)) {
-               // Reset to default template
-               $FQFN = $basePath . $template . '.tpl';
-       } // END - if
+               // Now does the final template exists?
+               $newContent = '';
+               if (isFileReadable($FQFN)) {
+                       // The local file does exists so we load it. :)
+                       $GLOBALS['template_content']['email'][$template] = readFromFile($FQFN);
 
-       // Now does the final template exists?
-       $newContent = '';
-       if (isFileReadable($FQFN)) {
-               // The local file does exists so we load it. :)
-               $GLOBALS['tpl_content'] = readFromFile($FQFN);
-
-               // Run code
-               $GLOBALS['tpl_content'] = '$newContent = decodeEntities("' . compileRawCode(escapeQuotes($GLOBALS['tpl_content'])) . '");';
-               eval($GLOBALS['tpl_content']);
-       } elseif (!empty($template)) {
-               // Template file not found!
-               $newContent = '<div class="para">
+                       // Run code
+                       $GLOBALS['template_eval']['email'][$template] = '$newContent = decodeEntities("' . compileRawCode(escapeQuotes($GLOBALS['template_content']['email'][$template])) . '");';
+               } elseif (!empty($template)) {
+                       // Template file not found
+                       $newContent = '<div class="para">
        {--TEMPLATE_404--}: ' . $template . '
 </div>
 <div class="para">
-       {--TEMPLATE_CONTENT--}
+       {--TEMPLATE_CONTENT--}:
        <pre>' . print_r($content, true) . '</pre>
-       {--TEMPLATE_DATA--}
-       <pre>' . print_r($DATA, true) . '</pre>
 </div>';
 
-               // Debug mode not active? Then remove the HTML tags
-               if (!isDebugModeEnabled()) $newContent = secureString($newContent);
-       } else {
-               // No template name supplied!
-               $newContent = '{--NO_TEMPLATE_SUPPLIED--}';
+                       // Don't cache this, as there is no template to cache
+                       $GLOBALS['template_eval']['email'][$template] = '404';
+
+                       // Debug mode not active? Then remove the HTML tags
+                       if (!isDebugModeEnabled()) {
+                               // Remove HTML tags
+                               $newContent = secureString($newContent);
+                       } // END - if
+               } else {
+                       // No template name supplied!
+                       $newContent = '{--NO_TEMPLATE_SUPPLIED--}';
+                       $GLOBALS['template_eval']['email'][$template] = '404';
+               }
        }
 
-       // Is there some content?
+       // Is there something to eval?
+       if ((isset($GLOBALS['template_eval']['email'][$template])) && ($GLOBALS['template_eval']['email'][$template] != '404')) {
+               // Eval the code
+               //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'template=' . $template . ' - BEFORE EVAL');
+               ///* DEBUG: */ print('<pre>'.htmlentities($GLOBALS['template_eval']['email'][$template]).'</pre>');
+               eval($GLOBALS['template_eval']['email'][$template]);
+               //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'template=' . $template . ' - AFTER EVAL');
+       } // END - if
+
+       // Are there some content?
        if (empty($newContent)) {
                // Compiling failed
-               $newContent = "Compiler error for template " . $template . " !\nUncompiled content:\n" . $GLOBALS['tpl_content'];
+               $newContent = "Compiler error for template " . $template . " !\nUncompiled content:\n" . $GLOBALS['template_content']['email'][$template];
 
                // Add last error if the required function exists
-               if (function_exists('error_get_last')) $newContent .= "\n--------------------------------------\nDebug:\n".print_r(error_get_last(), true)."--------------------------------------\nPlease don't alter these informations!\nThanx.";
+               if (function_exists('error_get_last')) {
+                       // Add last error and some lines for better overview
+                       $newContent .= "\n--------------------------------------\nDebug:\n" . print_r(error_get_last(), true) . "--------------------------------------\nPlease don't alter these informations!\nThanx.";
+               } // END - if
        } // END - if
 
        // Remove content and data
        unset($content);
-       unset($DATA);
 
        // Return content
        return $newContent;
@@ -523,32 +554,42 @@ function loadEmailTemplate ($template, $content = array(), $userid = '0') {
 
 // "Getter" for menu CSS classes, mainly used in templates
 function getMenuCssClasses ($data) {
-       // $data needs to be converted into an array
-       $content = explode('|', $data);
+       //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'data=' . $data);
+
+       // Is there cache?
+       if (!isset($GLOBALS[__FUNCTION__][$data])) {
+               // $data needs to be converted into an array
+               $content = explode('|', $data);
 
-       // Non-existent index 2 will happen in menu blocks
-       if (!isset($content[2])) $content[2] = '';
+               // Non-existent index 2 will happen in menu blocks
+               if (!isset($content[2])) {
+                       $content[2] = '';
+               } // END - if
 
-       // Re-construct the array: 0=visible,1=locked,2=prefix
-       $content['visible'] = $content[0];
-       $content['locked']  = $content[1];
+               // Re-construct the array: 0=visible,1=locked,2=prefix
+               $content['visible'] = $content[0];
+               $content['locked']  = $content[1];
 
-       // Call our "translator" function
-       $content = translateMenuVisibleLocked($content, $content[2]);
+               // Call our "translator" function
+               $content = translateMenuVisibleLocked($content, $content[2]);
 
-       // Return CSS classes
-       return ($content['visible_css'] . ' ' . $content['locked_css']);
+               // Set it in cache
+               $GLOBALS[__FUNCTION__][$data] = ($content['visible_css'] . ' ' . $content['locked_css']);
+       } // END - if
+
+       // Return cache
+       return $GLOBALS[__FUNCTION__][$data];
 }
 
 // Generate XHTML code for the CAPTCHA
-function generateCaptchaCode ($code, $type, $DATA, $userid) {
-       return '<img border="0" alt="Code ' . $code . '" src="{%url=mailid_top.php?userid=' . $userid . '&amp;' . $type . '=' . $DATA . '&amp;mode=img&amp;code=' . $code . '%}" />';
+function generateCaptchaCode ($code, $type, $urlId, $userid) {
+       return '<img border="0" alt="Code ' . $code . '" src="{%url=mailid_top.php?userid=' . $userid . '&amp;' . $type . '=' . $urlId . '&amp;do=img&amp;code=' . $code . '%}" />';
 }
 
 // Compiles the given HTML/mail code
-function compileCode ($code, $simple = false, $constants = true, $full = true) {
-       // Is the code a string?
-       if (!is_string($code)) {
+function compileCode ($code, $simple = false, $constants = true, $full = true, $compileCode = true) {
+       // Is the code a string or should we not compile?
+       if ((!is_string($code)) || ($compileCode === false)) {
                // Silently return it
                return $code;
        } // END - if
@@ -560,23 +601,23 @@ function compileCode ($code, $simple = false, $constants = true, $full = true) {
        $code = compileRawCode($code, $simple, $constants, $full);
 
        // Get timing
-       $compiled = microtime(true);
+       $compilationTime = $startCompile - microtime(true);
 
        // Add timing if enabled
        if (isTemplateHtml()) {
                // Add timing, this should be disabled in
-               $code .= '<!-- Compilation time: ' . (($compiled - $startCompile) * 1000). 'ms //-->';
+               $code .= '<!-- Compilation time: ' . ($compilationTime * 1000). 'ms //-->';
        } // END - if
 
        // Return compiled code
        return $code;
 }
 
-// Compiles the code (use compileCode() only for HTML because of the comments)
+// Compiles the code
 // @TODO $simple/$constants are deprecated
-function compileRawCode ($code, $simple = false, $constants = true, $full = true) {
-       // Is the code a string?
-       if (!is_string($code)) {
+function compileRawCode ($code, $simple = false, $constants = true, $full = true, $compileCode = true) {
+       // Is the code a string or shall we not compile?
+       if ((!is_string($code)) || ($compileCode === false)) {
                // Silently return it
                return $code;
        } // END - if
@@ -585,23 +626,23 @@ function compileRawCode ($code, $simple = false, $constants = true, $full = true
        $secChars = $GLOBALS['url_chars'];
 
        // Select full set of chars to replace when we e.g. want to compile URLs
-       if ($full === true) $secChars = $GLOBALS['security_chars'];
+       if ($full === true) {
+               $secChars = $GLOBALS['security_chars'];
+       } // END - if
 
        // Compile more through a filter
        $code = runFilterChain('compile_code', $code);
 
-       // Compile message strings
-       $code = str_replace('{--', '{%message,', str_replace('--}', '%}', $code));
+       // First compile these chars
+       array_unshift($secChars['to']  , '{--'       , '--}');
+       array_unshift($secChars['from'], '{%message,', '%}' );
 
        // Compile QUOT and other non-HTML codes
-       foreach ($secChars['to'] as $k => $to) {
-               // Do the reversed thing as in inc/libs/security_functions.php
-               $code = str_replace($to, $secChars['from'][$k], $code);
-       } // END - foreach
+       $code = str_replace($secChars['to'], $secChars['from'], $code);
 
        // Find $content[bla][blub] entries
-       // @TODO Do only use $content and deprecate $GLOBALS and $DATA in templates
-       preg_match_all('/\$(content|GLOBALS|DATA)((\[([a-zA-Z0-9-_]+)\])*)/', $code, $matches);
+       preg_match_all('/\$content((\[([a-zA-Z0-9-_]+)\])*)/', $code, $matches);
+       //* NOISY-DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Second regex gave ' . count($matches[0]) . ' matches.');
 
        // Are some matches found?
        if ((count($matches) > 0) && (count($matches[0]) > 0)) {
@@ -617,41 +658,81 @@ function compileRawCode ($code, $simple = false, $constants = true, $full = true
                                $test = substr($found, 0, strlen($match));
 
                                // Does this entry exist?
-                               //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "found={$found},match={$match},set={$set}<br />");
+                               //* NOISY-DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'found=' . $found . ',match=' . $match . ',set=' . $set);
                                if ($test == $match) {
-                                       // Match found!
-                                       //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "fuzzyFound!<br />");
+                                       // Match found
+                                       //* NOISY-DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'fuzzyFound!');
                                        $fuzzyFound = true;
                                        break;
                                } // END - if
                        } // END - foreach
 
                        // Skip this entry?
-                       if ($fuzzyFound === true) continue;
+                       if ($fuzzyFound === true) {
+                               continue;
+                       } // END - if
 
                        // Take all string elements
-                       if ((is_string($matches[4][$key])) && (!isset($matchesFound[$match])) && (!isset($matchesFound[$key.'_' . $matches[4][$key]]))) {
-                               // Replace it in the code
-                               //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "key={$key},match={$match}<br />");
-                               $newMatch = str_replace('[', "['", str_replace(']', "']", $match));
+                       if ((is_string($matches[3][$key])) && (!isset($matchesFound[$match])) && (!isset($matchesFound[$key.'_' . $matches[3][$key]]))) {
+                               // Replace it in the code, replace dollar sign so it won't be detected by next regex (see there)
+                               //* NOISY-DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'key=' . $key . ',match=' . $match);
+                               $newMatch = str_replace(array('[', ']', '$'), array("['", "']", '{COMPILE_DOLLAR}'), $match);
                                $code = str_replace($match, '".' . $newMatch . '."', $code);
-                               $matchesFound[$key . '_' . $matches[4][$key]] = 1;
-                               $matchesFound[$match] = 1;
+                               $matchesFound[$key . '_' . $matches[3][$key]] = 1;
+                               $matchesFound[$match] = true;
                        } elseif (!isset($matchesFound[$match])) {
                                // Not yet replaced!
-                               //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "match={$match}<br />");
+                               //* NOISY-DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'match=' . $match);
                                $code = str_replace($match, '".' . $match . '."', $code);
                                $matchesFound[$match] = 1;
+                       } else {
+                               // Everthing else should be a least logged
+                               logDebugMessage(__FUNCTION__, __LINE__, 'match=' . $match . ',key=' . $key);
                        }
                } // END - foreach
        } // END - if
 
-       // Return it
+       /*
+        * Find $foobar, $foo_bar and $fooBar entries. This regex would also find
+        * $content[foo_bar] which would result in {DOLLAR}content[foo_bar] and
+        * therefore the variable's value won't be inserted. This is why
+        * {COMPILE_DOLLAR} is being used in above loop and at the end of this
+        * function being replace with the original dollar sign again.
+        */
+       preg_match_all('/\$([a-z_A-Z\[\]]){0,}/', $code, $matches);
+
+       // Are some matches found?
+       if ((count($matches) > 0) && (count($matches[0]) > 0)) {
+               // Scan all matches for not $content
+               foreach ($matches[0] as $match) {
+                       // Trim match
+                       $match = trim($match);
+
+                       // Debug message
+                       //* NOISY-DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'match=' . $match);
+
+                       // Is the first part not $content/$userid and not empty?
+                       // @TODO $userid is deprecated and should be removed from loadEmailTemplate() and replaced with $content[userid] in all templates
+                       if ((!empty($match)) && (substr($match, 0, 8) != '$content') && ($match != '$userid')) {
+                               //* NOISY-DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'match=' . $match . ' - SECURED!');
+                               // Then replace $ with {DOLLAR}
+                               $matchSecured = str_replace('$', '{DOLLAR}', $match);
+
+                               // And in $code as well
+                               $code = str_replace($match, $matchSecured, $code);
+                       } // END - if
+               } // END - if
+       } // END - if
+
+       // Replace {COMPILE_DOLLAR} back to dollar sign
+       $code = str_replace('{COMPILE_DOLLAR}', '$', $code);
+
+       // Finally return it
        return $code;
 }
 
 //
-function addSelectionBox ($type, $default, $prefix = '', $id = '0', $class = 'register_select') {
+function addSelectionBox ($type, $default, $prefix = '', $id = '0', $class = 'form_select') {
        $OUT = '';
 
        if ($type == 'yn') {
@@ -688,7 +769,7 @@ function addSelectionBox ($type, $default, $prefix = '', $id = '0', $class = 're
                        $year = getYear();
 
                        // Use configured min age or fixed?
-                       if (isExtensionInstalledAndNewer('order', '0.2.1')) {
+                       if (isExtensionInstalledAndNewer('other', '0.2.1')) {
                                // Configured
                                $startYear = $year - getConfig('min_age');
                        } else {
@@ -715,7 +796,7 @@ function addSelectionBox ($type, $default, $prefix = '', $id = '0', $class = 're
                                // Get current year and subtract the configured minimum age
                                $OUT .= '<option value="' . ($minYear - 1) . '">&lt;' . $minYear . '</option>';
                                // Calculate earliest year depending on extension version
-                               if (isExtensionInstalledAndNewer('order', '0.2.1')) {
+                               if (isExtensionInstalledAndNewer('other', '0.2.1')) {
                                        // Use configured minimum age
                                        $year = getYear() - getConfig('min_age');
                                } else {
@@ -735,7 +816,7 @@ function addSelectionBox ($type, $default, $prefix = '', $id = '0', $class = 're
                case 'sec':
                case 'min':
                        for ($idx = 0; $idx < 60; $idx+=5) {
-                               if (strlen($idx) == 1) $idx = '0' . $idx;
+                               if (strlen($idx) == 1) $idx = 0 . $idx;
                                $OUT .= '<option value="' . $idx . '"';
                                if ($default == $idx) $OUT .= ' selected="selected"';
                                $OUT .= '>' . $idx . '</option>';
@@ -744,7 +825,7 @@ function addSelectionBox ($type, $default, $prefix = '', $id = '0', $class = 're
 
                case 'hour':
                        for ($idx = 0; $idx < 24; $idx++) {
-                               if (strlen($idx) == 1) $idx = '0' . $idx;
+                               if (strlen($idx) == 1) $idx = 0 . $idx;
                                $OUT .= '<option value="' . $idx . '"';
                                if ($default == $idx) $OUT .= ' selected="selected"';
                                $OUT .= '>' . $idx . '</option>';
@@ -766,9 +847,9 @@ function addSelectionBox ($type, $default, $prefix = '', $id = '0', $class = 're
 // Insert the code in $img_code into jpeg or PNG image
 function generateImageOrCode ($img_code, $headerSent = true) {
        // Is the code size oversized or shouldn't we display it?
-       if ((strlen($img_code) > 6) || (empty($img_code)) || (getConfig('code_length') == '0')) {
+       if ((strlen($img_code) > 6) || (empty($img_code)) || (getCodeLength() == '0')) {
                // Stop execution of function here because of over-sized code length
-               debug_report_bug(__FUNCTION__, __LINE__, 'img_code ' . $img_code .' has invalid length. img_code()=' . strlen($img_code) . ' code_length=' . getConfig('code_length'));
+               reportBug(__FUNCTION__, __LINE__, 'img_code ' . $img_code .' has invalid length. img_code(length)=' . strlen($img_code) . ' code_length=' . getCodeLength());
        } elseif ($headerSent === false) {
                // Return an HTML code here
                return '<img src="{%url=img.php?code=' . $img_code . '%}" alt="Image" />';
@@ -778,26 +859,24 @@ function generateImageOrCode ($img_code, $headerSent = true) {
        $img = sprintf("%s/theme/%s/images/code_bg.%s",
                getPath(),
                getCurrentTheme(),
-               getConfig('img_type')
+               getImgType()
        );
 
        // Is it readable?
        if (isFileReadable($img)) {
                // Switch image type
-               switch (getConfig('img_type')) {
-                       case 'jpg':
-                               // Okay, load image and hide all errors
+               switch (getImgType()) {
+                       case 'jpg': // Okay, load image and hide all errors
                                $image = imagecreatefromjpeg($img);
                                break;
 
-                       case 'png':
-                               // Okay, load image and hide all errors
+                       case 'png': // Okay, load image and hide all errors
                                $image = imagecreatefrompng($img);
                                break;
                } // END - switch
        } else {
-               // Exit function here
-               logDebugMessage(__FUNCTION__, __LINE__, sprintf("File for image type %s not found.", getConfig('img_type')));
+               // Silently log the error
+               logDebugMessage(__FUNCTION__, __LINE__, sprintf("File for image-type %s in theme %s not found.", getImgType(), getCurrentTheme()));
                return;
        }
 
@@ -808,10 +887,10 @@ function generateImageOrCode ($img_code, $headerSent = true) {
        imagestring($image, 5, 14, 2, $img_code, $text_color);
 
        // Return to browser
-       sendHeader('Content-Type: image/' . getConfig('img_type'));
+       setContentType('image/' . getImgType());
 
        // Output image with matching image factory
-       switch (getConfig('img_type')) {
+       switch (getImgType()) {
                case 'jpg': imagejpeg($image); break;
                case 'png': imagepng($image);  break;
        } // END - switch
@@ -819,30 +898,29 @@ function generateImageOrCode ($img_code, $headerSent = true) {
        // Remove image from memory
        imagedestroy($image);
 }
+
 // Create selection box or array of splitted timestamp
-function createTimeSelections ($timestamp, $prefix = '', $display = '', $align = 'center', $return_array=false) {
+function createTimeSelections ($timestamp, $prefix = '', $display = '', $align = 'center', $asArray = false) {
        // Do not continue if ONE_DAY is absend
        if (!isConfigEntrySet('ONE_DAY')) {
-               // And return the timestamp itself or empty array
-               if ($return_array === true) {
-                       return array();
-               } else {
-                       return $timestamp;
-               }
+               // Abort here
+               reportBug(__FUNCTION__, __LINE__, 'Configuration entry ONE_DAY is absend. timestamp=' . $timestamp . ',prefix=' . $prefix . ',align=' . $align . ',asArray=' . intval($asArray));
        } // END - if
 
        // Calculate 2-seconds timestamp
        $stamp = round($timestamp);
        //* DEBUG: */ debugOutput('*' . $stamp .'/' . $timestamp . '*');
 
-       // Do we have a leap year?
+       // Is there a leap year?
        $SWITCH = '0';
        $TEST = getYear() / 4;
        $M1 = getMonth();
        $M2 = getMonth(time() + $timestamp);
 
        // If so and if current time is before 02/29 and estimated time is after 02/29 then add 86400 seconds (one day)
-       if ((floor($TEST) == $TEST) && ($M1 == '02') && ($M2 > '02'))  $SWITCH = getConfig('ONE_DAY');
+       if ((floor($TEST) == $TEST) && ($M1 == '02') && ($M2 > '02'))  {
+               $SWITCH = getOneDay();
+       } // END - switch
 
        // First of all years...
        $Y = abs(floor($timestamp / (31536000 + $SWITCH)));
@@ -851,19 +929,19 @@ function createTimeSelections ($timestamp, $prefix = '', $display = '', $align =
        $M = abs(floor($timestamp / 2628000 - $Y * 12));
        //* DEBUG: */ debugOutput('M=' . $M);
        // Next weeks
-       $W = abs(floor($timestamp / 604800 - $Y * ((365 + $SWITCH / getConfig('ONE_DAY')) / 7) - ($M / 12 * (365 + $SWITCH / getConfig('ONE_DAY')) / 7)));
+       $W = abs(floor($timestamp / 604800 - $Y * ((365 + $SWITCH / getOneDay()) / 7) - ($M / 12 * (365 + $SWITCH / getOneDay()) / 7)));
        //* DEBUG: */ debugOutput('W=' . $W);
        // Next days...
-       $D = abs(floor($timestamp / 86400 - $Y * (365 + $SWITCH / getConfig('ONE_DAY')) - ($M / 12 * (365 + $SWITCH / getConfig('ONE_DAY'))) - $W * 7));
+       $D = abs(floor($timestamp / 86400 - $Y * (365 + $SWITCH / getOneDay()) - ($M / 12 * (365 + $SWITCH / getOneDay())) - $W * 7));
        //* DEBUG: */ debugOutput('D=' . $D);
        // Next hours...
-       $h = abs(floor($timestamp / 3600 - $Y * (365 + $SWITCH / getConfig('ONE_DAY')) * 24 - ($M / 12 * (365 + $SWITCH / getConfig('ONE_DAY')) * 24) - $W * 7 * 24 - $D * 24));
+       $h = abs(floor($timestamp / 3600 - $Y * (365 + $SWITCH / getOneDay()) * 24 - ($M / 12 * (365 + $SWITCH / getOneDay()) * 24) - $W * 7 * 24 - $D * 24));
        //* DEBUG: */ debugOutput('h=' . $h);
        // Next minutes..
-       $m = abs(floor($timestamp / 60 - $Y * (365 + $SWITCH / getConfig('ONE_DAY')) * 24 * 60 - ($M / 12 * (365 + $SWITCH / getConfig('ONE_DAY')) * 24 * 60) - $W * 7 * 24 * 60 - $D * 24 * 60 - $h * 60));
+       $m = abs(floor($timestamp / 60 - $Y * (365 + $SWITCH / getOneDay()) * 24 * 60 - ($M / 12 * (365 + $SWITCH / getOneDay()) * 24 * 60) - $W * 7 * 24 * 60 - $D * 24 * 60 - $h * 60));
        //* DEBUG: */ debugOutput('m=' . $m);
        // And at last seconds...
-       $s = abs(floor($timestamp - $Y * (365 + $SWITCH / getConfig('ONE_DAY')) * 24 * 3600 - ($M / 12 * (365 + $SWITCH / getConfig('ONE_DAY')) * 24 * 3600) - $W * 7 * 24 * 3600 - $D * 24 * 3600 - $h * 3600 - $m * 60));
+       $s = abs(floor($timestamp - $Y * (365 + $SWITCH / getOneDay()) * 24 * 3600 - ($M / 12 * (365 + $SWITCH / getOneDay()) * 24 * 3600) - $W * 7 * 24 * 3600 - $D * 24 * 3600 - $h * 3600 - $m * 60));
        //* DEBUG: */ debugOutput('s=' . $s);
 
        // Is seconds zero and time is < 60 seconds?
@@ -875,16 +953,16 @@ function createTimeSelections ($timestamp, $prefix = '', $display = '', $align =
        //
        // Now we convert them in seconds...
        //
-       if ($return_array) {
+       if ($asArray === true) {
                // Just put all data in an array for later use
                $OUT = array(
-                       'YEARS'   => $Y,
-                       'MONTHS'  => $M,
-                       'WEEKS'   => $W,
-                       'DAYS'    => $D,
-                       'HOURS'   => $h,
-                       'MINUTES' => $m,
-                       'SECONDS' => $s
+                       'Y' => $Y,
+                       'M' => $M,
+                       'W' => $W,
+                       'D' => $D,
+                       'h' => $h,
+                       'm' => $m,
+                       's' => $s
                );
        } else {
                // Generate table
@@ -893,31 +971,31 @@ function createTimeSelections ($timestamp, $prefix = '', $display = '', $align =
                $OUT .= '<tr>';
 
                if (isInString('Y', $display) || (empty($display))) {
-                       $OUT .= '<td align="center" class="timebox_column bottom"><div class="tiny">{--_YEARS--}</strong></td>';
+                       $OUT .= '<td align="center" class="timebox_column bottom"><div class="tiny">{--TIME_UNIT_YEAR--}</strong></td>';
                } // END - if
 
                if (isInString('M', $display) || (empty($display))) {
-                       $OUT .= '<td align="center" class="timebox_column bottom"><div class="tiny">{--_MONTHS--}</strong></td>';
+                       $OUT .= '<td align="center" class="timebox_column bottom"><div class="tiny">{--TIME_UNIT_MONTH--}</strong></td>';
                } // END - if
 
                if (isInString('W', $display) || (empty($display))) {
-                       $OUT .= '<td align="center" class="timebox_column bottom"><div class="tiny">{--_WEEKS--}</strong></td>';
+                       $OUT .= '<td align="center" class="timebox_column bottom"><div class="tiny">{--TIME_UNIT_WEEK--}</strong></td>';
                } // END - if
 
                if (isInString('D', $display) || (empty($display))) {
-                       $OUT .= '<td align="center" class="timebox_column bottom"><div class="tiny">{--_DAYS--}</strong></td>';
+                       $OUT .= '<td align="center" class="timebox_column bottom"><div class="tiny">{--TIME_UNIT_DAY--}</strong></td>';
                } // END - if
 
                if (isInString('h', $display) || (empty($display))) {
-                       $OUT .= '<td align="center" class="timebox_column bottom"><div class="tiny">{--_HOURS--}</strong></td>';
+                       $OUT .= '<td align="center" class="timebox_column bottom"><div class="tiny">{--TIME_UNIT_HOUR--}</strong></td>';
                } // END - if
 
                if (isInString('m', $display) || (empty($display))) {
-                       $OUT .= '<td align="center" class="timebox_column bottom"><div class="tiny">{--_MINUTES--}</strong></td>';
+                       $OUT .= '<td align="center" class="timebox_column bottom"><div class="tiny">{--TIME_UNIT_MINUTE--}</strong></td>';
                } // END - if
 
                if (isInString('s', $display) || (empty($display))) {
-                       $OUT .= '<td align="center" class="timebox_column bottom"><div class="tiny">{--_SECONDS--}</strong></td>';
+                       $OUT .= '<td align="center" class="timebox_column bottom"><div class="tiny">{--TIME_UNIT_SECOND--}</strong></td>';
                } // END - if
 
                $OUT .= '</tr>';
@@ -1025,10 +1103,12 @@ function createTimeSelections ($timestamp, $prefix = '', $display = '', $align =
 // Generate a list of administrative links to a given userid
 function generateMemberAdminActionLinks ($userid) {
        // Make sure userid is a number
-       if ($userid != bigintval($userid)) debug_report_bug(__FUNCTION__, __LINE__, 'userid is not a number!');
+       if ($userid != bigintval($userid)) {
+               reportBug(__FUNCTION__, __LINE__, 'userid is not a number!');
+       } // END - if
 
        // Define all main targets
-       $targetArray = array('del_user', 'edit_user', 'lock_user', 'add_points', 'sub_points');
+       $targetArray = runFilterChain('member_admin_actions', array('del_user', 'edit_user', 'lock_user', 'list_refs', 'list_links', 'add_points', 'sub_points'));
 
        // Get user status
        $status = getFetchedUserData('userid', $userid, 'status');
@@ -1036,27 +1116,39 @@ function generateMemberAdminActionLinks ($userid) {
        // Begin of navigation links
        $OUT = '[';
 
-       foreach ($targetArray as $tar) {
-               $OUT .= '<span class="admin_user_link"><a href="{%url=modules.php?module=admin&amp;what=' . $tar . '&amp;userid=' . $userid . '%}" title="{--ADMIN_LINK_';
-               //* DEBUG: */ debugOutput('*' . $tar.'/' . $status.'*');
-               if (($tar == 'lock_user') && ($status == 'LOCKED')) {
+       foreach ($targetArray as $target) {
+               $OUT .= '<span class="admin_user_link"><a href="{%url=modules.php?module=admin&amp;what=' . $target . '&amp;userid=' . $userid . '%}" title="{--ADMIN_USER_ACTION_LINK_';
+               //* DEBUG: */ debugOutput('*' . $target.'/' . $status.'*');
+               if (($target == 'lock_user') && ($status == 'LOCKED')) {
                        // Locked accounts shall be unlocked
                        $OUT .= 'UNLOCK_USER';
+               } elseif ($target == 'del_user') {
+                       // @TODO Deprecate this thing
+                       $OUT .= 'DELETE_USER';
                } else {
                        // All other status is fine
-                       $OUT .= strtoupper($tar);
+                       $OUT .= strtoupper($target);
                }
-               $OUT .= '_TITLE--}">{--ADMIN_';
-               if (($tar == 'lock_user') && ($status == 'LOCKED')) {
+               $OUT .= '_TITLE--}">{--ADMIN_USER_ACTION_LINK_';
+               if (($target == 'lock_user') && ($status == 'LOCKED')) {
                        // Locked accounts shall be unlocked
                        $OUT .= 'UNLOCK_USER';
+               } elseif ($target == 'del_user') {
+                       // @TODO Deprecate this thing
+                       $OUT .= 'DELETE_USER';
                } else {
                        // All other status is fine
-                       $OUT .= strtoupper($tar);
+                       $OUT .= strtoupper($target);
                }
                $OUT .= '--}</a></span>|';
        } // END - foreach
 
+       // Add special link, in case of the account is unconfirmed
+       if ($status == 'UNCONFIRMED') {
+               // Add it
+               $OUT .= '<span class="admin_user_link"><a target="_blank" title="{--ADMIN_USER_ACTION_LINK_CONFIRM_ACCOUNT_TITLE--}" href="{%url=confirm.php?hash=' . getFetchedUserData('userid', $userid, 'user_hash') . '%}">{--ADMIN_USER_ACTION_LINK_CONFIRM_ACCOUNT--}</a></span>|';
+       } // END - if
+
        // Finish navigation link
        $OUT = substr($OUT, 0, -1) . ']';
 
@@ -1081,44 +1173,58 @@ function generateEmailLink ($email, $table = 'admins') {
                $EMAIL = generateSponsorEmailLink($email);
        }
 
-       // Shall I close the link when there is no admin?
-       if ((!isAdmin()) && ($EMAIL == $email)) $EMAIL = '#'; // Closed!
-
        // Return email link
        return $EMAIL;
 }
 
-// Output error messages in a fasioned way and die...
-function app_die ($F, $L, $message) {
+/**
+ * Outputs an error message in a "fashioned way" to the user, by putting it into
+ * a nice looking web page, if one of HTML or CSS output mode is active.
+ *
+ * Please use reportBug() instead of this function. reportBug() has more helpful
+ * functionality like logging and admin notification (which you can configure
+ * through your admin area).
+ *
+ * @param      $F                      Function or file basename where the error came from
+ * @param      $L                      Line number where the error came from
+ * @param      $message        Message which shall be output to web
+ * @return     void
+ */
+function app_exit ($F, $L, $message) {
        // Check if Script is already dieing and not let it kill itself another 1000 times
-       if (!isset($GLOBALS['app_died'])) {
-               // Make sure, that the script realy realy diese here and now
-               $GLOBALS['app_died'] = true;
+       if (isset($GLOBALS['app_died'])) {
+               // Script tried to kill itself twice
+               die('[' . __FUNCTION__ . ':' . __LINE__ . ']: Script wanted to kill itself more than once! Raw message=' . $message . ', file/function=' . $F . ', line=' . $L);
+       } // END - if
+
+       // Make sure, that the script realy realy diese here and now
+       $GLOBALS['app_died'] = true;
 
-               // Set content type as text/html
-               setContentType('text/html');
+       // Set content type as text/html
+       setContentType('text/html');
 
-               // Load header
-               loadIncludeOnce('inc/header.php');
+       // Load header
+       loadIncludeOnce('inc/header.php');
 
-               // Rewrite message for output
-               $message = sprintf(getMessage('MAILER_HAS_DIED'), basename($F), $L, $message);
+       // Rewrite message for output
+       $message = sprintf(
+               getMessage('MAILER_HAS_DIED'),
+               basename($F),
+               $L,
+               $message
+       );
 
-               // Load the message template
-               loadTemplate('app_die_message', false, $message);
+       // Load the message template
+       loadTemplate('app_exit_message', false, $message);
 
-               // Load footer
-               loadIncludeOnce('inc/footer.php');
-       } else {
-               // Script tried to kill itself twice
-               die('['.__FUNCTION__.':'.__LINE__.']: Script wanted to kill itself more than once! Raw message=' . $message . ', file/function=' . $F . ', line=' . $L);
-       }
+       // Load footer
+       loadIncludeOnce('inc/footer.php');
 }
 
 // Display parsing time and number of SQL queries in footer
 function displayParsingTime () {
        // Is the timer started?
-       if (!isset($GLOBALS['startTime'])) {
+       if (!isset($GLOBALS['__start_time'])) {
                // Abort here
                return false;
        } // END - if
@@ -1127,7 +1233,7 @@ function displayParsingTime () {
        $endTime = microtime(true);
 
        // "Explode" both times
-       $start = explode(' ', $GLOBALS['startTime']);
+       $start = explode(' ', $GLOBALS['__start_time']);
        $end = explode(' ', $endTime);
        $runTime = $end[0] - $start[0];
        if ($runTime < 0) {
@@ -1142,20 +1248,36 @@ function displayParsingTime () {
        );
 
        // Load the template
-       $GLOBALS['page_footer'] .= loadTemplate('show_timings', true, $content);
+       $GLOBALS['__page_footer'] .= loadTemplate('show_timings', true, $content);
 }
 
-// Output a debug backtrace to the user
-function debug_report_bug ($F, $L, $message = '', $sendEmail = true) {
+/**
+ * Outputs an error message and backtrace to the user, by default a mail with
+ * all relevant data is being mailed to the configured administrators.
+ *
+ * This function shall be used "publicly" because of logging, admin notification
+ * and double-call prevention (see first if() block) instead of app_exit().
+ * app_exit() is more a "private" function and will only output a bug message to
+ * the user, no email and no logging.
+ *
+ * @param      $F                      Function or file basename where the error came from
+ * @param      $L                      Line number where the error came from
+ * @param      $sendEmail      Wether to send an email to all configured administrators
+ * @return     void
+ */
+function reportBug ($F, $L, $message = '', $sendEmail = true) {
        // Is this already called?
        if (isset($GLOBALS[__FUNCTION__])) {
                // Other backtrace
-               print 'Message:' . $message . '<br />Backtrace:<pre>';
+               print '[' . $F . ':' . $L . ':] ' . __FUNCTION__ . ' has already died! Message:' . $message . '<br />Backtrace:<pre>';
                debug_print_backtrace();
                die('</pre>');
        } // END - if
 
-       // Set this function as called
+       // Set HTTP status to 500 (e.g. for AJAX requests)
+       setHttpStatus('500 Internal Server Error');
+
+       // Mark this function as called
        $GLOBALS[__FUNCTION__] = true;
 
        // Init message
@@ -1173,7 +1295,7 @@ function debug_report_bug ($F, $L, $message = '', $sendEmail = true) {
        } // END - if
 
        // Add output
-       $debug .= 'Please report this bug at <a title="Direct link to the bug-tracker" href="http://bugs.mxchange.org" rel="external" target="_blank">http://bugs.mxchange.org</a> and include the logfile from <strong>' . str_replace(getPath(), '', getCachePath()) . 'debug.log</strong> in your report (you can now attach files):<pre>';
+       $debug .= 'Please report this bug at <a title="Direct link to the bug-tracker" href="http://bugs.mxchange.org" rel="external" target="_blank">http://bugs.mxchange.org</a> and include this whole message + logfile from <strong>' . str_replace(getPath(), '', getCachePath()) . 'debug.log</strong> in your report (you can now attach files).<br />Backtrace:<pre>';
        $debug .= debug_get_printable_backtrace();
        $debug .= '</pre>';
        $debug .= '<div class="para">Request-URI: ' . getRequestUri() . '</div>';
@@ -1188,30 +1310,67 @@ function debug_report_bug ($F, $L, $message = '', $sendEmail = true) {
                );
 
                // Send email to webmaster
-               sendAdminNotification('{--DEBUG_REPORT_BUG_SUBJECT--}', 'admin_report_bug', $content);
+               sendAdminNotification('{--REPORT_BUG_SUBJECT--}', 'admin_report_bug', $content);
        } // END - if
 
-       // And abort here
-       app_die($F, $L, $debug);
+       // Is there HTML/CSS/AJAX mode?
+       if ((isHtmlOutputMode()) || (isCssOutputMode()) || (isAjaxOutputMode())) {
+               // And abort here
+               app_exit($F, $L, $debug);
+       } else {
+               // Raw/image output mode and all other modes doesn't work well with text ...
+               die();
+       }
 }
 
 // Compile characters which are allowed in URLs
 function compileUriCode ($code, $simple = true) {
+       // Trim code
+       $test = trim($code);
+
+       // Is it empty?
+       if (empty($test)) {
+               // Then abort here and return the original code
+               return $code;
+       } // END - if
+
+       // Compile these by default
+       $charsCompile = array(
+               'from' => array(
+                       '{DOT}',
+                       '{SLASH}',
+                       '{QUOT}',
+                       '{DOLLAR}',
+                       '{OPEN_ANCHOR}',
+                       '{CLOSE_ANCHOR}',
+                       '{OPEN_SQR}',
+                       '{CLOSE_SQR}',
+                       '{PER}'
+               ),
+               'to' => array(
+                       '.',
+                       '/',
+                       chr(39),
+                       '$',
+                       '(',
+                       ')',
+                       '[',
+                       ']',
+                       '%'
+               )
+       );
+
        // Compile constants
-       if ($simple === false) $code = str_replace('{--', '".', str_replace('--}', '."', $code));
+       if ($simple === false) {
+               // Add more 'from'
+               array_push($charsCompile['from'], '{--', '--}');
+
+               // Add more 'to'
+               array_push($charsCompile['to'], '".', '."');
+       } // END - if
 
        // Compile QUOT and other non-HTML codes
-       $code = str_replace('{DOT}', '.',
-               str_replace('{SLASH}', '/',
-               str_replace('{QUOT}', "'",
-               str_replace('{DOLLAR}', '$',
-               str_replace('{OPEN_ANCHOR}', '(',
-               str_replace('{CLOSE_ANCHOR}', ')',
-               str_replace('{OPEN_SQR}', '[',
-               str_replace('{CLOSE_SQR}', ']',
-               str_replace('{PER}', '%',
-               $code
-       )))))))));
+       $code = str_replace($charsCompile['from'], $charsCompile['to'], $code);
 
        // Return compiled code
        return $code;
@@ -1219,36 +1378,60 @@ function compileUriCode ($code, $simple = true) {
 
 // Handle message codes from URL
 function handleCodeMessage () {
-       if (isGetRequestParameterSet('code')) {
+       // Is 'code' set?
+       if (isGetRequestElementSet('code')) {
                // Default extension is 'unknown'
                $ext = 'unknown';
 
                // Is extension given?
-               if (isGetRequestParameterSet('ext')) $ext = getRequestParameter('ext');
+               if (isGetRequestElementSet('ext')) {
+                       $ext = getRequestElement('ext');
+               } // END - if
 
                // Convert the 'code' parameter from URL to a human-readable message
-               $message = getMessageFromErrorCode(getRequestParameter('code'));
+               $message = getMessageFromErrorCode(getRequestElement('code'));
 
                // Load message template
                loadTemplate('message', false, $message);
        } // END - if
 }
 
+// Generates a 'extension foo out-dated' message
+function generateExtensionOutdatedMessage ($ext_name, $ext_ver) {
+       // Is the extension empty?
+       if (empty($ext_name)) {
+               // This should not happen
+               reportBug(__FUNCTION__, __LINE__, 'Parameter ext is empty. This should not happen.');
+       } // END - if
+
+       // Default message
+       $message = '{%message,EXTENSION_PROBLEM_EXTENSION_OUTDATED=' . $ext_name . '%}';
+
+       // Is an admin logged in?
+       if (isAdmin()) {
+               // Then output admin message
+               $message = sprintf(getMessage('ADMIN_EXTENSION_PROBLEM_EXTENSION_INACTIVE'), $ext_name, $ext_name, $ext_ver);
+       } // END - if
+
+       // Return prepared message
+       return $message;
+}
+
 // Generates a 'extension foo inactive' message
 function generateExtensionInactiveMessage ($ext_name) {
        // Is the extension empty?
        if (empty($ext_name)) {
                // This should not happen
-               debug_report_bug(__FUNCTION__, __LINE__, 'Parameter ext is empty. This should not happen.');
+               reportBug(__FUNCTION__, __LINE__, 'Parameter ext is empty. This should not happen.');
        } // END - if
 
        // Default message
-       $message = getMaskedMessage('EXTENSION_PROBLEM_EXTENSION_INACTIVE', $ext_name);
+       $message = '{%message,EXTENSION_PROBLEM_EXTENSION_INACTIVE=' . $ext_name . '%}';
 
        // Is an admin logged in?
        if (isAdmin()) {
                // Then output admin message
-               $message = getMaskedMessage('ADMIN_EXTENSION_PROBLEM_EXTENSION_INACTIVE', $ext_name);
+               $message = '{%message,ADMIN_EXTENSION_PROBLEM_EXTENSION_INACTIVE=' . $ext_name . '%}';
        } // END - if
 
        // Return prepared message
@@ -1260,16 +1443,16 @@ function generateExtensionNotInstalledMessage ($ext_name) {
        // Is the extension empty?
        if (empty($ext_name)) {
                // This should not happen
-               debug_report_bug(__FUNCTION__, __LINE__, 'Parameter ext is empty. This should not happen.');
+               reportBug(__FUNCTION__, __LINE__, 'Parameter ext is empty. This should not happen.');
        } // END - if
 
        // Default message
-       $message = getMaskedMessage('EXTENSION_PROBLEM_EXTENSION_NOT_INSTALLED', $ext_name);
+       $message = '{%message,EXTENSION_PROBLEM_EXTENSION_NOT_INSTALLED=' . $ext_name . '%}';
 
        // Is an admin logged in?
        if (isAdmin()) {
                // Then output admin message
-               $message = getMaskedMessage('ADMIN_EXTENSION_PROBLEM_EXTENSION_NOT_INSTALLED', $ext_name);
+               $message = '{%message,ADMIN_EXTENSION_PROBLEM_EXTENSION_NOT_INSTALLED=' . $ext_name . '%}';
        } // END - if
 
        // Return prepared message
@@ -1304,64 +1487,83 @@ function generateExtensionInactiveNotInstalledMessage ($ext_name) {
 
 // Print code with line numbers
 function linenumberCode ($code)    {
-       if (!is_array($code)) $codeE = explode("\n", $code); else $codeE = $code;
+       // By default copy the code
+       $codeE = $code;
+
+       if (!is_array($code)) {
+               // We need an array, so try it with the new-line character
+               $codeE = explode(chr(10), $code);
+       } // END - if
+
        $count_lines = count($codeE);
 
        $r = 'Line | Code:<br />';
-       foreach($codeE as $line => $c) {
+       foreach ($codeE as $line => $c) {
                $r .= '<div class="line"><span class="linenum">';
                if ($count_lines == 1) {
                        $r .= 1;
                } else {
-                       $r .= ($line == ($count_lines - 1)) ? '' :  ($line+1);
+                       $r .= ($line == ($count_lines - 1)) ? '' : ($line+1);
                }
                $r .= '</span>|';
 
                // Add code
                $r .= '<span class="linetext">' . encodeEntities($c) . '</span></div>';
-       }
+       } // END - foreach
 
        return '<div class="code">' . $r . '</div>';
 }
 
 // Determines the right page title
 function determinePageTitle () {
+       // Init page title
+       $pageTitle = '';
+
        // Config and database connection valid?
        if ((isConfigLocalLoaded()) && (isConfigurationLoaded()) && (SQL_IS_LINK_UP()) && (isExtensionInstalledAndNewer('sql_patches', '0.1.6'))) {
-               // Init title
-               $TITLE = '';
-
                // Title decoration enabled?
-               if ((isTitleDecorationEnabled()) && (getConfig('title_left') != '')) $TITLE .= trim(getConfig('title_left')) . ' ';
+               if ((isTitleDecorationEnabled()) && (getTitleLeft() != '')) {
+                       $pageTitle .= '{%config,trim=title_left%} ';
+               } // END - if
 
-               // Do we have some extra title?
+               // Is there an extra title?
                if (isExtraTitleSet()) {
-                       // Then prepent it
-                       $TITLE .= getExtraTitle() . ' by ';
+                       // Then prepend it
+                       $pageTitle .= '{%pipe,getExtraTitle%} by ';
                } // END - if
 
                // Add main title
-               $TITLE .= getMainTitle();
+               $pageTitle .= '{?MAIN_TITLE?}';
 
                // Add title of module? (middle decoration will also be added!)
                if ((isModuleTitleEnabled()) || ((!isWhatSet()) && (!isActionSet())) || (getModule() == 'admin')) {
-                       $TITLE .= ' ' . trim(getConfig('title_middle')) . ' {DQUOTE} . getModuleTitle(getModule()) . {DQUOTE}';
+                       $pageTitle .= ' {%config,trim=title_middle%} {DQUOTE} . getModuleTitle(getModule()) . {DQUOTE}';
                } // END - if
 
                // Add title from what file
-               $mode = '';
-               if (getModule() == 'login') $mode = 'member';
-               elseif (getModule() == 'index') $mode = 'guest';
-               if ((!empty($mode)) && (isWhatTitleEnabled())) $TITLE .= ' ' . trim(getConfig('title_middle')) . ' ' . getTitleFromMenu($mode, getWhat());
+               $menuMode = '';
+               if (getModule() == 'login') {
+                       $menuMode = 'member';
+               } elseif (getModule() == 'index') {
+                       $menuMode = 'guest';
+               } elseif (getModule() == 'admin') {
+                       $menuMode = 'admin';
+               } elseif (getModule() == 'sponsor') {
+                       $menuMode = 'sponsor';
+               }
 
-               // Add title decorations? (right)
-               if ((isTitleDecorationEnabled()) && (getConfig('title_right') != '')) $TITLE .= ' ' . trim(getConfig('title_right'));
+               // Add middle part (always in admin area!)
+               if ((!empty($menuMode)) && ((isWhatTitleEnabled()) || ($menuMode == 'admin'))) {
+                       $pageTitle .= ' {%config,trim=title_middle%} ' . getTitleFromMenu($menuMode, getWhat());
+               } // END - if
 
-               // Remember title in constant for the template
-               $pageTitle = $TITLE;
+               // Add title decorations? (right)
+               if ((isTitleDecorationEnabled()) && (getTitleRight() != '')) {
+                       $pageTitle .= ' {%config,trim=title_right%}';
+               } // END - if
        } elseif ((isInstalled()) && (isAdminRegistered())) {
                // Installed, admin registered but no ext-sql_patches
-               $pageTitle = '[-- ' . getMainTitle() . ' - ' . getModuleTitle(getModule()) . ' --]';
+               $pageTitle = '[-- {?MAIN_TITLE?} - {%pipe,getModule,getModuleTitle%} --]';
        } elseif ((isInstalled()) && (!isAdminRegistered())) {
                // Installed but no admin registered
                $pageTitle = '{--INSTALLER_OF_MAILER_NO_ADMIN--}';
@@ -1369,38 +1571,47 @@ function determinePageTitle () {
                // Installation mode
                $pageTitle = '{--INSTALLER_OF_MAILER--}';
        } else {
-               // Configuration not found!
+               // Configuration not found
                $pageTitle = '{--NO_CONFIG_FOUND_TITLE--}';
 
                // Do not add the fatal message in installation mode
-               if ((!isInstalling()) && (!isConfigurationLoaded())) addFatalMessage(__FUNCTION__, __LINE__, '{--NO_CONFIG_FOUND--}');
+               if ((!isInstalling()) && (!isConfigurationLoaded())) {
+                       // Please report this
+                       reportBug(__FUNCTION__, __LINE__, 'No configuration data found!');
+               } // END - if
        }
 
        // Return title
        return decodeEntities($pageTitle);
 }
 
-// Checks wethere there is a cache file there. This function is cached.
-function isTemplateCached ($template) {
-       // Do we have cached this result?
-       if (!isset($GLOBALS['template_cache'][$template])) {
+// Checks whethere there is a cache file there. This function is cached.
+function isTemplateCached ($prefix, $template) {
+       // Is there cached this result?
+       if (!isset($GLOBALS['template_cache'][$prefix][$template])) {
                // Generate FQFN
-               $FQFN = generateCacheFqfn($template);
+               $FQFN = generateCacheFqfn($prefix, $template);
 
                // Is it there?
-               $GLOBALS['template_cache'][$template] = isFileReadable($FQFN);
+               $GLOBALS['template_cache'][$prefix][$template] = isFileReadable($FQFN);
        } // END - if
 
        // Return it
-       return $GLOBALS['template_cache'][$template];
+       return $GLOBALS['template_cache'][$prefix][$template];
 }
 
 // Flushes non-flushed template cache to disk
-function flushTemplateCache ($template, $eval) {
+function flushTemplateCache ($prefix, $template, $eval) {
        // Is this cache flushed?
-       if ((isDebuggingTemplateCache() === false) && (isTemplateCached($template) === false) && ($eval != '404')) {
+       if ((isDebuggingTemplateCache() === false) && (isTemplateCached($prefix, $template) === false) && ($eval != '404')) {
                // Generate FQFN
-               $FQFN = generateCacheFqfn($template);
+               $FQFN = generateCacheFqfn($prefix, $template);
+
+               // Is this a XML template?
+               if ($prefix == 'xml') {
+                       // Compact only XML templates as emails needs new-line characters and HTML may contain required "comments"
+                       $eval = compactContent($eval);
+               } // END - if
 
                // And flush it
                writeToFile($FQFN, $eval, true);
@@ -1408,24 +1619,24 @@ function flushTemplateCache ($template, $eval) {
 }
 
 // Reads a template cache
-function readTemplateCache ($template) {
+function readTemplateCache ($prefix, $template) {
        // Check it again
-       if ((isDebuggingTemplateCache()) || (!isTemplateCached($template))) {
+       if ((isDebuggingTemplateCache()) || (!isTemplateCached($prefix, $template))) {
                // This should not happen
-               debug_report_bug('Wether debugging of template cache is enabled or template ' . $template . ' is not cached while expected.');
+               reportBug('Wether debugging of template cache is enabled or template ' . $template . ' is not cached while expected.');
        } // END - if
 
        // Is it cached?
-       if (!isset($GLOBALS['template_eval'][$template])) {
+       if (!isset($GLOBALS['template_eval'][$prefix][$template])) {
                // Generate FQFN
-               $FQFN = generateCacheFqfn($template);
+               $FQFN = generateCacheFqfn($prefix, $template);
 
                // And read from it
-               $GLOBALS['template_eval'][$template] = readFromFile($FQFN);
+               $GLOBALS['template_eval'][$prefix][$template] = readFromFile($FQFN);
        } // END - if
 
        // And return it
-       return $GLOBALS['template_eval'][$template];
+       return $GLOBALS['template_eval'][$prefix][$template];
 }
 
 // Escapes quotes (default is only double-quotes)
@@ -1435,11 +1646,8 @@ function escapeQuotes ($str, $single = false) {
                // Escape all (including null)
                $str = addslashes($str);
        } else {
-               // Remove escaping of single quotes
-               $str = str_replace("\'", "'", $str);
-
-               // Escape only double-quotes but prevent double-quoting
-               $str = str_replace("\\\\", "\\", str_replace('"', "\\\"", $str));
+               // Replace all chars at once
+               $str = str_replace(array("\\'", '"', "\\\\"), array(chr(39), "\\\"", chr(92)), $str);
        }
 
        // Return the escaped string
@@ -1449,7 +1657,7 @@ function escapeQuotes ($str, $single = false) {
 // Escapes the JavaScript code, prevents \r and \n becoming char 10/13
 function escapeJavaScriptQuotes ($str) {
        // Replace all double-quotes and secure back-ticks
-       $str = str_replace('"', '\"', str_replace("\\", '{BACK}', $str));
+       $str = str_replace(array(chr(92), '"'), array('{BACK}', '\"'), $str);
 
        // Return it
        return $str;
@@ -1458,6 +1666,9 @@ function escapeJavaScriptQuotes ($str) {
 // Send out mails depending on the 'mod/modes' combination
 // @TODO Lame description for this function
 function sendModeMails ($mod, $modes) {
+       // Init user data
+       $content = array ();
+
        // Load hash
        if (fetchUserData(getMemberId())) {
                // Extract salt from cookie
@@ -1467,7 +1678,7 @@ function sendModeMails ($mod, $modes) {
                $hash = encodeHashForCookie(getUserData('password'));
 
                // Does the hash match or should we change it?
-               if (($hash == getSession('u_hash')) || (postRequestParameter('pass1') == postRequestParameter('pass2'))) {
+               if (($hash == getSession('u_hash')) || (postRequestElement('pass1') == postRequestElement('pass2'))) {
                        // Load the data
                        $content = getUserDataArray();
 
@@ -1482,11 +1693,11 @@ function sendModeMails ($mod, $modes) {
                                                switch ($mode) {
                                                        case 'normal': break; // Do not add any special lines
                                                        case 'email': // Email was changed!
-                                                               $content['message'] = '{--MEMBER_CHANGED_EMAIL--}' . ': ' . postRequestParameter('old_email') . "\n";
+                                                               $content['message'] = '{--MEMBER_CHANGED_EMAIL--}' . ': ' . postRequestElement('old_email') . chr(10);
                                                                break;
 
                                                        case 'password': // Password was changed
-                                                               $content['message'] = '{--MEMBER_CHANGED_PASS--}' . "\n";
+                                                               $content['message'] = '{--MEMBER_CHANGED_PASS--}' . chr(10);
                                                                break;
 
                                                        default:
@@ -1498,7 +1709,7 @@ function sendModeMails ($mod, $modes) {
 
                                        if (isExtensionActive('country')) {
                                                // Replace code with description
-                                               $content['country'] = generateCountryInfo(postRequestParameter('country_code'));
+                                               $content['country'] = generateCountryInfo(postRequestElement('country_code'));
                                        } // END - if
 
                                        // Merge content with data from POST
@@ -1521,62 +1732,97 @@ function sendModeMails ($mod, $modes) {
                                        $sub_mem = '{--MEMBER_CHANGED_DATA--}';
 
                                        // Output success message
-                                       $content = '<span class="member_done">{--MEMBER_MYDATA_MAIL_SENT--}</span>';
+                                       $content['message'] = '<span class="message">{--MEMBER_MYDATA_MAIL_SENT--}</span>';
                                        break;
 
                                default: // Unsupported module!
                                        logDebugMessage(__FUNCTION__, __LINE__, sprintf("Unsupported module %s detected.", $mod));
-                                       $content = '<span class="member_failed">{--UNKNOWN_MODULE--}</span>';
+                                       $content['message'] = '<span class="bad">{--UNKNOWN_MODULE--}</span>';
                                        break;
                        } // END - switch
                } else {
                        // Passwords mismatch
-                       $content = '<span class="member_failed">{--MEMBER_PASSWORD_ERROR--}</span>';
+                       $content['message'] = '<span class="bad">{--MEMBER_PASSWORD_ERROR--}</span>';
                }
        } else {
                // Could not load profile
-               $content = '<span class="member_failed">{--MEMBER_CANNOT_LOAD_PROFILE--}</span>';
+               $content['message'] = '<span class="bad">{--MEMBER_CANNOT_LOAD_PROFILE--}</span>';
        }
 
        // Send email to user if required
-       if ((!empty($sub_mem)) && (!empty($message))) {
+       if ((!empty($sub_mem)) && (!empty($message)) && (!empty($content['userid']))) {
                // Send member mail
-               sendEmail($content['email'], $sub_mem, $message);
+               sendEmail($content['userid'], $sub_mem, $message);
        } // END - if
 
        // Send only if no other error has occured
-       if (empty($content)) {
-               if ((!empty($sub_adm)) && (!empty($message_admin))) {
-                       // Send admin mail
-                       sendAdminNotification($sub_adm, $message_admin, $content, getMemberId());
-               } elseif (isAdminNotificationEnabled()) {
-                       // Cannot send mails to admin!
-                       $content = '{--CANNOT_SEND_ADMIN_MAILS--}';
-               } else {
-                       // No mail to admin
-                       $content = '<span class="member_done">{--MEMBER_MYDATA_MAIL_SENT--}</span>';
-               }
-       } // END - if
+       if ((!empty($sub_adm)) && (!empty($message_admin)) && (isAdminNotificationEnabled())) {
+               // Send admin mail
+               sendAdminNotification($sub_adm, $message_admin, $content, getMemberId());
+       } elseif (isAdminNotificationEnabled()) {
+               // Cannot send mails to admin!
+               $content['message'] = '{--CANNOT_SEND_ADMIN_MAILS--}';
+       } else {
+               // No mail to admin
+               $content['message'] = '<span class="message">{--MEMBER_MYDATA_MAIL_SENT--}</span>';
+       }
 
        // Load template
-       loadTemplate('admin_settings_saved', false, $content);
+       displayMessage($content['message']);
 }
 
 // Generates a 'selection box' from given array
-function generateSelectionBoxFromArray ($options, $name, $optionValue, $optionContent = '', $extraName = '') {
+function generateSelectionBoxFromArray ($options, $name, $optionKey, $optionContent = '', $extraName = '', $templateName = '', $default = NULL, $nameElement = '', $allowNone = false, $useDefaultAsArray = false) {
+       // Default is empty
+       $addKey = '';
+
+       // Use default value as array key?
+       if ($useDefaultAsArray === true) {
+               // Then set it
+               $addKey = '[' . convertNullToZero($default) . ']';
+       } // END - if
+
        // Start the output
-       $OUT = '<select name="' . $name . '" size="1" class="admin_select">
+       $OUT = '<select name="' . $name . $addKey . '" size="1" class="form_select">
 <option value="X" disabled="disabled">{--PLEASE_SELECT--}</option>';
 
+       // Allow none?
+       if ($allowNone === true) {
+               // Then add it
+               $OUT .= '<option value="0">{--SELECT_NONE--}</option>';
+       } // END - if
+
        // Walk through all options
        foreach ($options as $option) {
-               // Add the <option> entry
+               // Default 'default' is not set
+               $option['default'] = '';
+
+               //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'name=' . $name . ',default[' . gettype($default) . ']=' . $default . ',optionKey[' . gettype($optionKey) . ']=' . $optionKey);
+               // Is default value same as given value?
+               if ((!is_null($default)) && (isset($option[$optionKey])) && ($default == $option[$optionKey])) {
+                       // Then set default
+                       $option['default'] = ' selected="selected"';
+               } // END - if
+
+               // Is 'nameElement' set?
+               if ((!empty($nameElement)) && (isset($option[$nameElement]))) {
+                       // Then set this as extraName, but lower-case
+                       $extraName = '_' . strtolower($option[$nameElement]);
+               } // END - if
+
+               // Add the <option> entry from ...
                if (empty($optionContent)) {
-                       // ... from template
-                       $OUT .= loadTemplate('select_' . $name . $extraName . '_option', true, $option);
+                       // Is a template name given?
+                       if (empty($templateName)) {
+                               // ... $name template
+                               $OUT .= loadTemplate('select_' . $name . $extraName . '_option', true, $option);
+                       } else {
+                               // ... $templateName template
+                               $OUT .= loadTemplate('select_' . $templateName . $extraName . '_option', true, $option);
+                       }
                } else {
-                       // Direct HTML code
-                       $OUT .= '<option value="' . $option[$optionValue] . '">' . $option[$optionContent] . '</option>';
+                       // ... direct HTML code
+                       $OUT .= '<option value="' . $option[$optionKey] . '">' . $option[$optionContent] . '</option>';
                }
        } // END - foreach
 
@@ -1589,22 +1835,34 @@ function generateSelectionBoxFromArray ($options, $name, $optionValue, $optionCo
        );
 
        // Load template and return it
-       return loadTemplate('select_' . $name . $extraName . '_box', true, $content);
+       if (empty($templateName)) {
+               // Use name from $name + $extraName
+               return loadTemplate('select_' . $name . $extraName . '_box', true, $content);
+       } else {
+               // Use name from $templateName + $extraName
+               return loadTemplate('select_' . $templateName . $extraName . '_box', true, $content);
+       }
 }
 
 // Prepares the header for HTML output
 function loadHtmlHeader () {
-       // Run two filters:
-       // 1.) pre_page_header (mainly loads the page_header template and includes
-       //     meta description)
+       /*
+        * Run two filters:
+        * 1.) pre_page_header (mainly loads the page_header template and includes
+        *     meta description)
+        */
        runFilterChain('pre_page_header');
 
-       // Here can be something be added, but normally one of the two filters
-       // around this line should do the job for you.
+       /*
+        * Here can be something be added, but normally one of the two filters
+        * around this line should do the job for you.
+        */
 
-       // 2.) post_page_header (mainly to load stylesheet, extra JavaScripts and
-       //     to close the head-tag)
-       // Include more header data here
+       /*
+        * 2.) post_page_header (mainly to load stylesheet, extra JavaScripts and
+        *     to close the head-tag)
+        * Include more header data here
+        */
        runFilterChain('post_page_header');
 }
 
@@ -1614,45 +1872,44 @@ function addPageHeaderFooter () {
        $OUT = '';
 
        // Add them all together. This is maybe to simple
-       foreach (array('page_header', 'output', 'page_footer') as $pagePart) {
+       foreach (array('__page_header', '__output', '__page_footer') as $pagePart) {
                // Add page part if set
-               if (isset($GLOBALS[$pagePart])) $OUT .= $GLOBALS[$pagePart];
+               if (isset($GLOBALS[$pagePart])) {
+                       $OUT .= $GLOBALS[$pagePart];
+               } // END - if
        } // END - foreach
 
-       // Transfer $OUT to 'output'
-       $GLOBALS['output'] = $OUT;
+       // Transfer $OUT to '__output'
+       $GLOBALS['__output'] = $OUT;
 }
 
 // Generates meta description for current module and 'what' value
 function generateMetaDescriptionCode () {
        // Only include from guest area and if sql_patches has correct version
        if ((getModule() == 'index') && (isExtensionInstalledAndNewer('sql_patches', '0.1.6'))) {
-               // Construct dynamic description
-               $DESCR = '{?MAIN_TITLE?} ' . trim(getConfig('title_middle')) . ' ' . getTitleFromMenu('guest', getWhat());
-
                // Output it directly
-               $GLOBALS['page_header'] .= '<meta name="description" content="' . $DESCR . '" />';
+               $GLOBALS['__page_header'] .= '<meta name="description" content="' . '{?MAIN_TITLE?} ' . trim(getConfig('title_middle')) . ' ' . getTitleFromMenu('guest', getWhat()) . '" />';
        } // END - if
 
-       // Remove depth
-       unset($GLOBALS['ref_level']);
+       // Initialize referral system
+       initReferralSystem();
 }
 
 // Generates an FQFN for template cache from the given template name
-function generateCacheFqfn ($template, $mode = 'html') {
+function generateCacheFqfn ($prefix, $template) {
        // Is this cached?
-       if (!isset($GLOBALS['template_cache_fqfn'][$template])) {
+       if (!isset($GLOBALS['template_cache_fqfn'][$prefix][$template])) {
                // Generate the FQFN
-               $GLOBALS['template_cache_fqfn'][$template] = sprintf(
+               $GLOBALS['template_cache_fqfn'][$prefix][$template] = sprintf(
                        "%s_compiled/%s/%s.tpl.cache",
                        getCachePath(),
-                       $mode,
+                       $prefix,
                        $template
                );
        } // END - if
 
        // Return it
-       return $GLOBALS['template_cache_fqfn'][$template];
+       return $GLOBALS['template_cache_fqfn'][$prefix][$template];
 }
 
 // "Fixes" null or empty string to count of dashes
@@ -1670,43 +1927,373 @@ function fixNullEmptyToDashes ($str, $num) {
        return $return;
 }
 
+// Translates the "pool type" into human-readable
+function translatePoolType ($type) {
+       // Return "translation"
+       return sprintf("{--POOL_TYPE_%s--}", strtoupper($type));
+}
+
+// "Translates" given time unit
+function translateTimeUnit ($unit) {
+       // Default is unknown
+       $message = '{%message,TIME_UNIT_UNKNOWN=' . $unit . '%}';
+
+       // "Detect" it
+       if (!isset($GLOBALS['time_units'][$unit])) {
+               // Not found
+               logDebugMessage(__FUNCTION__, __LINE__, 'Unknown time unit ' . $unit . ' detected.');
+       } else {
+               // Translate it with generic function
+               $message = translateGeneric('TIME_UNIT' , $GLOBALS['time_units'][$unit]);
+       }
+
+       // Return message
+       return $message;
+}
+
+// Displays given message in admin_settings_saved template
+function displayMessage ($message, $return = false) {
+       // Load the template
+       return loadTemplate('admin_settings_saved', $return, $message);
+}
+
+// Generates a selection box for (maybe) given gender
+function generateGenderSelectionBox ($selectedGender = '', $fieldName = 'gender') {
+       // Start the HTML code
+       $out  = '<select name="' . $fieldName . '" size="1" class="form_select">';
+
+       // Add options
+       $out .= generateOptions(
+               '/ARRAY/',
+               array(
+                       'M',
+                       'F',
+                       'C'
+               ), array(
+                       '{--GENDER_M--}',
+                       '{--GENDER_F--}',
+                       '{--GENDER_C--}'
+               ),
+               $selectedGender
+       );
+
+       // Finish HTML code
+       $out .= '</select>';
+
+       // Return the code
+       return $out;
+}
+
+// Generates a selection box for given default value
+function generateTimeUnitSelectionBox ($defaultUnit, $fieldName, $unitArray) {
+       // Init variables
+       $messageIds = array();
+
+       // Generate message id array
+       foreach ($unitArray as $unit) {
+               // "Translate" it
+               array_push($messageIds, '{%pipe,translateTimeUnit=' . $unit . '%}');
+       } // END - foreach
+
+       // Start the HTML code
+       $out = '<select name="' . $fieldName . '" size="1" class="form_select">';
+
+       // Add options
+       $out .= generateOptions('/ARRAY/', $unitArray, $messageIds, $defaultUnit);
+
+       // Finish HTML code
+       $out .= '</select>';
+
+       // Return the code
+       return $out;
+}
+
+// Function to add style tag (whether display:none/block)
+function addStyleMenuContent ($menuMode, $mainAction, $action) {
+       // Is there foo_menu_javascript enabled?
+       if ((!isConfigEntrySet($menuMode . '_menu_javascript')) || (getConfig($menuMode . '_menu_javascript') == 'N')) {
+               // Silently abort here, not enabled
+               return '';
+       } // END - if
+
+       // Is action=mainAction?
+       if ($action == $mainAction) {
+               // Add "menu open" style
+               return ' style="display:block"';
+       } else {
+               return ' style="display:none"';
+       }
+}
+
+// Function to add onclick attribute
+function addJavaScriptMenuContent ($menuMode, $mainAction, $action, $what) {
+       // Is there foo_menu_javascript enabled?
+       if ((!isConfigEntrySet($menuMode . '_menu_javascript')) || (getConfig($menuMode . '_menu_javascript') == 'N')) {
+               // Silently abort here, not enabled
+               return '';
+       } // END - if
+
+       // Prepare output
+       $OUT = ' onclick="return changeMenuFoldState(' . $menuMode . ', ' . $mainAction . ', ' . $action . ', ' . $what . ')';
+
+       // Return output
+       return $OUT;
+}
+
 //-----------------------------------------------------------------------------
-//                       Template Helper Functions
+//                     Template helper functions for EL code
 //-----------------------------------------------------------------------------
 
 // Color-switch helper function
-function doTemplateColorSwitch ($template, $clear = false, $return = true) {
+function doTemplateColorSwitch ($templateName, $clear = false, $return = true) {
        // Is it there?
-       if (!isset($GLOBALS['color_switch'][$template])) {
+       if (!isset($GLOBALS['color_switch'][$templateName])) {
                // Initialize it
-               initTemplateColorSwitch($template);
+               initTemplateColorSwitch($templateName);
        } elseif ($clear === false) {
                // Switch color if called from loadTemplate()
-               //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'SWITCH:' . $template);
-               $GLOBALS['color_switch'][$template] = 3 - $GLOBALS['color_switch'][$template];
-       } // END - if
+               //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'SWITCH:' . $templateName);
+               $GLOBALS['color_switch'][$templateName] = 3 - $GLOBALS['color_switch'][$templateName];
+       }
 
        // Return CSS class name
        if ($return === true) {
-               //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'RETURN:' . $template . '=' . $GLOBALS['color_switch'][$template]);
-               return 'switch_sw' . $GLOBALS['color_switch'][$template];
+               //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'RETURN:' . $templateName . '=' . $GLOBALS['color_switch'][$templateName]);
+               return 'switch_sw' . $GLOBALS['color_switch'][$templateName];
        } // END - if
 }
 
 // Helper function for extension registration link
-function doTemplateExtensionRegistrationLink ($template, $dummy, $ext_name) {
-       // Default is all productive
-       $OUT = '<a title="{--ADMIN_REGISTER_EXTENSION_TITLE--}" href="{%url=modules.php?module=admin&amp;what=extensions&amp;reg_ext=' . $ext_name . '%}">{--ADMIN_REGISTER_EXTENSION--}</a>';
+function doTemplateExtensionRegistrationLink ($templateName, $clear, $ext_name) {
+       // Default is all non-productive
+       $OUT = '<div style="cursor:help" title="{%message,ADMIN_EXTENSION_IS_NON_PRODUCTIVE_LINK_TITLE=' . $ext_name . '%}">{--ADMIN_EXTENSION_IS_NON_PRODUCTIVE_LINK--}</div>';
 
        // Is the given extension non-productive?
-       if (!isExtensionProductive($ext_name)) {
-               // Non-productive code
-               $OUT = '<em style="cursor:help" class="admin_note" title="{%message,ADMIN_EXTENSION_IS_NON_PRODUCTIVE_LINK_TITLE=' . $ext_name . '%}">{--ADMIN_EXTENSION_IS_NON_PRODUCTIVE_LINK--}</em>';
-       } // END - if
+       if (isExtensionDeprecated($ext_name)) {
+               // Is deprecated
+               $OUT = '<span title="{--ADMIN_EXTENSION_IS_DEPRECATED_TITLE--}">---</span>';
+       } elseif (isExtensionProductive($ext_name)) {
+               // Productive code
+               $OUT = '<a title="{--ADMIN_REGISTER_EXTENSION_TITLE--}" href="{%url=modules.php?module=admin&amp;what=extensions&amp;reg_ext=' . $ext_name . '%}">{--ADMIN_REGISTER_EXTENSION--}</a>';
+       }
 
        // Return code
        return $OUT;
 }
 
+// Helper function to create bonus mail admin links
+function doTemplateAdminBonusMailLinks ($templateName, $clear, $bonusId) {
+       // Call the inner function
+       return generateAdminMailLinks('bid', $bonusId);
+}
+
+// Helper function to create member mail admin links
+function doTemplateAdminMemberMailLinks ($templateName, $clear, $mailId) {
+       // Call the inner function
+       return generateAdminMailLinks('mid', $mailId);
+}
+
+// Helper function to create a selection box for YES/NO configuration entries
+function doTemplateConfigurationYesNoSelectionBox ($templateName, $clear, $configEntry) {
+       // Default is a "missing entry" warning
+       $OUT = '<div class="bad" style="cursor:help" title="{%message,ADMIN_CONFIG_ENTRY_MISSING=' . $configEntry . '%}">!' . $configEntry . '!</div>';
+
+       // Generate the HTML code
+       if (isConfigEntrySet($configEntry)) {
+               // Configuration entry is found
+               $OUT = '<select name="' . $configEntry . '" class="form_select" size="1">
+{%config,generateYesNoOptions=' . $configEntry . '%}
+</select>';
+       } // END - if
+
+       // Return it
+       return $OUT;
+}
+
+// Helper function to create a selection box for YES/NO form fields
+function doTemplateYesNoSelectionBox ($templateName, $clear, $formField) {
+       // Generate the HTML code
+       $OUT = '<select name="' . $formField . '" class="form_select" size="1">
+{%pipe,generateYesNoOptions%}
+</select>';
+
+       // Return it
+       return $OUT;
+}
+
+// Helper function to create a selection box for YES/NO form fields, by NO is default
+function doTemplateNoYesSelectionBox ($templateName, $clear, $formField) {
+       // Generate the HTML code
+       $OUT = '<select name="' . $formField . '" class="form_select" size="1">
+{%pipe,generateYesNoOptions=N%}
+</select>';
+
+       // Return it
+       return $OUT;
+}
+
+// Helper function to add extra content for member area (module=login)
+function doTemplateMemberFooterExtras ($templateName, $clear) {
+       // Is a member logged in?
+       if (!isMember()) {
+               // This shall not happen
+               reportBug(__FUNCTION__, __LINE__, 'Please use this template helper only for logged-in members.');
+       } // END - if
+
+       // Init filter data
+       $filterData = array(
+               // Current user's id number
+               'userid'   => getMemberId(),
+               // Name of used template
+               'template' => $templateName,
+               // Target array for gathered data
+               '__data'   => array(),
+               // Where the HTML output will go
+               '__output' => '',
+       );
+
+       // Run the filter chain
+       $filterData = runFilterChain('member_footer_extras', $filterData);
+
+       // Return output
+       return $filterData['__output'];
+}
+
+/**
+ * Helper function to determine whether current userid is set, if none is set,
+ * return a zero, else an EL code is being returned as of this function is used
+ * only in templates.
+ *
+ * @param      $templateName   Name of template (unused)
+ * @param      $clear                  Wether to clear something (unused)
+ * @return     $userId                 Wether zero or EL code snippet
+ */
+function doTemplateUserId ($templateName, $clear) {
+       // By default no userid is set
+       $userId = '0';
+
+       // Is there a user id currently set?
+       if (isCurrentUserIdSet()) {
+               // Then get the current user id
+               $userId = getCurrentUserId();
+       } // END - if
+
+       // Return it
+       return $userId;
+}
+
+// Template helper function to generate "Terms&Conditions" link (EL code again)
+function doTemplateGetTermsConditionsLink ($templateName, $clear) {
+       /*
+        * Use default link by default ;-) This link, however, will become
+        * deprecated once ext-terms is rolled out.
+        */
+       $linkCode = '{%url=modules.php?module=index&amp;what=agb%}';
+
+       // Is ext-terms installed?
+       if (isExtensionInstalled('terms')) {
+               // Then use that link (only 'what' has changed)
+               $linkCode = '{%url=modules.php?module=index&amp;what=terms%}';
+       } // END - if
+
+       // Return link (EL) code
+       return $linkCode;
+}
+
+// Template helper function to create selection box for "locked points mode"
+function doTemplatePointsLockedModeSelectionBox ($templateName, $clear = false, $default = NULL) {
+       // Init array
+       $lockedModes = array(
+               0 => array('mode' => 'LOCKED'),
+               1 => array('mode' => 'UNLOCKED'),
+       );
+
+       // Handle it over to generateSelectionBoxFromArray()
+       $content = generateSelectionBoxFromArray($lockedModes, 'points_locked_mode', 'mode', '', '', '', $default);
+
+       // Return prepared content
+       return $content;
+}
+
+// Template helper function to create selection box for payment method
+function doTemplatePointsPaymentMethodSelectionBox ($templateName, $clear = false, $default = NULL) {
+       // Init array
+       $paymentMethods = array(
+               0 => array('method' => 'DIRECT'),
+               1 => array('method' => 'REFERRAL'),
+       );
+
+       // Handle it over to generateSelectionBoxFromArray()
+       $content = generateSelectionBoxFromArray($paymentMethods, 'points_payment_method', 'method', '', '', '', $default);
+
+       // Return prepared content
+       return $content;
+}
+
+// Tries to anonymize some sensitive data (e.g. IP address, user agent, referrer, etc.)
+function anonymizeSensitiveData ($data) {
+       // Trim it
+       $data = trim($data);
+
+       // Is it empty?
+       if (empty($data)) {
+               // Then add three dashes
+               $data = '---';
+       } elseif (isUrlValid($data)) {
+               // Is a referrer, so is it black-listed?
+               if (isAdmin()) {
+                       // Is admin, has always priority
+                       $data = '[<a href="{%pipe,generateFrametesterUrl=' . $data . '%}" target="_blank">{--ADMIN_TEST_URL--}</a>]';
+               } elseif (isUrlBlacklisted($data)) {
+                       // Yes, so replace it with text
+                       $data = '<em>{--URL_IS_BLACKLISTED--}</em>';
+               } else {
+                       // A  member is viewing this referral URL
+                       $data = '[<a href="{%pipe,generateDereferrerUrl=' . $data . '%}" target="_blank">{--MEMBER_TEST_URL--}</a>]';
+               }
+       } elseif (isIp4AddressValid($data)) {
+               // Is an IPv4 address
+               $ipArray = explode('.', $data);
+
+               // Only display first 2 octets
+               $data = $ipArray[0] . '.' . $ipArray[1] . '.?.?';
+       } else {
+               // Generic data
+               $data = '<em>{--DATA_IS_HIDDEN--}</em>';
+       }
+
+       // Return it (hopefully) anonymized
+       return $data;
+}
+
+/**
+ * Removes all commentd, tabs and new-line characters to compact the content
+ *
+ * @param      $uncompactedContent             The uncompacted content
+ * @return     $compactedContent               The compacted content
+ */
+function compactContent ($uncompactedContent) {
+       // First, remove all tab/new-line/revert characters
+       $compactedContent = str_replace(chr(9), '', str_replace(chr(10), '', str_replace(chr(13), '', $uncompactedContent)));
+
+       // Then regex all comments like <!-- //--> away
+       preg_match_all('/<!--[\w\W]*?(\/\/){0,1}-->/', $compactedContent, $matches);
+
+       // Do we have entries?
+       if (isset($matches[0][0])) {
+               // Remove all
+               foreach ($matches[0] as $match) {
+                       // Remove the match
+                       $compactedContent = str_replace($match, '', $compactedContent);
+               } // END - foreach
+       } // END - if
+
+       // Set the content again
+       // @TODO Is this needed for e.g. $GLOBALS['template_content'] ? $this->setRawTemplateData($compactedContent);
+
+       // Return compacted content
+       return $compactedContent;
+}
+
 // [EOF]
 ?>