Naming convention applied: is outdated, use (not shortended word), fixed missing...
[mailer.git] / inc / template-functions.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 04/04/2009 *
4  * ===================                          Last change: 04/04/2009 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : template-functions.php                           *
8  * -------------------------------------------------------------------- *
9  * Short description : Template functions                               *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Template-Funktionen                              *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * -------------------------------------------------------------------- *
18  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
19  * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
20  * For more information visit: http://www.mxchange.org                  *
21  *                                                                      *
22  * This program is free software; you can redistribute it and/or modify *
23  * it under the terms of the GNU General Public License as published by *
24  * the Free Software Foundation; either version 2 of the License, or    *
25  * (at your option) any later version.                                  *
26  *                                                                      *
27  * This program is distributed in the hope that it will be useful,      *
28  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
29  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
30  * GNU General Public License for more details.                         *
31  *                                                                      *
32  * You should have received a copy of the GNU General Public License    *
33  * along with this program; if not, write to the Free Software          *
34  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
35  * MA  02110-1301  USA                                                  *
36  ************************************************************************/
37
38 // Some security stuff...
39 if (!defined('__SECURITY')) {
40         die();
41 } // END - if
42
43 // Wrapper until we merged to the EL branch
44 function preCompileCode ($code, $template = '', $compiled = false, $full = true, $overwrite = false) {
45         return compileCode($code, false, true, $full);
46 }
47
48 // Setter for 'is_template_html'
49 function enableTemplateHtml ($enable = true) {
50         $GLOBALS['is_template_html'] = (bool) $enable;
51 }
52
53 // Checks wether the template is HTML or not by previously set flag
54 // Default: true
55 function isTemplateHtml () {
56         // Is the output_mode other than 0 (HTML), then no comments are enabled
57         if (!isHtmlOutputMode()) {
58                 // No HTML
59                 return false;
60         } else {
61                 // Maybe HTML?
62                 return $GLOBALS['is_template_html'];
63         }
64 }
65
66 // Wrapper for writing debug informations to the browser
67 function debugOutput ($message) {
68         outputHtml('<div class="debug_message">' . $message . '</div>');
69 }
70
71 // "Fixes" an empty string into three dashes (use for templates)
72 function fixEmptyContentToDashes ($str) {
73         // Trim the string
74         $str = trim($str);
75
76         // Is the string empty?
77         if (empty($str)) $str = '---';
78
79         // Return string
80         return $str;
81 }
82
83 // Init color switch
84 function initTemplateColorSwitch ($template) {
85         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'INIT:' . $template);
86         $GLOBALS['color_switch'][$template] = 2;
87 }
88
89 // "Getter" for color switch code
90 function getColorSwitchCode ($template) {
91         // Prepare the code
92         $code = "{DQUOTE} . doTemplateColorSwitch('" . $template . "', false, false) . {DQUOTE}";
93
94         // And return it
95         return $code;
96 }
97
98 // Output HTML code directly or 'render' it. You addionally switch the new-line character off
99 function outputHtml ($htmlCode, $newLine = true) {
100         // Init output
101         if (!isset($GLOBALS['output'])) {
102                 $GLOBALS['output'] = '';
103         } // END - if
104
105         // Do we have HTML-Code here?
106         if (!empty($htmlCode)) {
107                 // Yes, so we handle it as you have configured
108                 switch (getOutputMode()) {
109                         case 'render':
110                                 // That's why you don't need any \n at the end of your HTML code... :-)
111                                 if (getPhpCaching() == 'on') {
112                                         // Output into PHP's internal buffer
113                                         outputRawCode($htmlCode);
114
115                                         // That's why you don't need any \n at the end of your HTML code... :-)
116                                         if ($newLine === true) print("\n");
117                                 } else {
118                                         // Render mode for old or lame servers...
119                                         $GLOBALS['output'] .= $htmlCode;
120
121                                         // That's why you don't need any \n at the end of your HTML code... :-)
122                                         if ($newLine === true) $GLOBALS['output'] .= "\n";
123                                 }
124                                 break;
125
126                         case 'direct':
127                                 // If we are switching from render to direct output rendered code
128                                 if ((!empty($GLOBALS['output'])) && (getPhpCaching() != 'on')) { outputRawCode($GLOBALS['output']); $GLOBALS['output'] = ''; }
129
130                                 // The same as above... ^
131                                 outputRawCode($htmlCode);
132                                 if ($newLine === true) print("\n");
133                                 break;
134
135                         default:
136                                 // Huh, something goes wrong or maybe you have edited config.php ???
137                                 debug_report_bug(__FUNCTION__, __LINE__, '<strong>{--FATAL_ERROR--}:</strong> {--NO_RENDER_DIRECT--}');
138                                 break;
139                 } // END - switch
140         } elseif ((getPhpCaching() == 'on') && ((!isset($GLOBALS['header'])) || (count($GLOBALS['header']) == 0))) {
141                 // Output cached HTML code
142                 $GLOBALS['output'] = ob_get_contents();
143
144                 // Clear output buffer for later output if output is found
145                 if (!empty($GLOBALS['output'])) {
146                         clearOutputBuffer();
147                 } // END - if
148
149                 // Send all HTTP headers
150                 sendHttpHeaders();
151
152                 // Compile and run finished rendered HTML code
153                 compileFinalOutput();
154
155                 // Output code here, DO NOT REMOVE! ;-)
156                 outputRawCode($GLOBALS['output']);
157         } elseif ((getOutputMode() == 'render') && (!empty($GLOBALS['output']))) {
158                 // Send all HTTP headers
159                 sendHttpHeaders();
160
161                 // Compile and run finished rendered HTML code
162                 compileFinalOutput();
163
164                 // Output code here, DO NOT REMOVE! ;-)
165                 outputRawCode($GLOBALS['output']);
166         } else {
167                 // And flush all headers
168                 flushHeaders();
169         }
170 }
171
172 // Compiles the final output
173 function compileFinalOutput () {
174         // Add page header and footer
175         addPageHeaderFooter();
176
177         // Do the final compilation
178         $GLOBALS['output'] = doFinalCompilation($GLOBALS['output']);
179
180         // Extension 'rewrite' installed?
181         if ((isExtensionActive('rewrite')) && (!isCssOutputMode())) {
182                 $GLOBALS['output'] = rewriteLinksInCode($GLOBALS['output']);
183         } // END - if
184
185         // Compress it?
186         /**
187          * @TODO On some pages this is buggy
188         if (!empty($_SERVER['HTTP_ACCEPT_ENCODING']) && (strpos('gzip', $_SERVER['HTTP_ACCEPT_ENCODING']) !== null)) {
189                 // Compress it for HTTP gzip
190                 $GLOBALS['output'] = gzencode($GLOBALS['output'], 9);
191
192                 // Add header
193                 sendHeader('Content-Encoding: gzip');
194         } elseif (!empty($_SERVER['HTTP_ACCEPT_ENCODING']) && (strpos('deflate', $_SERVER['HTTP_ACCEPT_ENCODING']) !== null)) {
195                 // Compress it for HTTP deflate
196                 $GLOBALS['output'] = gzcompress($GLOBALS['output'], 9);
197
198                 // Add header
199                 sendHeader('Content-Encoding: deflate');
200         }
201         */
202
203         // Add final length
204         sendHeader('Content-Length: ' . strlen($GLOBALS['output']));
205
206         // Flush all headers
207         flushHeaders();
208 }
209
210 // Main compilation loop
211 function doFinalCompilation ($code, $insertComments = true, $enableCodes = true) {
212         // Insert comments? (Only valid with HTML templates, of course)
213         enableTemplateHtml($insertComments);
214
215         // Init counter
216         $count = 0;
217
218         // Compile all out
219         while (((strpos($code, '{--') !== false) || (strpos($code, '{DQUOTE}') !== false) || (strpos($code, '{?') !== false) || (strpos($code, '{%') !== false)) && ($count < 5)) {
220                 // Init common variables
221                 $content = array();
222                 $newContent = '';
223
224                 // Compile it
225                 //* DEBUG: */ debugOutput('<pre>'.linenumberCode($code).'</pre>');
226                 $eval = '$newContent = "' . str_replace('{DQUOTE}', '"', compileCode(escapeQuotes($code), false, true, $enableCodes)) . '";';
227                 //* DEBUG: */ if (!$insertComments) print('EVAL=<pre>'.linenumberCode($eval).'</pre>');
228                 eval($eval);
229                 //* DEBUG: */ if (!$insertComments) print('NEW=<pre>'.linenumberCode($newContent).'</pre>');
230                 //* DEBUG: */ die('<pre>'.encodeEntities($newContent).'</pre>');
231
232                 // Was that eval okay?
233                 if (empty($newContent)) {
234                         // Something went wrong!
235                         debug_report_bug(__FUNCTION__, __LINE__, 'Evaluation error:<pre>' . linenumberCode($eval) . '</pre>', false);
236                 } // END - if
237
238                 // Use it again
239                 $code = $newContent;
240
241                 // Count round
242                 $count++;
243         } // END - while
244
245         // Return the compiled code
246         return $code;
247 }
248
249 // Output the raw HTML code
250 function outputRawCode ($htmlCode) {
251         // Output stripped HTML code to avoid broken JavaScript code, etc.
252         print(str_replace('{BACK}', "\\", $htmlCode));
253
254         // Flush the output if only getPhpCaching() is not 'on'
255         if (getPhpCaching() != 'on') {
256                 // Flush it
257                 flush();
258         } // END - if
259 }
260
261 // Load a template file and return it's content (only it's name; do not use ' or ")
262 function loadTemplate ($template, $return = false, $content = array()) {
263         // @TODO Remove this sanity-check if all is fine
264         if (!is_bool($return)) debug_report_bug(__FUNCTION__, __LINE__, 'return is not bool (' . gettype($return) . ')');
265
266         // Set current template
267         $GLOBALS['current_template'] = $template;
268
269         // Do we have cache?
270         if ((isDebuggingTemplateCache() === false) && (isTemplateCached($template))) {
271                 // Evaluate the cache
272                 eval(readTemplateCache($template));
273         } elseif (!isset($GLOBALS['template_eval'][$template])) {
274                 // Make all template names lowercase
275                 $template = strtolower($template);
276
277                 // Init some data
278                 $ret = '';
279
280                 // Base directory
281                 $basePath = sprintf("%stemplates/%s/html/", getPath(), getLanguage());
282                 $extraPath = detectExtraTemplatePath($template);;
283
284                 // Generate FQFN
285                 $FQFN = $basePath . $extraPath . $template . '.tpl';
286
287                 // Does the special template exists?
288                 if (!isFileReadable($FQFN)) {
289                         // Reset to default template
290                         $FQFN = $basePath . $template . '.tpl';
291                 } // END - if
292
293                 // Now does the final template exists?
294                 if (isFileReadable($FQFN)) {
295                         // Count the template load
296                         incrementConfigEntry('num_templates');
297
298                         // The local file does exists so we load it. :)
299                         $GLOBALS['tpl_content'][$template] = readFromFile($FQFN);
300
301                         // Do we have to compile the code?
302                         $ret = '';
303                         if ((strpos($GLOBALS['tpl_content'][$template], '$') !== false) || (strpos($GLOBALS['tpl_content'][$template], '{--') !== false) || (strpos($GLOBALS['tpl_content'][$template], '{?') !== false) || (strpos($GLOBALS['tpl_content'][$template], '{%') !== false)) {
304                                 // Normal HTML output?
305                                 if (isHtmlOutputMode()) {
306                                         // Add surrounding HTML comments to help finding bugs faster
307                                         $ret = '<!-- Template ' . $template . ' - Start //-->' . $GLOBALS['tpl_content'][$template] . '<!-- Template ' . $template . ' - End //-->';
308
309                                         // Prepare eval() command
310                                         $GLOBALS['template_eval'][$template] = '$ret = "' . getColorSwitchCode($template) . compileCode(escapeQuotes($ret)) . '";';
311                                 } elseif (substr($template, 0, 3) == 'js_') {
312                                         // JavaScripts don't like entities and timings
313                                         $GLOBALS['template_eval'][$template] = '$ret = decodeEntities("' . compileRawCode(escapeJavaScriptQuotes($GLOBALS['tpl_content'][$template])) . '");';
314                                 } else {
315                                         // Prepare eval() command, other output doesn't like entities, maybe
316                                         $GLOBALS['template_eval'][$template] = '$ret = decodeEntities("' . compileRawCode(escapeQuotes($GLOBALS['tpl_content'][$template])) . '");';
317                                 }
318                         } else {
319                                 // Add surrounding HTML comments to help finding bugs faster
320                                 $ret = '<!-- Template ' . $template . ' - Start //-->' . $GLOBALS['tpl_content'][$template] . '<!-- Template ' . $template . ' - End //-->';
321                                 $GLOBALS['template_eval'][$template] = '$ret = "' . getColorSwitchCode($template) . compileRawCode(escapeQuotes($ret)) . '";';
322                         } // END - if
323                 } elseif ((isAdmin()) || ((isInstalling()) && (!isInstalled()))) {
324                         // Only admins shall see this warning or when installation mode is active
325                         $ret = '<div class="para">
326         <span class="notice">{--TEMPLATE_404--}</span>
327 </div>
328 <div class="para">
329         (' . $template . ')
330 </div>
331 <div class="para">
332         {--TEMPLATE_CONTENT--}
333         <pre>' . print_r($content, true) . '</pre>
334 </div>';
335                 } else {
336                         // No file!
337                         $GLOBALS['template_eval'][$template] = '404';
338                 }
339         }
340
341         // Code set?
342         if ((isset($GLOBALS['template_eval'][$template])) && ($GLOBALS['template_eval'][$template] != '404')) {
343                 // Eval the code
344                 eval($GLOBALS['template_eval'][$template]);
345         } // END - if
346
347         // Do we have some content to output or return?
348         if (!empty($ret)) {
349                 // Not empty so let's put it out! ;)
350                 if ($return === true) {
351                         // Return the HTML code
352                         return $ret;
353                 } else {
354                         // Output directly
355                         outputHtml($ret);
356                 }
357         } elseif (isDebugModeEnabled()) {
358                 // Warning, empty output!
359                 return 'E:' . $template . ',content=<pre>' . print_r($content, true) . '</pre>';
360         }
361 }
362
363 // Detects the extra template path from given template name
364 function detectExtraTemplatePath ($template) {
365         // Default is empty
366         $extraPath = '';
367
368         // Do we have cache?
369         if (!isset($GLOBALS['extra_path'][$template])) {
370                 // Check for admin/guest/member/etc. templates
371                 if (substr($template, 0, 6) == 'admin_') {
372                         // Admin template found
373                         $extraPath = 'admin/';
374                 } elseif (substr($template, 0, 6) == 'guest_') {
375                         // Guest template found
376                         $extraPath = 'guest/';
377                 } elseif (substr($template, 0, 7) == 'member_') {
378                         // Member template found
379                         $extraPath = 'member/';
380                 } elseif (substr($template, 0, 7) == 'select_') {
381                         // Selection template found
382                         $extraPath = 'select/';
383                 } elseif (substr($template, 0, 8) == 'install_') {
384                         // Installation template found
385                         $extraPath = 'install/';
386                 } elseif (substr($template, 0, 4) == 'ext_') {
387                         // Extension template found
388                         $extraPath = 'ext/';
389                 } elseif (substr($template, 0, 3) == 'la_') {
390                         // 'Logical-area' template found
391                         $extraPath = 'la/';
392                 } elseif (substr($template, 0, 3) == 'js_') {
393                         // JavaScript template found
394                         $extraPath = 'js/';
395                 } elseif (substr($template, 0, 5) == 'menu_') {
396                         // Menu template found
397                         $extraPath = 'menu/';
398                 } else {
399                         // Test for extension
400                         $test = substr($template, 0, strpos($template, '_'));
401
402                         // Probe for valid extension name
403                         if (isExtensionNameValid($test)) {
404                                 // Set extra path to extension's name
405                                 $extraPath = $test . '/';
406                         } // END - if
407                 }
408
409                 // Store it in cache
410                 $GLOBALS['extra_path'][$template] = $extraPath;
411         } // END - if
412
413         // Return result
414         return $GLOBALS['extra_path'][$template];
415 }
416
417 // Loads an email template and compiles it
418 function loadEmailTemplate ($template, $content = array(), $userid = '0') {
419         global $DATA;
420
421         // Make sure all template names are lowercase!
422         $template = strtolower($template);
423
424         // Is content an array?
425         if (is_array($content)) {
426                 // Add expiration to array
427                 if ((isConfigEntrySet('auto_purge')) && (getAutoPurge() == '0')) {
428                         // Will never expire!
429                         $content['expiration'] = '{--MAIL_WILL_NEVER_EXPIRE--}';
430                 } elseif (isConfigEntrySet('auto_purge')) {
431                         // Create nice date string
432                         $content['expiration'] = '{%pipe,getAutoPurge,createFancyTime%}';
433                 } else {
434                         // Missing entry
435                         $content['expiration'] = '{--MAIL_NO_CONFIG_AUTO_PURGE--}';
436                 }
437         } // END - if
438
439         // Load user's data
440         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "UID={$userid},template={$template},content[]=".gettype($content));
441         if ((isValidUserId($userid)) && (is_array($content))) {
442                 // If nickname extension is installed, fetch nickname as well
443                 if ((isExtensionActive('nickname')) && (isNicknameUsed($userid))) {
444                         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "NICKNAME!<br />");
445                         // Load by nickname
446                         fetchUserData($userid, 'nickname');
447                 } else {
448                         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "NO-NICK!<br />");
449                         /// Load by userid
450                         fetchUserData($userid);
451                 }
452
453                 // Merge data if valid
454                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "content()=".count($content)." - PRE<br />");
455                 if (isUserDataValid()) {
456                         $content = merge_array($content, getUserDataArray());
457                 } // END - if
458                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "content()=".count($content)." - AFTER<br />");
459         } // END - if
460
461         // Base directory
462         $basePath = sprintf("%stemplates/%s/emails/", getPath(), getLanguage());
463
464         // Detect extra path
465         $extraPath = detectExtraTemplatePath($template);
466
467         // Generate full FQFN
468         $FQFN = $basePath . $extraPath . $template . '.tpl';
469
470         // Does the special template exists?
471         if (!isFileReadable($FQFN)) {
472                 // Reset to default template
473                 $FQFN = $basePath . $template . '.tpl';
474         } // END - if
475
476         // Now does the final template exists?
477         $newContent = '';
478         if (isFileReadable($FQFN)) {
479                 // The local file does exists so we load it. :)
480                 $GLOBALS['tpl_content'][$template] = readFromFile($FQFN);
481
482                 // Run code
483                 $GLOBALS['tpl_content'][$template] = '$newContent = decodeEntities("' . compileRawCode(escapeQuotes($GLOBALS['tpl_content'][$template])) . '");';
484                 eval($GLOBALS['tpl_content'][$template]);
485         } elseif (!empty($template)) {
486                 // Template file not found!
487                 $newContent = '<div class="para">
488         {--TEMPLATE_404--}: ' . $template . '
489 </div>
490 <div class="para">
491         {--TEMPLATE_CONTENT--}
492         <pre>' . print_r($content, true) . '</pre>
493         {--TEMPLATE_DATA--}
494         <pre>' . print_r($DATA, true) . '</pre>
495 </div>';
496
497                 // Debug mode not active? Then remove the HTML tags
498                 if (!isDebugModeEnabled()) {
499                         // Remove HTML tags
500                         $newContent = secureString($newContent);
501                 } // END - if
502         } else {
503                 // No template name supplied!
504                 $newContent = '{--NO_TEMPLATE_SUPPLIED--}';
505         }
506
507         // Is there some content?
508         if (empty($newContent)) {
509                 // Compiling failed
510                 $newContent = "Compiler error for template " . $template . " !\nUncompiled content:\n" . $GLOBALS['tpl_content'][$template];
511
512                 // Add last error if the required function exists
513                 if (function_exists('error_get_last')) $newContent .= "\n--------------------------------------\nDebug:\n".print_r(error_get_last(), true)."--------------------------------------\nPlease don't alter these informations!\nThanx.";
514         } // END - if
515
516         // Remove content and data
517         unset($content);
518         unset($DATA);
519
520         // Return content
521         return $newContent;
522 }
523
524 // "Getter" for menu CSS classes, mainly used in templates
525 function getMenuCssClasses ($data) {
526         // $data needs to be converted into an array
527         $content = explode('|', $data);
528
529         // Non-existent index 2 will happen in menu blocks
530         if (!isset($content[2])) $content[2] = '';
531
532         // Re-construct the array: 0=visible,1=locked,2=prefix
533         $content['visible'] = $content[0];
534         $content['locked']  = $content[1];
535
536         // Call our "translator" function
537         $content = translateMenuVisibleLocked($content, $content[2]);
538
539         // Return CSS classes
540         return ($content['visible_css'] . ' ' . $content['locked_css']);
541 }
542
543 // Generate XHTML code for the CAPTCHA
544 function generateCaptchaCode ($code, $type, $DATA, $userid) {
545         return '<img border="0" alt="Code ' . $code . '" src="{%url=mailid_top.php?userid=' . $userid . '&amp;' . $type . '=' . $DATA . '&amp;mode=img&amp;code=' . $code . '%}" />';
546 }
547
548 // Compiles the given HTML/mail code
549 function compileCode ($code, $simple = false, $constants = true, $full = true) {
550         // Is the code a string?
551         if (!is_string($code)) {
552                 // Silently return it
553                 return $code;
554         } // END - if
555
556         // Start couting
557         $startCompile = microtime(true);
558
559         // Comile the code
560         $code = compileRawCode($code, $simple, $constants, $full);
561
562         // Get timing
563         $compiled = microtime(true);
564
565         // Add timing if enabled
566         if (isTemplateHtml()) {
567                 // Add timing, this should be disabled in
568                 $code .= '<!-- Compilation time: ' . (($compiled - $startCompile) * 1000). 'ms //-->';
569         } // END - if
570
571         // Return compiled code
572         return $code;
573 }
574
575 // Compiles the code (use compileCode() only for HTML because of the comments)
576 // @TODO $simple/$constants are deprecated
577 function compileRawCode ($code, $simple = false, $constants = true, $full = true) {
578         // Is the code a string?
579         if (!is_string($code)) {
580                 // Silently return it
581                 return $code;
582         } // END - if
583
584         // Init replacement-array with smaller set of security characters
585         $secChars = $GLOBALS['url_chars'];
586
587         // Select full set of chars to replace when we e.g. want to compile URLs
588         if ($full === true) $secChars = $GLOBALS['security_chars'];
589
590         // Compile more through a filter
591         $code = runFilterChain('compile_code', $code);
592
593         // Compile message strings
594         $code = str_replace('{--', '{%message,', str_replace('--}', '%}', $code));
595
596         // Compile QUOT and other non-HTML codes
597         foreach ($secChars['to'] as $k => $to) {
598                 // Do the reversed thing as in inc/libs/security_functions.php
599                 $code = str_replace($to, $secChars['from'][$k], $code);
600         } // END - foreach
601
602         // Find $content[bla][blub] entries
603         // @TODO Do only use $content and deprecate $GLOBALS and $DATA in templates
604         preg_match_all('/\$(content|GLOBALS|DATA)((\[([a-zA-Z0-9-_]+)\])*)/', $code, $matches);
605
606         // Are some matches found?
607         if ((count($matches) > 0) && (count($matches[0]) > 0)) {
608                 // Replace all matches
609                 $matchesFound = array();
610                 foreach ($matches[0] as $key => $match) {
611                         // Fuzzy look has failed by default
612                         $fuzzyFound = false;
613
614                         // Fuzzy look on match if already found
615                         foreach ($matchesFound as $found => $set) {
616                                 // Get test part
617                                 $test = substr($found, 0, strlen($match));
618
619                                 // Does this entry exist?
620                                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "found={$found},match={$match},set={$set}<br />");
621                                 if ($test == $match) {
622                                         // Match found!
623                                         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "fuzzyFound!<br />");
624                                         $fuzzyFound = true;
625                                         break;
626                                 } // END - if
627                         } // END - foreach
628
629                         // Skip this entry?
630                         if ($fuzzyFound === true) continue;
631
632                         // Take all string elements
633                         if ((is_string($matches[4][$key])) && (!isset($matchesFound[$match])) && (!isset($matchesFound[$key.'_' . $matches[4][$key]]))) {
634                                 // Replace it in the code
635                                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "key={$key},match={$match}<br />");
636                                 $newMatch = str_replace('[', "['", str_replace(']', "']", $match));
637                                 $code = str_replace($match, '".' . $newMatch . '."', $code);
638                                 $matchesFound[$key . '_' . $matches[4][$key]] = 1;
639                                 $matchesFound[$match] = 1;
640                         } elseif (!isset($matchesFound[$match])) {
641                                 // Not yet replaced!
642                                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "match={$match}<br />");
643                                 $code = str_replace($match, '".' . $match . '."', $code);
644                                 $matchesFound[$match] = 1;
645                         }
646                 } // END - foreach
647         } // END - if
648
649         // Return it
650         return $code;
651 }
652
653 //
654 function addSelectionBox ($type, $default, $prefix = '', $id = '0', $class = 'form_select') {
655         $OUT = '';
656
657         if ($type == 'yn') {
658                 // This is a yes/no selection only!
659                 if ($id > 0) $prefix .= '[' . $id . ']';
660                 $OUT .= '<select name="' . $prefix . '" class="' . $class . '" size="1">';
661         } else {
662                 // Begin with regular selection box here
663                 if (!empty($prefix)) $prefix .= '_';
664                 $type2 = $type;
665                 if ($id > 0) $type2 .= '[' . $id . ']';
666                 $OUT .= '<select name="' . strtolower($prefix . $type2) . '" class="' . $class . '" size="1">';
667         }
668
669         switch ($type) {
670                 case 'day': // Day
671                         for ($idx = 1; $idx < 32; $idx++) {
672                                 $OUT .= '<option value="' . $idx . '"';
673                                 if ($default == $idx) $OUT .= ' selected="selected"';
674                                 $OUT .= '>' . $idx . '</option>';
675                         } // END - for
676                         break;
677
678                 case 'month': // Month
679                         foreach ($GLOBALS['month_descr'] as $idx => $descr) {
680                                 $OUT .= '<option value="' . $idx . '"';
681                                 if ($default == $idx) $OUT .= ' selected="selected"';
682                                 $OUT .= '>' . $descr . '</option>';
683                         } // END - for
684                         break;
685
686                 case 'year': // Year
687                         // Get current year
688                         $year = getYear();
689
690                         // Use configured min age or fixed?
691                         if (isExtensionInstalledAndNewer('order', '0.2.1')) {
692                                 // Configured
693                                 $startYear = $year - getConfig('min_age');
694                         } else {
695                                 // Fixed 16 years
696                                 $startYear = $year - 16;
697                         }
698
699                         // Calculate earliest year (100 years old people can still enter Internet???)
700                         $minYear = $year - 100;
701
702                         // Check if the default value is larger than minimum and bigger than actual year
703                         if (($default > $minYear) && ($default >= $year)) {
704                                 for ($idx = $year; $idx < ($year + 11); $idx++) {
705                                         $OUT .= '<option value="' . $idx . '"';
706                                         if ($default == $idx) $OUT .= ' selected="selected"';
707                                         $OUT .= '>' . $idx . '</option>';
708                                 } // END - for
709                         } elseif ($default == -1) {
710                                 // Current year minus 1
711                                 for ($idx = $startYear; $idx <= ($year + 1); $idx++) {
712                                         $OUT .= '<option value="' . $idx . '">' . $idx . '</option>';
713                                 } // END - for
714                         } else {
715                                 // Get current year and subtract the configured minimum age
716                                 $OUT .= '<option value="' . ($minYear - 1) . '">&lt;' . $minYear . '</option>';
717                                 // Calculate earliest year depending on extension version
718                                 if (isExtensionInstalledAndNewer('order', '0.2.1')) {
719                                         // Use configured minimum age
720                                         $year = getYear() - getConfig('min_age');
721                                 } else {
722                                         // Use fixed 16 years age
723                                         $year = getYear() - 16;
724                                 }
725
726                                 // Construct year selection list
727                                 for ($idx = $minYear; $idx <= $year; $idx++) {
728                                         $OUT .= '<option value="' . $idx . '"';
729                                         if ($default == $idx) $OUT .= ' selected="selected"';
730                                         $OUT .= '>' . $idx . '</option>';
731                                 } // END - for
732                         }
733                         break;
734
735                 case 'sec':
736                 case 'min':
737                         for ($idx = 0; $idx < 60; $idx+=5) {
738                                 if (strlen($idx) == 1) $idx = '0' . $idx;
739                                 $OUT .= '<option value="' . $idx . '"';
740                                 if ($default == $idx) $OUT .= ' selected="selected"';
741                                 $OUT .= '>' . $idx . '</option>';
742                         } // END - for
743                         break;
744
745                 case 'hour':
746                         for ($idx = 0; $idx < 24; $idx++) {
747                                 if (strlen($idx) == 1) $idx = '0' . $idx;
748                                 $OUT .= '<option value="' . $idx . '"';
749                                 if ($default == $idx) $OUT .= ' selected="selected"';
750                                 $OUT .= '>' . $idx . '</option>';
751                         } // END - for
752                         break;
753
754                 case 'yn':
755                         $OUT .= '<option value="Y"';
756                         if ($default == 'Y') $OUT .= ' selected="selected"';
757                         $OUT .= '>{--YES--}</option><option value="N"';
758                         if ($default != 'Y') $OUT .= ' selected="selected"';
759                         $OUT .= '>{--NO--}</option>';
760                         break;
761         }
762         $OUT .= '</select>';
763         return $OUT;
764 }
765
766 // Insert the code in $img_code into jpeg or PNG image
767 function generateImageOrCode ($img_code, $headerSent = true) {
768         // Is the code size oversized or shouldn't we display it?
769         if ((strlen($img_code) > 6) || (empty($img_code)) || (getCodeLength() == '0')) {
770                 // Stop execution of function here because of over-sized code length
771                 debug_report_bug(__FUNCTION__, __LINE__, 'img_code ' . $img_code .' has invalid length. img_code()=' . strlen($img_code) . ' code_length=' . getCodeLength());
772         } elseif ($headerSent === false) {
773                 // Return an HTML code here
774                 return '<img src="{%url=img.php?code=' . $img_code . '%}" alt="Image" />';
775         }
776
777         // Load image
778         $img = sprintf("%s/theme/%s/images/code_bg.%s",
779                 getPath(),
780                 getCurrentTheme(),
781                 getImgType()
782         );
783
784         // Is it readable?
785         if (isFileReadable($img)) {
786                 // Switch image type
787                 switch (getImgType()) {
788                         case 'jpg': // Okay, load image and hide all errors
789                                 $image = imagecreatefromjpeg($img);
790                                 break;
791
792                         case 'png': // Okay, load image and hide all errors
793                                 $image = imagecreatefrompng($img);
794                                 break;
795                 } // END - switch
796         } else {
797                 // Silently log the error
798                 logDebugMessage(__FUNCTION__, __LINE__, sprintf("File for image-type %s in theme %s not found.", getImgType(), getCurrentTheme()));
799                 return;
800         }
801
802         // Generate text color (red/green/blue; 0 = dark, 255 = bright)
803         $text_color = imagecolorallocate($image, 0, 0, 0);
804
805         // Insert code into image
806         imagestring($image, 5, 14, 2, $img_code, $text_color);
807
808         // Return to browser
809         setContentType('image/' . getImgType());
810
811         // Output image with matching image factory
812         switch (getImgType()) {
813                 case 'jpg': imagejpeg($image); break;
814                 case 'png': imagepng($image);  break;
815         } // END - switch
816
817         // Remove image from memory
818         imagedestroy($image);
819 }
820 // Create selection box or array of splitted timestamp
821 function createTimeSelections ($timestamp, $prefix = '', $display = '', $align = 'center', $return_array=false) {
822         // Do not continue if ONE_DAY is absend
823         if (!isConfigEntrySet('ONE_DAY')) {
824                 // And return the timestamp itself or empty array
825                 if ($return_array === true) {
826                         return array();
827                 } else {
828                         return $timestamp;
829                 }
830         } // END - if
831
832         // Calculate 2-seconds timestamp
833         $stamp = round($timestamp);
834         //* DEBUG: */ debugOutput('*' . $stamp .'/' . $timestamp . '*');
835
836         // Do we have a leap year?
837         $SWITCH = '0';
838         $TEST = getYear() / 4;
839         $M1 = getMonth();
840         $M2 = getMonth(time() + $timestamp);
841
842         // If so and if current time is before 02/29 and estimated time is after 02/29 then add 86400 seconds (one day)
843         if ((floor($TEST) == $TEST) && ($M1 == '02') && ($M2 > '02'))  $SWITCH = getOneDay();
844
845         // First of all years...
846         $Y = abs(floor($timestamp / (31536000 + $SWITCH)));
847         //* DEBUG: */ debugOutput('Y=' . $Y);
848         // Next months...
849         $M = abs(floor($timestamp / 2628000 - $Y * 12));
850         //* DEBUG: */ debugOutput('M=' . $M);
851         // Next weeks
852         $W = abs(floor($timestamp / 604800 - $Y * ((365 + $SWITCH / getOneDay()) / 7) - ($M / 12 * (365 + $SWITCH / getOneDay()) / 7)));
853         //* DEBUG: */ debugOutput('W=' . $W);
854         // Next days...
855         $D = abs(floor($timestamp / 86400 - $Y * (365 + $SWITCH / getOneDay()) - ($M / 12 * (365 + $SWITCH / getOneDay())) - $W * 7));
856         //* DEBUG: */ debugOutput('D=' . $D);
857         // Next hours...
858         $h = abs(floor($timestamp / 3600 - $Y * (365 + $SWITCH / getOneDay()) * 24 - ($M / 12 * (365 + $SWITCH / getOneDay()) * 24) - $W * 7 * 24 - $D * 24));
859         //* DEBUG: */ debugOutput('h=' . $h);
860         // Next minutes..
861         $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));
862         //* DEBUG: */ debugOutput('m=' . $m);
863         // And at last seconds...
864         $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));
865         //* DEBUG: */ debugOutput('s=' . $s);
866
867         // Is seconds zero and time is < 60 seconds?
868         if (($s == '0') && ($timestamp < 60)) {
869                 // Fix seconds
870                 $s = round($timestamp);
871         } // END - if
872
873         //
874         // Now we convert them in seconds...
875         //
876         if ($return_array) {
877                 // Just put all data in an array for later use
878                 $OUT = array(
879                         'YEARS'   => $Y,
880                         'MONTHS'  => $M,
881                         'WEEKS'   => $W,
882                         'DAYS'    => $D,
883                         'HOURS'   => $h,
884                         'MINUTES' => $m,
885                         'SECONDS' => $s
886                 );
887         } else {
888                 // Generate table
889                 $OUT  = '<div align="' . $align . '">';
890                 $OUT .= '<table border="0" cellspacing="0" cellpadding="0" class="timebox_table dashed">';
891                 $OUT .= '<tr>';
892
893                 if (isInString('Y', $display) || (empty($display))) {
894                         $OUT .= '<td align="center" class="timebox_column bottom"><div class="tiny">{--_YEARS--}</strong></td>';
895                 } // END - if
896
897                 if (isInString('M', $display) || (empty($display))) {
898                         $OUT .= '<td align="center" class="timebox_column bottom"><div class="tiny">{--_MONTHS--}</strong></td>';
899                 } // END - if
900
901                 if (isInString('W', $display) || (empty($display))) {
902                         $OUT .= '<td align="center" class="timebox_column bottom"><div class="tiny">{--_WEEKS--}</strong></td>';
903                 } // END - if
904
905                 if (isInString('D', $display) || (empty($display))) {
906                         $OUT .= '<td align="center" class="timebox_column bottom"><div class="tiny">{--_DAYS--}</strong></td>';
907                 } // END - if
908
909                 if (isInString('h', $display) || (empty($display))) {
910                         $OUT .= '<td align="center" class="timebox_column bottom"><div class="tiny">{--_HOURS--}</strong></td>';
911                 } // END - if
912
913                 if (isInString('m', $display) || (empty($display))) {
914                         $OUT .= '<td align="center" class="timebox_column bottom"><div class="tiny">{--_MINUTES--}</strong></td>';
915                 } // END - if
916
917                 if (isInString('s', $display) || (empty($display))) {
918                         $OUT .= '<td align="center" class="timebox_column bottom"><div class="tiny">{--_SECONDS--}</strong></td>';
919                 } // END - if
920
921                 $OUT .= '</tr>';
922                 $OUT .= '<tr>';
923
924                 if (isInString('Y', $display) || (empty($display))) {
925                         // Generate year selection
926                         $OUT .= '<td align="center"><select class="mini_select" name="' . $prefix . '_ye" size="1">';
927                         for ($idx = 0; $idx <= 10; $idx++) {
928                                 $OUT .= '<option class="mini_select" value="' . $idx . '"';
929                                 if ($idx == $Y) $OUT .= ' selected="selected"';
930                                 $OUT .= '>' . $idx . '</option>';
931                         } // END - for
932                         $OUT .= '</select></td>';
933                 } else {
934                         $OUT .= '<input type="hidden" name="' . $prefix . '_ye" value="0" />';
935                 }
936
937                 if (isInString('M', $display) || (empty($display))) {
938                         // Generate month selection
939                         $OUT .= '<td align="center"><select class="mini_select" name="' . $prefix . '_mo" size="1">';
940                         for ($idx = 0; $idx <= 11; $idx++) {
941                                 $OUT .= '  <option class="mini_select" value="' . $idx . '"';
942                                 if ($idx == $M) $OUT .= ' selected="selected"';
943                                 $OUT .= '>' . $idx . '</option>';
944                         } // END - for
945                         $OUT .= '</select></td>';
946                 } else {
947                         $OUT .= '<input type="hidden" name="' . $prefix . '_mo" value="0" />';
948                 }
949
950                 if (isInString('W', $display) || (empty($display))) {
951                         // Generate week selection
952                         $OUT .= '<td align="center"><select class="mini_select" name="' . $prefix . '_we" size="1">';
953                         for ($idx = 0; $idx <= 4; $idx++) {
954                                 $OUT .= '  <option class="mini_select" value="' . $idx . '"';
955                                 if ($idx == $W) $OUT .= ' selected="selected"';
956                                 $OUT .= '>' . $idx . '</option>';
957                         } // END - for
958                         $OUT .= '</select></td>';
959                 } else {
960                         $OUT .= '<input type="hidden" name="' . $prefix . '_we" value="0" />';
961                 }
962
963                 if (isInString('D', $display) || (empty($display))) {
964                         // Generate day selection
965                         $OUT .= '<td align="center"><select class="mini_select" name="' . $prefix . '_da" size="1">';
966                         for ($idx = 0; $idx <= 31; $idx++) {
967                                 $OUT .= '  <option class="mini_select" value="' . $idx . '"';
968                                 if ($idx == $D) $OUT .= ' selected="selected"';
969                                 $OUT .= '>' . $idx . '</option>';
970                         } // END - for
971                         $OUT .= '</select></td>';
972                 } else {
973                         $OUT .= '<input type="hidden" name="' . $prefix . '_da" value="0" />';
974                 }
975
976                 if (isInString('h', $display) || (empty($display))) {
977                         // Generate hour selection
978                         $OUT .= '<td align="center"><select class="mini_select" name="' . $prefix . '_ho" size="1">';
979                         for ($idx = 0; $idx <= 23; $idx++) {
980                                 $OUT .= '  <option class="mini_select" value="' . $idx . '"';
981                                 if ($idx == $h) $OUT .= ' selected="selected"';
982                                 $OUT .= '>' . $idx . '</option>';
983                         } // END - for
984                         $OUT .= '</select></td>';
985                 } else {
986                         $OUT .= '<input type="hidden" name="' . $prefix . '_ho" value="0" />';
987                 }
988
989                 if (isInString('m', $display) || (empty($display))) {
990                         // Generate minute selection
991                         $OUT .= '<td align="center"><select class="mini_select" name="' . $prefix . '_mi" size="1">';
992                         for ($idx = 0; $idx <= 59; $idx++) {
993                                 $OUT .= '  <option class="mini_select" value="' . $idx . '"';
994                                 if ($idx == $m) $OUT .= ' selected="selected"';
995                                 $OUT .= '>' . $idx . '</option>';
996                         } // END - for
997                         $OUT .= '</select></td>';
998                 } else {
999                         $OUT .= '<input type="hidden" name="' . $prefix . '_mi" value="0" />';
1000                 }
1001
1002                 if (isInString('s', $display) || (empty($display))) {
1003                         // Generate second selection
1004                         $OUT .= '<td align="center"><select class="mini_select" name="' . $prefix . '_se" size="1">';
1005                         for ($idx = 0; $idx <= 59; $idx++) {
1006                                 $OUT .= '  <option class="mini_select" value="' . $idx . '"';
1007                                 if ($idx == $s) $OUT .= ' selected="selected"';
1008                                 $OUT .= '>' . $idx . '</option>';
1009                         } // END - for
1010                         $OUT .= '</select></td>';
1011                 } else {
1012                         $OUT .= '<input type="hidden" name="' . $prefix . '_se" value="0" />';
1013                 }
1014                 $OUT .= '</tr>';
1015                 $OUT .= '</table>';
1016                 $OUT .= '</div>';
1017         }
1018
1019         // Return generated HTML code
1020         return $OUT;
1021 }
1022
1023 // Generate a list of administrative links to a given userid
1024 function generateMemberAdminActionLinks ($userid) {
1025         // Make sure userid is a number
1026         if ($userid != bigintval($userid)) debug_report_bug(__FUNCTION__, __LINE__, 'userid is not a number!');
1027
1028         // Define all main targets
1029         $targetArray = array('del_user', 'edit_user', 'lock_user', 'add_points', 'sub_points');
1030
1031         // Get user status
1032         $status = getFetchedUserData('userid', $userid, 'status');
1033
1034         // Begin of navigation links
1035         $OUT = '[';
1036
1037         foreach ($targetArray as $tar) {
1038                 $OUT .= '<span class="admin_user_link"><a href="{%url=modules.php?module=admin&amp;what=' . $tar . '&amp;userid=' . $userid . '%}" title="{--ADMIN_USER_ACTION_LINK_';
1039                 //* DEBUG: */ debugOutput('*' . $tar.'/' . $status.'*');
1040                 if (($tar == 'lock_user') && ($status == 'LOCKED')) {
1041                         // Locked accounts shall be unlocked
1042                         $OUT .= 'UNLOCK_USER';
1043                 } elseif ($tar == 'del_user') {
1044                         // @TODO Deprecate this thing
1045                         $OUT .= 'DELETE_USER';
1046                 } else {
1047                         // All other status is fine
1048                         $OUT .= strtoupper($tar);
1049                 }
1050                 $OUT .= '_TITLE--}">{--ADMIN_USER_ACTION_LINK_';
1051                 if (($tar == 'lock_user') && ($status == 'LOCKED')) {
1052                         // Locked accounts shall be unlocked
1053                         $OUT .= 'UNLOCK_USER';
1054                 } elseif ($tar == 'del_user') {
1055                         // @TODO Deprecate this thing
1056                         $OUT .= 'DELETE_USER';
1057                 } else {
1058                         // All other status is fine
1059                         $OUT .= strtoupper($tar);
1060                 }
1061                 $OUT .= '--}</a></span>|';
1062         } // END - foreach
1063
1064         // Finish navigation link
1065         $OUT = substr($OUT, 0, -1) . ']';
1066
1067         // Return string
1068         return $OUT;
1069 }
1070
1071 // Generate an email link
1072 function generateEmailLink ($email, $table = 'admins') {
1073         // Default email link (INSECURE! Spammer can read this by harvester programs)
1074         $EMAIL = 'mailto:' . $email;
1075
1076         // Check for several extensions
1077         if ((isExtensionActive('admins')) && ($table == 'admins')) {
1078                 // Create email link for contacting admin in guest area
1079                 $EMAIL = generateAdminEmailLink($email);
1080         } elseif ((isExtensionInstalledAndNewer('user', '0.3.3')) && ($table == 'user_data')) {
1081                 // Create email link for contacting a member within admin area (or later in other areas, too?)
1082                 $EMAIL = generateUserEmailLink($email);
1083         } elseif ((isExtensionActive('sponsor')) && ($table == 'sponsor_data')) {
1084                 // Create email link to contact sponsor within admin area (or like the link above?)
1085                 $EMAIL = generateSponsorEmailLink($email);
1086         }
1087
1088         // Shall I close the link when there is no admin?
1089         if ((!isAdmin()) && ($EMAIL == $email)) $EMAIL = '#'; // Closed!
1090
1091         // Return email link
1092         return $EMAIL;
1093 }
1094
1095 // Output error messages in a fasioned way and die...
1096 function app_die ($F, $L, $message) {
1097         // Check if Script is already dieing and not let it kill itself another 1000 times
1098         if (isset($GLOBALS['app_died'])) {
1099                 // Script tried to kill itself twice
1100                 die('[' . __FUNCTION__ . ':' . __LINE__ . ']: Script wanted to kill itself more than once! Raw message=' . $message . ', file/function=' . $F . ', line=' . $L);
1101         } // END - if
1102
1103         // Make sure, that the script realy realy diese here and now
1104         $GLOBALS['app_died'] = true;
1105
1106         // Set content type as text/html
1107         setContentType('text/html');
1108
1109         // Load header
1110         loadIncludeOnce('inc/header.php');
1111
1112         // Rewrite message for output
1113         $message = sprintf(getMessage('MAILER_HAS_DIED'), basename($F), $L, $message);
1114
1115         // Load the message template
1116         loadTemplate('app_die_message', false, $message);
1117
1118         // Load footer
1119         loadIncludeOnce('inc/footer.php');
1120 }
1121
1122 // Display parsing time and number of SQL queries in footer
1123 function displayParsingTime () {
1124         // Is the timer started?
1125         if (!isset($GLOBALS['startTime'])) {
1126                 // Abort here
1127                 return false;
1128         } // END - if
1129
1130         // Get end time
1131         $endTime = microtime(true);
1132
1133         // "Explode" both times
1134         $start = explode(' ', $GLOBALS['startTime']);
1135         $end = explode(' ', $endTime);
1136         $runTime = $end[0] - $start[0];
1137         if ($runTime < 0) {
1138                 $runTime = '0';
1139         } // END - if
1140
1141         // Prepare output
1142         // @TODO This can be easily moved out after the merge from EL branch to this is complete
1143         $content = array(
1144                 'run_time' => $runTime,
1145                 'sql_time' => (getConfig('sql_time') * 1000),
1146         );
1147
1148         // Load the template
1149         $GLOBALS['page_footer'] .= loadTemplate('show_timings', true, $content);
1150 }
1151
1152 // Output a debug backtrace to the user
1153 function debug_report_bug ($F, $L, $message = '', $sendEmail = true) {
1154         // Is this already called?
1155         if (isset($GLOBALS[__FUNCTION__])) {
1156                 // Other backtrace
1157                 print 'Message:' . $message . '<br />Backtrace:<pre>';
1158                 debug_print_backtrace();
1159                 die('</pre>');
1160         } // END - if
1161
1162         // Set this function as called
1163         $GLOBALS[__FUNCTION__] = true;
1164
1165         // Init message
1166         $debug = '';
1167
1168         // Is the optional message set?
1169         if (!empty($message)) {
1170                 // Use and log it
1171                 $debug = sprintf("Note: %s<br />\n",
1172                         $message
1173                 );
1174
1175                 // @TODO Add a little more infos here
1176                 logDebugMessage($F, $L, strip_tags($message));
1177         } // END - if
1178
1179         // Add output
1180         $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>';
1181         $debug .= debug_get_printable_backtrace();
1182         $debug .= '</pre>';
1183         $debug .= '<div class="para">Request-URI: ' . getRequestUri() . '</div>';
1184         $debug .= '<div class="para">Thank you for finding bugs.</div>';
1185
1186         // Send an email? (e.g. not wanted for evaluation errors)
1187         if (($sendEmail === true) && (!isInstallationPhase())) {
1188                 // Prepare content
1189                 $content = array(
1190                         'message'   => trim($message),
1191                         'backtrace' => trim(debug_get_mailable_backtrace())
1192                 );
1193
1194                 // Send email to webmaster
1195                 sendAdminNotification('{--DEBUG_REPORT_BUG_SUBJECT--}', 'admin_report_bug', $content);
1196         } // END - if
1197
1198         // And abort here
1199         app_die($F, $L, $debug);
1200 }
1201
1202 // Compile characters which are allowed in URLs
1203 function compileUriCode ($code, $simple = true) {
1204         // Compile constants
1205         if ($simple === false) $code = str_replace('{--', '".', str_replace('--}', '."', $code));
1206
1207         // Compile QUOT and other non-HTML codes
1208         $code = str_replace('{DOT}', '.',
1209                 str_replace('{SLASH}', '/',
1210                 str_replace('{QUOT}', "'",
1211                 str_replace('{DOLLAR}', '$',
1212                 str_replace('{OPEN_ANCHOR}', '(',
1213                 str_replace('{CLOSE_ANCHOR}', ')',
1214                 str_replace('{OPEN_SQR}', '[',
1215                 str_replace('{CLOSE_SQR}', ']',
1216                 str_replace('{PER}', '%',
1217                 $code
1218         )))))))));
1219
1220         // Return compiled code
1221         return $code;
1222 }
1223
1224 // Handle message codes from URL
1225 function handleCodeMessage () {
1226         if (isGetRequestParameterSet('code')) {
1227                 // Default extension is 'unknown'
1228                 $ext = 'unknown';
1229
1230                 // Is extension given?
1231                 if (isGetRequestParameterSet('ext')) $ext = getRequestParameter('ext');
1232
1233                 // Convert the 'code' parameter from URL to a human-readable message
1234                 $message = getMessageFromErrorCode(getRequestParameter('code'));
1235
1236                 // Load message template
1237                 loadTemplate('message', false, $message);
1238         } // END - if
1239 }
1240
1241 // Generates a 'extension foo inactive' message
1242 function generateExtensionInactiveMessage ($ext_name) {
1243         // Is the extension empty?
1244         if (empty($ext_name)) {
1245                 // This should not happen
1246                 debug_report_bug(__FUNCTION__, __LINE__, 'Parameter ext is empty. This should not happen.');
1247         } // END - if
1248
1249         // Default message
1250         $message = getMaskedMessage('EXTENSION_PROBLEM_EXTENSION_INACTIVE', $ext_name);
1251
1252         // Is an admin logged in?
1253         if (isAdmin()) {
1254                 // Then output admin message
1255                 $message = getMaskedMessage('ADMIN_EXTENSION_PROBLEM_EXTENSION_INACTIVE', $ext_name);
1256         } // END - if
1257
1258         // Return prepared message
1259         return $message;
1260 }
1261
1262 // Generates a 'extension foo not installed' message
1263 function generateExtensionNotInstalledMessage ($ext_name) {
1264         // Is the extension empty?
1265         if (empty($ext_name)) {
1266                 // This should not happen
1267                 debug_report_bug(__FUNCTION__, __LINE__, 'Parameter ext is empty. This should not happen.');
1268         } // END - if
1269
1270         // Default message
1271         $message = getMaskedMessage('EXTENSION_PROBLEM_EXTENSION_NOT_INSTALLED', $ext_name);
1272
1273         // Is an admin logged in?
1274         if (isAdmin()) {
1275                 // Then output admin message
1276                 $message = getMaskedMessage('ADMIN_EXTENSION_PROBLEM_EXTENSION_NOT_INSTALLED', $ext_name);
1277         } // END - if
1278
1279         // Return prepared message
1280         return $message;
1281 }
1282
1283 // Generates a message depending on if the extension is not installed or not
1284 // just activated
1285 function generateExtensionInactiveNotInstalledMessage ($ext_name) {
1286         // Init message
1287         $message = '';
1288
1289         // Is the extension not installed or just deactivated?
1290         switch (isExtensionInstalled($ext_name)) {
1291                 case true; // Deactivated!
1292                         $message = generateExtensionInactiveMessage($ext_name);
1293                         break;
1294
1295                 case false; // Not installed!
1296                         $message = generateExtensionNotInstalledMessage($ext_name);
1297                         break;
1298
1299                 default: // Should not happen!
1300                         logDebugMessage(__FUNCTION__, __LINE__, sprintf("Invalid state of extension %s detected.", $ext_name));
1301                         $message = sprintf("Invalid state of extension %s detected.", $ext_name);
1302                         break;
1303         } // END - switch
1304
1305         // Return the message
1306         return $message;
1307 }
1308
1309 // Print code with line numbers
1310 function linenumberCode ($code)    {
1311         if (!is_array($code)) $codeE = explode("\n", $code); else $codeE = $code;
1312         $count_lines = count($codeE);
1313
1314         $r = 'Line | Code:<br />';
1315         foreach($codeE as $line => $c) {
1316                 $r .= '<div class="line"><span class="linenum">';
1317                 if ($count_lines == 1) {
1318                         $r .= 1;
1319                 } else {
1320                         $r .= ($line == ($count_lines - 1)) ? '' :  ($line+1);
1321                 }
1322                 $r .= '</span>|';
1323
1324                 // Add code
1325                 $r .= '<span class="linetext">' . encodeEntities($c) . '</span></div>';
1326         } // END - foreach
1327
1328         return '<div class="code">' . $r . '</div>';
1329 }
1330
1331 // Determines the right page title
1332 function determinePageTitle () {
1333         // Config and database connection valid?
1334         if ((isConfigLocalLoaded()) && (isConfigurationLoaded()) && (SQL_IS_LINK_UP()) && (isExtensionInstalledAndNewer('sql_patches', '0.1.6'))) {
1335                 // Init title
1336                 $TITLE = '';
1337
1338                 // Title decoration enabled?
1339                 if ((isTitleDecorationEnabled()) && (getConfig('title_left') != '')) $TITLE .= trim(getConfig('title_left')) . ' ';
1340
1341                 // Do we have some extra title?
1342                 if (isExtraTitleSet()) {
1343                         // Then prepent it
1344                         $TITLE .= getExtraTitle() . ' by ';
1345                 } // END - if
1346
1347                 // Add main title
1348                 $TITLE .= getMainTitle();
1349
1350                 // Add title of module? (middle decoration will also be added!)
1351                 if ((isModuleTitleEnabled()) || ((!isWhatSet()) && (!isActionSet())) || (getModule() == 'admin')) {
1352                         $TITLE .= ' ' . trim(getConfig('title_middle')) . ' {DQUOTE} . getModuleTitle(getModule()) . {DQUOTE}';
1353                 } // END - if
1354
1355                 // Add title from what file
1356                 $mode = '';
1357                 if (getModule() == 'login') $mode = 'member';
1358                 elseif (getModule() == 'index') $mode = 'guest';
1359                 if ((!empty($mode)) && (isWhatTitleEnabled())) $TITLE .= ' ' . trim(getConfig('title_middle')) . ' ' . getTitleFromMenu($mode, getWhat());
1360
1361                 // Add title decorations? (right)
1362                 if ((isTitleDecorationEnabled()) && (getConfig('title_right') != '')) $TITLE .= ' ' . trim(getConfig('title_right'));
1363
1364                 // Remember title in constant for the template
1365                 $pageTitle = $TITLE;
1366         } elseif ((isInstalled()) && (isAdminRegistered())) {
1367                 // Installed, admin registered but no ext-sql_patches
1368                 $pageTitle = '[-- ' . getMainTitle() . ' - ' . getModuleTitle(getModule()) . ' --]';
1369         } elseif ((isInstalled()) && (!isAdminRegistered())) {
1370                 // Installed but no admin registered
1371                 $pageTitle = '{--INSTALLER_OF_MAILER_NO_ADMIN--}';
1372         } elseif ((!isInstalled()) || (!isAdminRegistered())) {
1373                 // Installation mode
1374                 $pageTitle = '{--INSTALLER_OF_MAILER--}';
1375         } else {
1376                 // Configuration not found!
1377                 $pageTitle = '{--NO_CONFIG_FOUND_TITLE--}';
1378
1379                 // Do not add the fatal message in installation mode
1380                 if ((!isInstalling()) && (!isConfigurationLoaded())) addFatalMessage(__FUNCTION__, __LINE__, '{--NO_CONFIG_FOUND--}');
1381         }
1382
1383         // Return title
1384         return decodeEntities($pageTitle);
1385 }
1386
1387 // Checks wethere there is a cache file there. This function is cached.
1388 function isTemplateCached ($template) {
1389         // Do we have cached this result?
1390         if (!isset($GLOBALS['template_cache'][$template])) {
1391                 // Generate FQFN
1392                 $FQFN = generateCacheFqfn($template);
1393
1394                 // Is it there?
1395                 $GLOBALS['template_cache'][$template] = isFileReadable($FQFN);
1396         } // END - if
1397
1398         // Return it
1399         return $GLOBALS['template_cache'][$template];
1400 }
1401
1402 // Flushes non-flushed template cache to disk
1403 function flushTemplateCache ($template, $eval) {
1404         // Is this cache flushed?
1405         if ((isDebuggingTemplateCache() === false) && (isTemplateCached($template) === false) && ($eval != '404')) {
1406                 // Generate FQFN
1407                 $FQFN = generateCacheFqfn($template);
1408
1409                 // And flush it
1410                 writeToFile($FQFN, $eval, true);
1411         } // END - if
1412 }
1413
1414 // Reads a template cache
1415 function readTemplateCache ($template) {
1416         // Check it again
1417         if ((isDebuggingTemplateCache()) || (!isTemplateCached($template))) {
1418                 // This should not happen
1419                 debug_report_bug('Wether debugging of template cache is enabled or template ' . $template . ' is not cached while expected.');
1420         } // END - if
1421
1422         // Is it cached?
1423         if (!isset($GLOBALS['template_eval'][$template])) {
1424                 // Generate FQFN
1425                 $FQFN = generateCacheFqfn($template);
1426
1427                 // And read from it
1428                 $GLOBALS['template_eval'][$template] = readFromFile($FQFN);
1429         } // END - if
1430
1431         // And return it
1432         return $GLOBALS['template_eval'][$template];
1433 }
1434
1435 // Escapes quotes (default is only double-quotes)
1436 function escapeQuotes ($str, $single = false) {
1437         // Should we escape all?
1438         if ($single === true) {
1439                 // Escape all (including null)
1440                 $str = addslashes($str);
1441         } else {
1442                 // Remove escaping of single quotes
1443                 $str = str_replace("\'", "'", $str);
1444
1445                 // Escape only double-quotes but prevent double-quoting
1446                 $str = str_replace("\\\\", "\\", str_replace('"', "\\\"", $str));
1447         }
1448
1449         // Return the escaped string
1450         return $str;
1451 }
1452
1453 // Escapes the JavaScript code, prevents \r and \n becoming char 10/13
1454 function escapeJavaScriptQuotes ($str) {
1455         // Replace all double-quotes and secure back-ticks
1456         $str = str_replace('"', '\"', str_replace("\\", '{BACK}', $str));
1457
1458         // Return it
1459         return $str;
1460 }
1461
1462 // Send out mails depending on the 'mod/modes' combination
1463 // @TODO Lame description for this function
1464 function sendModeMails ($mod, $modes) {
1465         // Init user data
1466         $content = array ();
1467
1468         // Load hash
1469         if (fetchUserData(getMemberId())) {
1470                 // Extract salt from cookie
1471                 $salt = substr(getSession('u_hash'), 0, -40);
1472
1473                 // Now let's compare passwords
1474                 $hash = encodeHashForCookie(getUserData('password'));
1475
1476                 // Does the hash match or should we change it?
1477                 if (($hash == getSession('u_hash')) || (postRequestParameter('pass1') == postRequestParameter('pass2'))) {
1478                         // Load the data
1479                         $content = getUserDataArray();
1480
1481                         // Clear/init the content variable
1482                         $content['message'] = '';
1483
1484                         // Which mail?
1485                         // @TODO Move this in a filter
1486                         switch ($mod) {
1487                                 case 'mydata':
1488                                         foreach ($modes as $mode) {
1489                                                 switch ($mode) {
1490                                                         case 'normal': break; // Do not add any special lines
1491                                                         case 'email': // Email was changed!
1492                                                                 $content['message'] = '{--MEMBER_CHANGED_EMAIL--}' . ': ' . postRequestParameter('old_email') . "\n";
1493                                                                 break;
1494
1495                                                         case 'password': // Password was changed
1496                                                                 $content['message'] = '{--MEMBER_CHANGED_PASS--}' . "\n";
1497                                                                 break;
1498
1499                                                         default:
1500                                                                 logDebugMessage(__FUNCTION__, __LINE__, sprintf("Unknown mode %s detected.", $mode));
1501                                                                 $content['message'] = '{--MEMBER_UNKNOWN_MODE--}' . ': ' . $mode . "\n\n";
1502                                                                 break;
1503                                                 } // END - switch
1504                                         } // END - foreach
1505
1506                                         if (isExtensionActive('country')) {
1507                                                 // Replace code with description
1508                                                 $content['country'] = generateCountryInfo(postRequestParameter('country_code'));
1509                                         } // END - if
1510
1511                                         // Merge content with data from POST
1512                                         $content = merge_array($content, postRequestArray());
1513
1514                                         // Load template
1515                                         $message = loadEmailTemplate('member_mydata_notify', $content, getMemberId());
1516
1517                                         if (isAdminNotificationEnabled()) {
1518                                                 // The admin needs to be notified about a profile change
1519                                                 $message_admin = 'admin_mydata_notify';
1520                                                 $sub_adm   = '{--ADMIN_CHANGED_DATA--}';
1521                                         } else {
1522                                                 // No mail to admin
1523                                                 $message_admin = '';
1524                                                 $sub_adm   = '';
1525                                         }
1526
1527                                         // Set subject lines
1528                                         $sub_mem = '{--MEMBER_CHANGED_DATA--}';
1529
1530                                         // Output success message
1531                                         $content['message'] = '<span class="message">{--MEMBER_MYDATA_MAIL_SENT--}</span>';
1532                                         break;
1533
1534                                 default: // Unsupported module!
1535                                         logDebugMessage(__FUNCTION__, __LINE__, sprintf("Unsupported module %s detected.", $mod));
1536                                         $content['message'] = '<span class="notice">{--UNKNOWN_MODULE--}</span>';
1537                                         break;
1538                         } // END - switch
1539                 } else {
1540                         // Passwords mismatch
1541                         $content['message'] = '<span class="notice">{--MEMBER_PASSWORD_ERROR--}</span>';
1542                 }
1543         } else {
1544                 // Could not load profile
1545                 $content['message'] = '<span class="notice">{--MEMBER_CANNOT_LOAD_PROFILE--}</span>';
1546         }
1547
1548         // Send email to user if required
1549         if ((!empty($sub_mem)) && (!empty($message)) && (!empty($content['email']))) {
1550                 // Send member mail
1551                 sendEmail($content['email'], $sub_mem, $message);
1552         } // END - if
1553
1554         // Send only if no other error has occured
1555         if ((!empty($sub_adm)) && (!empty($message_admin)) && (isAdminNotificationEnabled())) {
1556                 // Send admin mail
1557                 sendAdminNotification($sub_adm, $message_admin, $content, getMemberId());
1558         } elseif (isAdminNotificationEnabled()) {
1559                 // Cannot send mails to admin!
1560                 $content['message'] = '{--CANNOT_SEND_ADMIN_MAILS--}';
1561         } else {
1562                 // No mail to admin
1563                 $content['message'] = '<span class="message">{--MEMBER_MYDATA_MAIL_SENT--}</span>';
1564         }
1565
1566         // Load template
1567         loadTemplate('admin_settings_saved', false, $content['message']);
1568 }
1569
1570 // Generates a 'selection box' from given array
1571 function generateSelectionBoxFromArray ($options, $name, $optionValue, $optionContent = '', $extraName = '') {
1572         // Start the output
1573         $OUT = '<select name="' . $name . '" size="1" class="form_select">
1574 <option value="X" disabled="disabled">{--PLEASE_SELECT--}</option>';
1575
1576         // Walk through all options
1577         foreach ($options as $option) {
1578                 // Add the <option> entry from ...
1579                 if (empty($optionContent)) {
1580                         // ... template
1581                         $OUT .= loadTemplate('select_' . $name . $extraName . '_option', true, $option);
1582                 } else {
1583                         // ... direct HTML code
1584                         $OUT .= '<option value="' . $option[$optionValue] . '">' . $option[$optionContent] . '</option>';
1585                 }
1586         } // END - foreach
1587
1588         // Finish selection box
1589         $OUT .= '</select>';
1590
1591         // Prepare output
1592         $content = array(
1593                 'selection_box' => $OUT,
1594         );
1595
1596         // Load template and return it
1597         return loadTemplate('select_' . $name . $extraName . '_box', true, $content);
1598 }
1599
1600 // Prepares the header for HTML output
1601 function loadHtmlHeader () {
1602         // Run two filters:
1603         // 1.) pre_page_header (mainly loads the page_header template and includes
1604         //     meta description)
1605         runFilterChain('pre_page_header');
1606
1607         // Here can be something be added, but normally one of the two filters
1608         // around this line should do the job for you.
1609
1610         // 2.) post_page_header (mainly to load stylesheet, extra JavaScripts and
1611         //     to close the head-tag)
1612         // Include more header data here
1613         runFilterChain('post_page_header');
1614 }
1615
1616 // Adds page header and footer to output array element
1617 function addPageHeaderFooter () {
1618         // Init output
1619         $OUT = '';
1620
1621         // Add them all together. This is maybe to simple
1622         foreach (array('page_header', 'output', 'page_footer') as $pagePart) {
1623                 // Add page part if set
1624                 if (isset($GLOBALS[$pagePart])) $OUT .= $GLOBALS[$pagePart];
1625         } // END - foreach
1626
1627         // Transfer $OUT to 'output'
1628         $GLOBALS['output'] = $OUT;
1629 }
1630
1631 // Generates meta description for current module and 'what' value
1632 function generateMetaDescriptionCode () {
1633         // Only include from guest area and if sql_patches has correct version
1634         if ((getModule() == 'index') && (isExtensionInstalledAndNewer('sql_patches', '0.1.6'))) {
1635                 // Construct dynamic description
1636                 $DESCR = '{?MAIN_TITLE?} ' . trim(getConfig('title_middle')) . ' ' . getTitleFromMenu('guest', getWhat());
1637
1638                 // Output it directly
1639                 $GLOBALS['page_header'] .= '<meta name="description" content="' . $DESCR . '" />';
1640         } // END - if
1641
1642         // Remove depth
1643         unset($GLOBALS['ref_level']);
1644 }
1645
1646 // Generates an FQFN for template cache from the given template name
1647 function generateCacheFqfn ($template, $mode = 'html') {
1648         // Is this cached?
1649         if (!isset($GLOBALS['template_cache_fqfn'][$template])) {
1650                 // Generate the FQFN
1651                 $GLOBALS['template_cache_fqfn'][$template] = sprintf(
1652                         "%s_compiled/%s/%s.tpl.cache",
1653                         getCachePath(),
1654                         $mode,
1655                         $template
1656                 );
1657         } // END - if
1658
1659         // Return it
1660         return $GLOBALS['template_cache_fqfn'][$template];
1661 }
1662
1663 // "Fixes" null or empty string to count of dashes
1664 function fixNullEmptyToDashes ($str, $num) {
1665         // Use str as default
1666         $return = $str;
1667
1668         // Is it empty?
1669         if ((is_null($str)) || (trim($str) == '')) {
1670                 // Set it
1671                 $return = str_repeat('-', $num);
1672         } // END - if
1673
1674         // Return final string
1675         return $return;
1676 }
1677
1678 // Translates the "pool type" into human-readable
1679 function translatePoolType ($type) {
1680         // Return "translation"
1681         return sprintf("{--POOL_TYPE_%s--}", strtoupper($type));
1682 }
1683
1684 //-----------------------------------------------------------------------------
1685 //                      Template helper functions for EL
1686 //-----------------------------------------------------------------------------
1687
1688 // Color-switch helper function
1689 function doTemplateColorSwitch ($template, $clear = false, $return = true) {
1690         // Is it there?
1691         if (!isset($GLOBALS['color_switch'][$template])) {
1692                 // Initialize it
1693                 initTemplateColorSwitch($template);
1694         } elseif ($clear === false) {
1695                 // Switch color if called from loadTemplate()
1696                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'SWITCH:' . $template);
1697                 $GLOBALS['color_switch'][$template] = 3 - $GLOBALS['color_switch'][$template];
1698         }
1699
1700         // Return CSS class name
1701         if ($return === true) {
1702                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'RETURN:' . $template . '=' . $GLOBALS['color_switch'][$template]);
1703                 return 'switch_sw' . $GLOBALS['color_switch'][$template];
1704         } // END - if
1705 }
1706
1707 // Helper function for extension registration link
1708 function doTemplateExtensionRegistrationLink ($template, $dummy, $ext_name) {
1709         // Default is all productive
1710         $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>';
1711
1712         // Is the given extension non-productive?
1713         if (!isExtensionProductive($ext_name)) {
1714                 // Non-productive code
1715                 $OUT = '<em style="cursor:help" class="notice" title="{%message,ADMIN_EXTENSION_IS_NON_PRODUCTIVE_LINK_TITLE=' . $ext_name . '%}">{--ADMIN_EXTENSION_IS_NON_PRODUCTIVE_LINK--}</em>';
1716         } // END - if
1717
1718         // Return code
1719         return $OUT;
1720 }
1721
1722 // [EOF]
1723 ?>