]> git.mxchange.org Git - mailer.git/blob - inc/functions.php
a285c70519303109e23f3e9d2f4c6f17d00a3b32
[mailer.git] / inc / functions.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 08/25/2003 *
4  * ===============                              Last change: 11/29/2005 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : functions.php                                    *
8  * -------------------------------------------------------------------- *
9  * Short description : Many non-MySQL functions (also file access)      *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Viele Nicht-MySQL-Funktionen (auch Dateizugriff) *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * Needs to be in all Files and every File needs "svn propset           *
18  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
19  * -------------------------------------------------------------------- *
20  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
21  * For more information visit: http://www.mxchange.org                  *
22  *                                                                      *
23  * This program is free software; you can redistribute it and/or modify *
24  * it under the terms of the GNU General Public License as published by *
25  * the Free Software Foundation; either version 2 of the License, or    *
26  * (at your option) any later version.                                  *
27  *                                                                      *
28  * This program is distributed in the hope that it will be useful,      *
29  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
30  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
31  * GNU General Public License for more details.                         *
32  *                                                                      *
33  * You should have received a copy of the GNU General Public License    *
34  * along with this program; if not, write to the Free Software          *
35  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
36  * MA  02110-1301  USA                                                  *
37  ************************************************************************/
38
39 // Some security stuff...
40 if (!defined('__SECURITY')) {
41         die();
42 } // END - if
43
44 // Output HTML code directly or 'render' it. You addionally switch the new-line character off
45 function outputHtml ($htmlCode, $newLine = true) {
46         // Init output
47         if (!isset($GLOBALS['output'])) $GLOBALS['output'] = '';
48
49         // Transfer username
50         $username = getMessage('USERNAME_UNKNOWN');
51         if (isset($GLOBALS['username'])) $username = getUsername();
52
53         // Do we have HTML-Code here?
54         if (!empty($htmlCode)) {
55                 // Yes, so we handle it as you have configured
56                 switch (getConfig('OUTPUT_MODE')) {
57                         case 'render':
58                                 // That's why you don't need any \n at the end of your HTML code... :-)
59                                 if (getPhpCaching() == 'on') {
60                                         // Output into PHP's internal buffer
61                                         outputRawCode($htmlCode);
62
63                                         // That's why you don't need any \n at the end of your HTML code... :-)
64                                         if ($newLine === true) print("\n");
65                                 } else {
66                                         // Render mode for old or lame servers...
67                                         $GLOBALS['output'] .= $htmlCode;
68
69                                         // That's why you don't need any \n at the end of your HTML code... :-)
70                                         if ($newLine === true) $GLOBALS['output'] .= "\n";
71                                 }
72                                 break;
73
74                         case 'direct':
75                                 // If we are switching from render to direct output rendered code
76                                 if ((!empty($GLOBALS['output'])) && (getPhpCaching() != 'on')) { outputRawCode($GLOBALS['output']); $GLOBALS['output'] = ''; }
77
78                                 // The same as above... ^
79                                 outputRawCode($htmlCode);
80                                 if ($newLine) print("\n");
81                                 break;
82
83                         default:
84                                 // Huh, something goes wrong or maybe you have edited config.php ???
85                                 app_die(__FUNCTION__, __LINE__, '<strong>{--FATAL_ERROR--}:</strong> {--LANG_NO_RENDER_DIRECT--}');
86                                 break;
87                 } // END - switch
88         } elseif ((getPhpCaching() == 'on') && (isset($GLOBALS['footer_sent'])) && ($GLOBALS['footer_sent'] == 1)) {
89                 // Headers already sent?
90                 if (headers_sent()) {
91                         // Log this error
92                         logDebugMessage(__FUNCTION__, __LINE__, 'Headers already sent! We need debug backtrace here.');
93
94                         // Trigger an user error
95                         debug_report_bug('Headers are already sent!');
96                 } // END - if
97
98                 // Output cached HTML code
99                 $GLOBALS['output'] = ob_get_contents();
100
101                 // Clear output buffer for later output if output is found
102                 if (!empty($GLOBALS['output'])) {
103                         clearOutputBuffer();
104                 } // END - if
105
106                 // Send HTTP header
107                 sendHeader('HTTP/1.1 200');
108
109                 // Used later
110                 $now = gmdate('D, d M Y H:i:s') . ' GMT';
111
112                 // General headers for no caching
113                 sendHeader('Expired: ' . $now); // RFC2616 - Section 14.21
114                 sendHeader('Last-Modified: ' . $now);
115                 sendHeader('Cache-Control: no-store, no-cache, must-revalidate, pre-check=0, post-check=0, max-age=0'); // HTTP/1.1
116                 sendHeader('Pragma: no-cache'); // HTTP/1.0
117                 sendHeader('Connection: Close');
118                 sendHeader('Content-Type: ' . getContentType() . '; charset=UTF-8');
119                 sendHeader('Content-language: ' . getLanguage());
120
121                 // Extension 'rewrite' installed?
122                 if ((isExtensionActive('rewrite')) && (getOutputMode() != 1)) {
123                         $GLOBALS['output'] = rewriteLinksInCode($GLOBALS['output']);
124                 } // END - if
125
126                 // Init counter
127                 $cnt = '0';
128
129                 // Compile and run finished rendered HTML code
130                 while (((strpos($GLOBALS['output'], '{--') > 0) || (strpos($GLOBALS['output'], '{!') > 0) || (strpos($GLOBALS['output'], '{?') > 0)) && ($cnt < 3)) {
131                         // Prepare the content and eval() it...
132                         $content = array();
133                         $newContent = '';
134
135                         // Compile it
136                         $eval = "\$newContent = \"".compileCode(smartAddSlashes($GLOBALS['output']))."\";";
137                         eval($eval);
138
139                         // Was that eval okay?
140                         if (empty($newContent)) {
141                                 // Something went wrong!
142                                 debug_report_bug('Evaluation error:<pre>' . linenumberCode($eval) . '</pre>');
143                         } // END - if
144                         $GLOBALS['output'] = $newContent;
145
146                         // Count round
147                         $cnt++;
148                 } // END - while
149
150                 // Output code here, DO NOT REMOVE! ;-)
151                 outputRawCode($GLOBALS['output']);
152         } elseif ((getConfig('OUTPUT_MODE') == 'render') && (!empty($GLOBALS['output']))) {
153                 // Rewrite links when rewrite extension is active
154                 if ((isExtensionActive('rewrite')) && (getOutputMode() != 1)) {
155                         $GLOBALS['output'] = rewriteLinksInCode($GLOBALS['output']);
156                 } // END - if
157
158                 // Compile and run finished rendered HTML code
159                 while (strpos($GLOBALS['output'], '{!') > 0) {
160                         eval("\$GLOBALS['output'] = \"".compileCode(smartAddSlashes($GLOBALS['output']))."\";");
161                 } // END - while
162
163                 // Output code here, DO NOT REMOVE! ;-)
164                 outputRawCode($GLOBALS['output']);
165         }
166 }
167
168 // Output the raw HTML code
169 function outputRawCode ($htmlCode) {
170         // Output stripped HTML code to avoid broken JavaScript code, etc.
171         print(stripslashes(stripslashes($htmlCode)));
172
173         // Flush the output if only getPhpCaching() is not 'on'
174         if (getPhpCaching() != 'on') {
175                 // Flush it
176                 flush();
177         } // END - if
178 }
179
180 // Init fatal message array
181 function initFatalMessages () {
182         $GLOBALS['fatal_messages'] = array();
183 }
184
185 // Getter for whole fatal error messages
186 function getFatalArray () {
187         return $GLOBALS['fatal_messages'];
188 }
189
190 // Add a fatal error message to the queue array
191 function addFatalMessage ($F, $L, $message, $extra='') {
192         if (is_array($extra)) {
193                 // Multiple extras for a message with masks
194                 $message = call_user_func_array('sprintf', $extra);
195         } elseif (!empty($extra)) {
196                 // $message is text with a mask plus extras to insert into the text
197                 $message = sprintf($message, $extra);
198         }
199
200         // Add message to $GLOBALS['fatal_messages']
201         $GLOBALS['fatal_messages'][] = $message;
202
203         // Log fatal messages away
204         debug_report_bug($message);
205         logDebugMessage($F, $L, " message={$message}");
206 }
207
208 // Getter for total fatal message count
209 function getTotalFatalErrors () {
210         // Init coun
211         $count = '0';
212
213         // Do we have at least the first entry?
214         if (!empty($GLOBALS['fatal_messages'][0])) {
215                 // Get total count
216                 $count = count($GLOBALS['fatal_messages']);
217         } // END - if
218
219         // Return value
220         return $count;
221 }
222
223 // Load a template file and return it's content (only it's name; do not use ' or ")
224 function loadTemplate ($template, $return=false, $content=array()) {
225         // @TODO Remove this sanity-check if all is fine
226         if (!is_bool($return)) debug_report_bug('return is not bool (' . gettype($return) . ')');
227
228         // @TODO Try to rewrite all $DATA to $content
229         global $DATA;
230
231         // Do we have cache?
232         if (isTemplateCached($template)) {
233                 // Evaluate the cache
234                 eval(readTemplateCache($template));
235         } elseif (!isset($GLOBALS['template_eval'][$template])) {
236                 // Add more variables which you want to use in your template files
237                 $username = getUsername();
238
239                 // Make all template names lowercase
240                 $template = strtolower($template);
241
242                 // Count the template load
243                 incrementConfigEntry('num_templates');
244
245                 // Init some data
246                 $ret = '';
247                 if (empty($GLOBALS['refid'])) $GLOBALS['refid'] = '0';
248
249                 // Base directory
250                 $basePath = sprintf("%stemplates/%s/html/", getConfig('PATH'), getLanguage());
251                 $mode = '';
252
253                 // Check for admin/guest/member templates
254                 if (substr($template, 0, 6) == 'admin_') {
255                         // Admin template found
256                         $mode = 'admin/';
257                 } elseif (substr($template, 0, 6) == 'guest_') {
258                         // Guest template found
259                         $mode = 'guest/';
260                 } elseif (substr($template, 0, 7) == 'member_') {
261                         // Member template found
262                         $mode = 'member/';
263                 } elseif (substr($template, 0, 8) == 'install_') {
264                         // Installation template found
265                         $mode = 'install/';
266                 } elseif (substr($template, 0, 4) == 'ext_') {
267                         // Extension template found
268                         $mode = 'ext/';
269                 } elseif (substr($template, 0, 3) == 'la_') {
270                         // 'Logical-area' template found
271                         $mode = 'la/';
272                 } elseif (substr($template, 0, 3) == 'js_') {
273                         // JavaScript template found
274                         $mode = 'js/';
275                 } elseif (substr($template, 0, 5) == 'menu_') {
276                         // Menu template found
277                         $mode = 'menu/';
278                 } else {
279                         // Test for extension
280                         $test = substr($template, 0, strpos($template, '_'));
281
282                         // Probe for valid extension name
283                         if (isExtensionNameValid($test)) {
284                                 // Set extra path to extension's name
285                                 $mode = $test . '/';
286                         } // END - if
287                 }
288
289                 ////////////////////////
290                 // Generate file name //
291                 ////////////////////////
292                 $FQFN = $basePath . $mode . $template . '.tpl';
293
294                 if ((isWhatSet()) && ((strpos($template, '_header') > 0) || (strpos($template, '_footer') > 0)) && (($mode == 'guest/') || ($mode == 'member/') || ($mode == 'admin/'))) {
295                         // Select what depended header/footer template file for admin/guest/member area
296                         $file2 = sprintf("%s%s%s_%s.tpl",
297                                 $basePath,
298                                 $mode,
299                                 $template,
300                                 getWhat()
301                         );
302
303                         // Probe for it...
304                         if (isFileReadable($file2)) $FQFN = $file2;
305
306                         // Remove variable from memory
307                         unset($file2);
308                 } // END - if
309
310                 // Does the special template exists?
311                 if (!isFileReadable($FQFN)) {
312                         // Reset to default template
313                         $FQFN = $basePath . $template . '.tpl';
314                 } // END - if
315
316                 // Now does the final template exists?
317                 if (isFileReadable($FQFN)) {
318                         // The local file does exists so we load it. :)
319                         $GLOBALS['tpl_content'] = readFromFile($FQFN);
320
321                         // Replace ' to our own chars to preventing them being quoted
322                         while (strpos($GLOBALS['tpl_content'], "'") !== false) { $GLOBALS['tpl_content'] = str_replace("'", '{QUOT}', $GLOBALS['tpl_content']); }
323
324                         // Do we have to compile the code?
325                         $ret = '';
326                         if ((strpos($GLOBALS['tpl_content'], '$') !== false) || (strpos($GLOBALS['tpl_content'], '{--') !== false) || (strpos($GLOBALS['tpl_content'], '{!') !== false) || (strpos($GLOBALS['tpl_content'], '{?') !== false)) {
327                                 // Normal HTML output?
328                                 if (getOutputMode() == '0') {
329                                         // Add surrounding HTML comments to help finding bugs faster
330                                         $ret = "<!-- Template " . $template . " - Start -->\n" . $GLOBALS['tpl_content'] . "<!-- Template " . $template . " - End -->\n";
331
332                                         // Prepare eval() command
333                                         $eval = '$ret = "' . compileCode(smartAddSlashes($ret)) . '";';
334                                 } else {
335                                         // Prepare eval() command
336                                         $eval = '$ret = "' . compileCode(smartAddSlashes($GLOBALS['tpl_content'])) . '";';
337                                 }
338                         } else {
339                                 // Add surrounding HTML comments to help finding bugs faster
340                                 $ret = "<!-- Template " . $template . " - Start -->\n" . $GLOBALS['tpl_content'] . "<!-- Template " . $template . " - End -->\n";
341                                 $eval = '$ret = "' . smartAddSlashes($ret) . '";';
342                         } // END - if
343
344                         // Cache the eval() command here
345                         $GLOBALS['template_eval'][$template] = $eval;
346
347                         // Eval the code
348                         eval($GLOBALS['template_eval'][$template]);
349                 } elseif ((isAdmin()) || ((isInstalling()) && (!isInstalled()))) {
350                         // Only admins shall see this warning or when installation mode is active
351                         $ret = '<br /><span class=\\"guest_failed\\">{--TEMPLATE_404--}</span><br />
352 (' . $template . ')<br />
353 <br />
354 {--TEMPLATE_CONTENT--}
355 <pre>' . print_r($content, true) . '</pre>
356 {--TEMPLATE_DATA--}
357 <pre>' . print_r($DATA, true) . '</pre>
358 <br /><br />';
359                 } else {
360                         // No file!
361                         $GLOBALS['template_eval'][$template] = '404';
362                 }
363         } else {
364                 // Eval the code
365                 eval($GLOBALS['template_eval'][$template]);
366         }
367
368         // Do we have some content to output or return?
369         if (!empty($ret)) {
370                 // Not empty so let's put it out! ;)
371                 if ($return === true) {
372                         // Return the HTML code
373                         return $ret;
374                 } else {
375                         // Output directly
376                         outputHtml($ret);
377                 }
378         } elseif (isDebugModeEnabled()) {
379                 // Warning, empty output!
380                 return 'E:' . $template . ',content=<pre>' . print_r($content, true) . '</pre>';
381         }
382 }
383
384 // Loads an email template and compiles it
385 function loadEmailTemplate ($template, $content = array(), $UID = '0') {
386         global $DATA;
387
388         // Make sure all template names are lowercase!
389         $template = strtolower($template);
390
391         // Default 'nickname' if extension is not installed
392         $nick = '---';
393
394         // Prepare IP number and User Agent
395         $REMOTE_ADDR     = detectRemoteAddr();
396         $HTTP_USER_AGENT = detectUserAgent();
397
398         // Default admin
399         $ADMIN = getConfig('MAIN_TITLE');
400
401         // Is the admin logged in?
402         if (isAdmin()) {
403                 // Get admin id
404                 $adminId = getCurrentAdminId();
405
406                 // Load Admin data
407                 $ADMIN = getAdminEmail($adminId);
408         } // END - if
409
410         // Neutral email address is default
411         $email = getConfig('WEBMASTER');
412
413         // Expiration in a nice output format
414         // NOTE: Use $content[expiration] in your templates instead of $EXPIRATION
415         if (getConfig('auto_purge') == '0') {
416                 // Will never expire!
417                 $EXPIRATION = getMessage('MAIL_WILL_NEVER_EXPIRE');
418         } else {
419                 // Create nice date string
420                 $EXPIRATION = createFancyTime(getConfig('auto_purge'));
421         }
422
423         // Is content an array?
424         if (is_array($content)) {
425                 // Add expiration to array, $EXPIRATION is now deprecated!
426                 $content['expiration'] = $EXPIRATION;
427         } // END - if
428
429         // Load user's data
430         //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):UID={$UID},template={$template},content[]=".gettype($content).'<br />');
431         if (($UID > 0) && (is_array($content))) {
432                 // If nickname extension is installed, fetch nickname as well
433                 if (isNicknameUsed($UID)) {
434                         //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):NICKNAME!<br />");
435                         // Load by nickname
436                         fetchUserData($UID, 'nickname');
437                 } else {
438                         //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):NO-NICK!<br />");
439                         /// Load by userid
440                         fetchUserData($UID);
441                 }
442
443                 // Merge data if valid
444                 //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):content()=".count($content)." - PRE<br />");
445                 if (isUserDataValid()) {
446                         $content = merge_array($content, getUserDataArray());
447                 } // END - if
448                 //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):content()=".count($content)." - AFTER<br />");
449         } // END - if
450
451         // Translate M to male or F to female if present
452         if (isset($content['gender'])) $content['gender'] = translateGender($content['gender']);
453
454         // Overwrite email from data if present
455         if (isset($content['email'])) $email = $content['email'];
456
457         // Store email for some functions in global data array
458         $DATA['email'] = $email;
459
460         // Base directory
461         $basePath = sprintf("%stemplates/%s/emails/", getConfig('PATH'), getLanguage());
462
463         // Check for admin/guest/member templates
464         if (substr($template, 0, 6) == 'admin_') {
465                 // Admin template found
466                 $FQFN = $basePath.'admin/' . $template.'.tpl';
467         } elseif (substr($template, 0, 6) == 'guest_') {
468                 // Guest template found
469                 $FQFN = $basePath.'guest/' . $template.'.tpl';
470         } elseif (substr($template, 0, 7) == 'member_') {
471                 // Member template found
472                 $FQFN = $basePath.'member/' . $template.'.tpl';
473         } else {
474                 // Test for extension
475                 $test = substr($template, 0, strpos($template, '_'));
476                 if (isExtensionNameValid($test)) {
477                         // Set extra path to extension's name
478                         $FQFN = $basePath . $test.'/' . $template.'.tpl';
479                 } else {
480                         // No special filename
481                         $FQFN = $basePath . $template.'.tpl';
482                 }
483         }
484
485         // Does the special template exists?
486         if (!isFileReadable($FQFN)) {
487                 // Reset to default template
488                 $FQFN = $basePath . $template.'.tpl';
489         } // END - if
490
491         // Now does the final template exists?
492         $newContent = '';
493         if (isFileReadable($FQFN)) {
494                 // The local file does exists so we load it. :)
495                 $GLOBALS['tpl_content'] = readFromFile($FQFN);
496
497                 // Run code
498                 $GLOBALS['tpl_content'] = "\$newContent = decodeEntities(\"".compileCode(smartAddSlashes($GLOBALS['tpl_content']))."\");";
499                 eval($GLOBALS['tpl_content']);
500         } elseif (!empty($template)) {
501                 // Template file not found!
502                 $newContent = "{--TEMPLATE_404--}: " . $template."<br />
503 {--TEMPLATE_CONTENT--}
504 <pre>".print_r($content, true)."</pre>
505 {--TEMPLATE_DATA--}
506 <pre>".print_r($DATA, true)."</pre>
507 <br /><br />";
508
509                 // Debug mode not active? Then remove the HTML tags
510                 if (!isDebugModeEnabled()) $newContent = secureString($newContent);
511         } else {
512                 // No template name supplied!
513                 $newContent = getMessage('NO_TEMPLATE_SUPPLIED');
514         }
515
516         // Is there some content?
517         if (empty($newContent)) {
518                 // Compiling failed
519                 $newContent = "Compiler error for template {$template}!\nUncompiled content:\n" . $GLOBALS['tpl_content'];
520                 // Add last error if the required function exists
521                 if (function_exists('error_get_last')) $newContent .= "\n--------------------------------------\nDebug:\n".print_r(error_get_last(), true)."--------------------------------------\nPlease don't alter these informations!\nThanx.";
522         } // END - if
523
524         // Remove content and data
525         unset($content);
526         unset($DATA);
527
528         // Compile the code and eval it
529         $eval = '$newContent = "' . compileRawCode(smartAddSlashes($newContent)) . '";';
530         eval($eval);
531
532         // Return content
533         return $newContent;
534 }
535
536 // Send mail out to an email address
537 function sendEmail ($toEmail, $subject, $message, $isHtml = 'N', $mailHeader = '') {
538         //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):TO={$toEmail},SUBJECT={$subject}<br />");
539
540         // Compile subject line (for POINTS constant etc.)
541         eval("\$subject = decodeEntities(\"".compileRawCode(smartAddSlashes($subject))."\");");
542
543         // Set from header
544         if ((!eregi('@', $toEmail)) && ($toEmail > 0)) {
545                 // Value detected, is the message extension installed?
546                 // @TODO Extension 'msg' does not exist
547                 if (isExtensionActive('msg')) {
548                         ADD_MESSAGE_TO_BOX($toEmail, $subject, $message, $isHtml);
549                         return;
550                 } else {
551                         // Does the user exist?
552                         if (fetchUserData($toEmail)) {
553                                 // Get the email
554                                 $toEmail = getUserData('email');
555                         } else {
556                                 // Set webmaster
557                                 $toEmail = getConfig('WEBMASTER');
558                         }
559                 }
560         } elseif ($toEmail == '0') {
561                 // Is the webmaster!
562                 $toEmail = getConfig('WEBMASTER');
563         }
564         //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):TO={$toEmail}<br />");
565
566         // Check for PHPMailer or debug-mode
567         if (!checkPhpMailerUsage()) {
568                 // Not in PHPMailer-Mode
569                 if (empty($mailHeader)) {
570                         // Load email header template
571                         $mailHeader = loadEmailTemplate('header');
572                 } else {
573                         // Append header
574                         $mailHeader .= loadEmailTemplate('header');
575                 }
576         } elseif (isDebugModeEnabled()) {
577                 if (empty($mailHeader)) {
578                         // Load email header template
579                         $mailHeader = loadEmailTemplate('header');
580                 } else {
581                         // Append header
582                         $mailHeader .= loadEmailTemplate('header');
583                 }
584         }
585
586         // Compile "TO"
587         eval("\$toEmail = \"".compileRawCode(smartAddSlashes($toEmail))."\";");
588
589         // Compile "MSG"
590         eval("\$message = \"".compileRawCode(smartAddSlashes($message))."\";");
591
592         // Fix HTML parameter (default is no!)
593         if (empty($isHtml)) $isHtml = 'N';
594         if (isDebugModeEnabled()) {
595                 // In debug mode we want to display the mail instead of sending it away so we can debug this part
596                 outputHtml('<pre>
597 Headers : ' . str_replace('<', '&lt', str_replace('>', '&gt;', htmlentities(trim($mailHeader)))) . '
598 To      : ' . $toEmail . '
599 Subject : ' . $subject . '
600 Message : ' . $message . '
601 </pre>');
602         } elseif (($isHtml == 'Y') && (isExtensionActive('html_mail'))) {
603                 // Send mail as HTML away
604                 sendHtmlEmail($toEmail, $subject, $message, $mailHeader);
605         } elseif (!empty($toEmail)) {
606                 // Send Mail away
607                 sendRawEmail($toEmail, $subject, $message, $mailHeader);
608         } elseif ($isHtml != 'Y') {
609                 // Problem found!
610                 sendRawEmail(getConfig('WEBMASTER'), '[PROBLEM:]' . $subject, $message, $mailHeader);
611         }
612 }
613
614 // Check if legacy or PHPMailer command
615 // @TODO Rewrite this to an extension 'smtp'
616 // @private
617 function checkPhpMailerUsage() {
618         return ((getConfig('SMTP_HOSTNAME') != '') && (getConfig('SMTP_USER') != ''));
619 }
620
621 // Send out a raw email with PHPMailer class or legacy mail() command
622 function sendRawEmail ($toEmail, $subject, $message, $from) {
623         // Shall we use PHPMailer class or legacy mode?
624         if (checkPhpMailerUsage()) {
625                 // Use PHPMailer class with SMTP enabled
626                 loadIncludeOnce('inc/phpmailer/class.phpmailer.php');
627                 loadIncludeOnce('inc/phpmailer/class.smtp.php');
628
629                 // get new instance
630                 $mail = new PHPMailer();
631
632                 // Set charset to UTF-8
633                 $mail->CharSet('UTF-8');
634
635                 // Path for PHPMailer
636                 $mail->PluginDir  = sprintf("%sinc/phpmailer/", getConfig('PATH'));
637
638                 $mail->IsSMTP();
639                 $mail->SMTPAuth   = true;
640                 $mail->Host       = getConfig('SMTP_HOSTNAME');
641                 $mail->Port       = 25;
642                 $mail->Username   = getConfig('SMTP_USER');
643                 $mail->Password   = getConfig('SMTP_PASSWORD');
644                 if (empty($from)) {
645                         $mail->From = getConfig('WEBMASTER');
646                 } else {
647                         $mail->From = $from;
648                 }
649                 $mail->FromName   = getConfig('MAIN_TITLE');
650                 $mail->Subject    = $subject;
651                 if ((isExtensionActive('html_mail')) && (secureString($message) != $message)) {
652                         $mail->Body       = $message;
653                         $mail->AltBody    = 'Your mail program required HTML support to read this mail!';
654                         $mail->WordWrap   = 70;
655                         $mail->IsHTML(true);
656                 } else {
657                         $mail->Body       = decodeEntities($message);
658                 }
659                 $mail->AddAddress($toEmail, '');
660                 $mail->AddReplyTo(getConfig('WEBMASTER'), getConfig('MAIN_TITLE'));
661                 $mail->AddCustomHeader('Errors-To:' . getConfig('WEBMASTER'));
662                 $mail->AddCustomHeader('X-Loop:' . getConfig('WEBMASTER'));
663                 $mail->Send();
664         } else {
665                 // Use legacy mail() command
666                 mail($toEmail, $subject, decodeEntities($message), $from);
667         }
668 }
669
670 // Generate a password in a specified length or use default password length
671 function generatePassword ($length = '0') {
672         // Auto-fix invalid length of zero
673         if ($length == '0') $length = getConfig('pass_len');
674
675         // Initialize array with all allowed chars
676         $ABC = explode(',', 'a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z,A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z,0,1,2,3,4,5,6,7,8,9,-,+,_,/,.');
677
678         // Start creating password
679         $PASS = '';
680         for ($i = '0'; $i < $length; $i++) {
681                 $PASS .= $ABC[mt_rand(0, count($ABC) -1)];
682         } // END - for
683
684         // When the size is below 40 we can also add additional security by scrambling
685         // it. Otherwise we may corrupt hashes
686         if (strlen($PASS) <= 40) {
687                 // Also scramble the password
688                 $PASS = scrambleString($PASS);
689         } // END - if
690
691         // Return the password
692         return $PASS;
693 }
694
695 // Generates a human-readable timestamp from the Uni* stamp
696 function generateDateTime ($time, $mode = '0') {
697         // Filter out numbers
698         $time = bigintval($time);
699
700         // If the stamp is zero it mostly didn't "happen"
701         if ($time == '0') {
702                 // Never happend
703                 return getMessage('NEVER_HAPPENED');
704         } // END - if
705
706         switch (getLanguage()) {
707                 case 'de': // German date / time format
708                         switch ($mode) {
709                                 case 0: $ret = date("d.m.Y \u\m H:i \U\h\\r", $time); break;
710                                 case 1: $ret = strtolower(date('d.m.Y - H:i', $time)); break;
711                                 case 2: $ret = date('d.m.Y|H:i', $time); break;
712                                 case 3: $ret = date('d.m.Y', $time); break;
713                                 default:
714                                         logDebugMessage(__FUNCTION__, __LINE__, sprintf("Invalid date mode %s detected.", $mode));
715                                         break;
716                         }
717                         break;
718
719                 default: // Default is the US date / time format!
720                         switch ($mode) {
721                                 case 0: $ret = date('r', $time); break;
722                                 case 1: $ret = date('Y-m-d - g:i A', $time); break;
723                                 case 2: $ret = date('y-m-d|H:i', $time); break;
724                                 case 3: $ret = date('y-m-d', $time); break;
725                                 default:
726                                         logDebugMessage(__FUNCTION__, __LINE__, sprintf("Invalid date mode %s detected.", $mode));
727                                         break;
728                         } // END - switch
729         } // END - switch
730
731         // Return result
732         return $ret;
733 }
734
735 // Translates Y/N to yes/no
736 function translateYesNo ($yn) {
737         // Default
738         $translated = '??? (' . $yn . ')';
739         switch ($yn) {
740                 case 'Y': $translated = getMessage('YES'); break;
741                 case 'N': $translated = getMessage('NO'); break;
742                 default:
743                         // Log unknown value
744                         logDebugMessage(__FUNCTION__, __LINE__, sprintf("Unknown value %s. Expected Y/N!", $yn));
745                         break;
746         }
747
748         // Return it
749         return $translated;
750 }
751
752 // Translates the "pool type" into human-readable
753 function translatePoolType ($type) {
754         // Default?type is unknown
755         $translated = sprintf(getMessage('POOL_TYPE_UNKNOWN'), $type);
756
757         // Generate constant
758         $constName = sprintf("POOL_TYPE_%s", $type);
759
760         // Does it exist?
761         if (isMessageIdValid($constName)) {
762                 // Then use it
763                 $translated = getMessage($constName);
764         } // END - if
765
766         // Return "translation"
767         return $translated;
768 }
769
770 // Translates the american decimal dot into a german comma
771 function translateComma ($dotted, $cut = true, $max = '0') {
772         // Default is 3 you can change this in admin area "Misc -> Misc Options"
773         if (!isConfigEntrySet('max_comma')) setConfigEntry('max_comma', 3);
774
775         // Use from config is default
776         $maxComma = getConfig('max_comma');
777
778         // Use from parameter?
779         if ($max > 0) $maxComma = $max;
780
781         // Cut zeros off?
782         if (($cut === true) && ($max == '0')) {
783                 // Test for commata if in cut-mode
784                 $com = explode('.', $dotted);
785                 if (count($com) < 2) {
786                         // Don't display commatas even if there are none... ;-)
787                         $maxComma = '0';
788                 }
789         } // END - if
790
791         // Debug log
792         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "dotted={$dotted},maxComma={$maxComma}");
793
794         // Translate it now
795         switch (getLanguage()) {
796                 case 'de': // German language
797                         $dotted = number_format($dotted, $maxComma, ',', '.');
798                         break;
799
800                 default: // All others
801                         $dotted = number_format($dotted, $maxComma, '.', ',');
802                         break;
803         }
804
805         // Return translated value
806         return $dotted;
807 }
808
809 // Translate Uni*-like gender to human-readable
810 function translateGender ($gender) {
811         // Default
812         $ret = '!' . $gender . '!';
813
814         // Male/female or company?
815         switch ($gender) {
816                 case 'M': $ret = getMessage('GENDER_M'); break;
817                 case 'F': $ret = getMessage('GENDER_F'); break;
818                 case 'C': $ret = getMessage('GENDER_C'); break;
819                 default:
820                         // Log unknown gender
821                         logDebugMessage(__FUNCTION__, __LINE__, sprintf("Unknown gender %s detected.", $gender));
822                         break;
823         }
824
825         // Return translated gender
826         return $ret;
827 }
828
829 // "Translates" the user status
830 function translateUserStatus ($status) {
831         // Generate message depending on status
832         switch ($status) {
833                 case 'UNCONFIRMED':
834                 case 'CONFIRMED':
835                 case 'LOCKED':
836                         $ret = getMessage(sprintf("ACCOUNT_%s", $status));
837                         break;
838
839                 case '':
840                 case null:
841                         $ret = getMessage('ACCOUNT_DELETED');
842                         break;
843
844                 default:
845                         logDebugMessage(__FUNCTION__, __LINE__, sprintf("Unknown status %s detected.", $status));
846                         $ret = sprintf(getMessage('UNKNOWN_STATUS'), $status);
847                         break;
848         } // END - switch
849
850         // Return it
851         return $ret;
852 }
853
854 // Generates an URL for the dereferer
855 function generateDerefererUrl ($URL) {
856         // Don't de-refer our own links!
857         if (substr($URL, 0, strlen(getConfig('URL'))) != getConfig('URL')) {
858                 // De-refer this link
859                 $URL = '{?URL?}/modules.php?module=loader&amp;url=' . encodeString(compileUriCode($URL));
860         } // END - if
861
862         // Return link
863         return $URL;
864 }
865
866 // Generates an URL for the frametester
867 function generateFrametesterUrl ($URL) {
868         // Prepare frametester URL
869         $frametesterUrl = sprintf("{?URL?}/modules.php?module=frametester&amp;url=%s",
870                 encodeString(compileUriCode($URL))
871         );
872
873         // Return the new URL
874         return $frametesterUrl;
875 }
876
877 // Count entries from e.g. a selection box
878 function countSelection ($array) {
879         // Integrity check
880         if (!is_array($array)) {
881                 // Not an array!
882                 debug_report_bug(__FUNCTION__.': No array provided.');
883         } // END - if
884
885         // Init count
886         $ret = '0';
887
888         // Count all entries
889         foreach ($array as $key => $selected) {
890                 // Is it checked?
891                 if (!empty($selected)) $ret++;
892         } // END - foreach
893
894         // Return counted selections
895         return $ret;
896 }
897
898 // Generate XHTML code for the CAPTCHA
899 function generateCaptchaCode ($code, $type, $DATA, $userid) {
900         return '<img border="0" alt="Code ' . $code . '" src="{?URL?}/mailid_top.php?userid=' . $userid . '&amp;' . $type . '=' . $DATA . '&amp;mode=img&amp;code=' . $code . '" />';
901 }
902
903 // Generates a timestamp (some wrapper for mktime())
904 function makeTime ($hours, $minutes, $seconds, $stamp) {
905         // Extract day, month and year from given timestamp
906         $days   = date('d', $stamp);
907         $months = date('m', $stamp);
908         $years  = date('Y', $stamp);
909
910         // Create timestamp for wished time which depends on extracted date
911         return mktime(
912                 $hours,
913                 $minutes,
914                 $seconds,
915                 $months,
916                 $days,
917                 $years
918         );
919 }
920
921 // Redirects to an URL and if neccessarry extends it with own base URL
922 function redirectToUrl ($URL) {
923         // Compile out codes
924         eval('$URL = "' . compileRawCode($URL) . '";');
925
926         // Check if http(s):// is there
927         if ((substr($URL, 0, 7) != 'http://') && (substr($URL, 0, 8) != 'https://')) {
928                 // Make all URLs full-qualified
929                 $URL = getConfig('URL') . '/' . $URL;
930         } // END - if
931
932         // Three different debug ways...
933         //* DEBUG: */ debug_report_bug(sprintf("%s[%s:] URL=%s", __FUNCTION__, __LINE__, $URL));
934         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'URL=' . $URL);
935         //* DEBUG: */ die($URL);
936
937         // Default 'rel' value is external, nofollow is evil from Google and hurts the Internet
938         $rel = ' rel="external"';
939
940         // Do we have internal or external URL?
941         if (substr($URL, 0, strlen(getConfig('URL'))) == getConfig('URL')) {
942                 // Own (=internal) URL
943                 $rel = '';
944         } // END - if
945
946         // Get output buffer
947         $GLOBALS['output'] = ob_get_contents();
948
949         // Clear it only if there is content
950         if (!empty($GLOBALS['output'])) {
951                 clearOutputBuffer();
952         } // END - if
953
954         // Simple probe for bots/spiders from search engines
955         if ((strpos(detectUserAgent(), 'spider') !== false) || (strpos(detectUserAgent(), 'bot') !== false)) {
956                 // Secure the URL against bad things such als HTML insertions and so on...
957                 $URL = secureString($URL);
958
959                 // Output new location link as anchor
960                 outputHtml('<a href="' . $URL . '"' . $rel . '>' . $URL . '</a>');
961         } elseif (!headers_sent()) {
962                 // Load URL when headers are not sent
963                 //* DEBUG: */ debug_report_bug("URL={$URL}");
964                 sendHeader('Location: '.str_replace('&amp;', '&', $URL));
965         } else {
966                 // Output error message
967                 loadInclude('inc/header.php');
968                 loadTemplate('redirect_url', false, str_replace('&amp;', '&', $URL));
969                 loadInclude('inc/footer.php');
970         }
971
972         // Shut the mailer down here
973         shutdown();
974 }
975
976 // Wrapper for redirectToUrl but URL comes from a configuration entry
977 function redirectToConfiguredUrl ($configEntry) {
978         // Get the URL
979         $URL = getConfig($configEntry);
980
981         // Is this URL set?
982         if (is_null($URL)) {
983                 // Then abort here
984                 debug_report_bug(sprintf("Configuration entry %s is not set!", $configEntry));
985         } // END - if
986
987         // Load the URL
988         redirectToUrl($URL);
989 }
990
991 // Compiles the given HTML/mail code
992 function compileCode ($code, $simple = false, $constants = true, $full = true) {
993         // Is the code a string?
994         if (!is_string($code)) {
995                 // Silently return it
996                 return $code;
997         } // END - if
998
999         // Start couting
1000         $startCompile = explode(' ', microtime());
1001
1002         // Comile the code
1003         $code = compileRawCode($code, $simple, $constants, $full);
1004
1005         // Get timing
1006         $compiled = explode(' ', microtime());
1007
1008         // Add timing
1009         $code .= '<!-- Compilation time: ' . ((($compiled[1] + $compiled[0]) - ($startCompile[1] + $startCompile[0])) * 1000). 'ms //-->';
1010
1011         // Return compiled code
1012         return $code;
1013 }
1014
1015 // Compiles the code (use compileCode() only for HTML because of the comments)
1016 function compileRawCode ($code, $simple = false, $constants = true, $full = true) {
1017         // Is the code a string?
1018         if (!is_string($code)) {
1019                 // Silently return it
1020                 return $code;
1021         } // END - if
1022
1023         // Init replacement-array with full security characters
1024         $secChars = $GLOBALS['security_chars'];
1025
1026         // Select smaller set of chars to replace when we e.g. want to compile URLs
1027         if ($full === false) $secChars = $GLOBALS['url_chars'];
1028
1029         // Compile more through a filter
1030         $code = runFilterChain('compile_code', $code);
1031
1032         // Compile constants
1033         if ($constants === true) {
1034                 // BEFORE 0.2.1 : Language and data constants
1035                 // WITH 0.2.1+  : Only language constants
1036                 $code = str_replace('{--', "\".getMessage('", str_replace('--}', "').\"", $code));
1037
1038                 // BEFORE 0.2.1 : Not used
1039                 // WITH 0.2.1+  : Data constants
1040                 $code = str_replace('{!', "\".constant('", str_replace("!}", "').\"", $code));
1041         } // END - if
1042
1043         // Compile QUOT and other non-HTML codes
1044         foreach ($secChars['to'] as $k => $to) {
1045                 // Do the reversed thing as in inc/libs/security_functions.php
1046                 $code = str_replace($to, $secChars['from'][$k], $code);
1047         } // END - foreach
1048
1049         // But shall I keep simple quotes for later use?
1050         if ($simple) $code = str_replace("'", '{QUOT}', $code);
1051
1052         // Find $content[bla][blub] entries
1053         preg_match_all('/\$(content|GLOBALS|DATA)((\[([a-zA-Z0-9-_]+)\])*)/', $code, $matches);
1054
1055         // Are some matches found?
1056         if ((count($matches) > 0) && (count($matches[0]) > 0)) {
1057                 // Replace all matches
1058                 $matchesFound = array();
1059                 foreach ($matches[0] as $key => $match) {
1060                         // Fuzzy look has failed by default
1061                         $fuzzyFound = false;
1062
1063                         // Fuzzy look on match if already found
1064                         foreach ($matchesFound as $found => $set) {
1065                                 // Get test part
1066                                 $test = substr($found, 0, strlen($match));
1067
1068                                 // Does this entry exist?
1069                                 //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):found={$found},match={$match},set={$set}<br />");
1070                                 if ($test == $match) {
1071                                         // Match found!
1072                                         //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):fuzzyFound!<br />");
1073                                         $fuzzyFound = true;
1074                                         break;
1075                                 } // END - if
1076                         } // END - foreach
1077
1078                         // Skip this entry?
1079                         if ($fuzzyFound === true) continue;
1080
1081                         // Take all string elements
1082                         if ((is_string($matches[4][$key])) && (!isset($matchesFound[$match])) && (!isset($matchesFound[$key."_" . $matches[4][$key]]))) {
1083                                 // Replace it in the code
1084                                 //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):key={$key},match={$match}<br />");
1085                                 $newMatch = str_replace('[', "['", str_replace(']', "']", $match));
1086                                 $code = str_replace($match, "\"." . $newMatch.".\"", $code);
1087                                 $matchesFound[$key . '_' . $matches[4][$key]] = 1;
1088                                 $matchesFound[$match] = 1;
1089                         } elseif (!isset($matchesFound[$match])) {
1090                                 // Not yet replaced!
1091                                 //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):match={$match}<br />");
1092                                 $code = str_replace($match, "\"." . $match.".\"", $code);
1093                                 $matchesFound[$match] = 1;
1094                         }
1095                 } // END - foreach
1096         } // END - if
1097
1098         // Return it
1099         return $code;
1100 }
1101
1102 /************************************************************************
1103  *                                                                      *
1104  * Gaenderter Sortier-Algorythmus, $array wird nach dem Array (!)       *
1105  * $a_sort sortiert:                                                    *
1106  *                                                                      *
1107  * $array - Das 3-dimensionale Array, das paralell sortiert werden soll *
1108  * $a_sort - Array, das die Sortiereihenfolge der ersten Elementeben    *
1109  * $primary_key - Prim.rschl.ssel aus $a_sort, nach dem sortiert wird   *
1110  * $order - Sortiereihenfolge: -1 = a-Z, 0 = keine, 1 = Z-a             *
1111  * $nums - true = Als Zahlen sortieren, false = Als Zeichen sortieren   *
1112  *                                                                      *
1113  * $a_sort muss Elemente enthalten, deren Wert Schluessel von $array    *
1114  * sind... Klingt kompliziert, suchen Sie mal mein Beispiel, dann sehen *
1115  * Sie, dass es doch nicht so schwer ist! :-)                           *
1116  *                                                                      *
1117  ************************************************************************/
1118 function array_pk_sort (&$array, $a_sort, $primary_key = '0', $order = -1, $nums = false) {
1119         $dummy = $array;
1120         while ($primary_key < count($a_sort)) {
1121                 foreach ($dummy[$a_sort[$primary_key]] as $key => $value) {
1122                         foreach ($dummy[$a_sort[$primary_key]] as $key2 => $value2) {
1123                                 $match = false;
1124                                 if ($nums === false) {
1125                                         // Sort byte-by-byte (also numbers will be interpreted as chars! E.g.: "9" > "10")
1126                                         if (($key != $key2) && (strcmp(strtolower($dummy[$a_sort[$primary_key]][$key]), strtolower($dummy[$a_sort[$primary_key]][$key2])) == $order)) $match = true;
1127                                 } elseif ($key != $key2) {
1128                                         // Sort numbers (E.g.: 9 < 10)
1129                                         if (($dummy[$a_sort[$primary_key]][$key] < $dummy[$a_sort[$primary_key]][$key2]) && ($order == -1)) $match = true;
1130                                         if (($dummy[$a_sort[$primary_key]][$key] > $dummy[$a_sort[$primary_key]][$key2]) && ($order == 1))  $match = true;
1131                                 }
1132
1133                                 if ($match) {
1134                                         // We have found two different values, so let's sort whole array
1135                                         foreach ($dummy as $sort_key => $sort_val) {
1136                                                 $t                       = $dummy[$sort_key][$key];
1137                                                 $dummy[$sort_key][$key]  = $dummy[$sort_key][$key2];
1138                                                 $dummy[$sort_key][$key2] = $t;
1139                                                 unset($t);
1140                                         } // END - foreach
1141                                 } // END - if
1142                         } // END - foreach
1143                 } // END - foreach
1144
1145                 // Count one up
1146                 $primary_key++;
1147         } // END - while
1148
1149         // Write back sorted array
1150         $array = $dummy;
1151 }
1152
1153 //
1154 function addSelectionBox ($type, $default, $prefix = '', $id = '0', $class = 'register_select') {
1155         $OUT = '';
1156
1157         if ($type == 'yn') {
1158                 // This is a yes/no selection only!
1159                 if ($id > 0) $prefix .= "[" . $id."]";
1160                 $OUT .= "    <select name=\"" . $prefix."\" class=\"" . $class . "\" size=\"1\">\n";
1161         } else {
1162                 // Begin with regular selection box here
1163                 if (!empty($prefix)) $prefix .= "_";
1164                 $type2 = $type;
1165                 if ($id > 0) $type2 .= "[" . $id."]";
1166                 $OUT .= "    <select name=\"".strtolower($prefix . $type2)."\" class=\"" . $class . "\" size=\"1\">\n";
1167         }
1168
1169         switch ($type) {
1170                 case 'day': // Day
1171                         for ($idx = 1; $idx < 32; $idx++) {
1172                                 $OUT .= "<option value=\"" . $idx."\"";
1173                                 if ($default == $idx) $OUT .= ' selected="selected"';
1174                                 $OUT .= ">" . $idx."</option>\n";
1175                         } // END - for
1176                         break;
1177
1178                 case 'month': // Month
1179                         foreach ($GLOBALS['month_descr'] as $month => $descr) {
1180                                 $OUT .= "<option value=\"" . $month."\"";
1181                                 if ($default == $month) $OUT .= ' selected="selected"';
1182                                 $OUT .= ">" . $descr."</option>\n";
1183                         } // END - for
1184                         break;
1185
1186                 case 'year': // Year
1187                         // Get current year
1188                         $year = date('Y', time());
1189
1190                         // Use configured min age or fixed?
1191                         if ((isExtensionActive('other')) && (getExtensionVersion('other') >= '0.2.1')) {
1192                                 // Configured
1193                                 $startYear = $year - getConfig('min_age');
1194                         } else {
1195                                 // Fixed 16 years
1196                                 $startYear = $year - 16;
1197                         }
1198
1199                         // Calculate earliest year (100 years old people can still enter Internet???)
1200                         $minYear = $year - 100;
1201
1202                         // Check if the default value is larger than minimum and bigger than actual year
1203                         if (($default > $minYear) && ($default >= $year)) {
1204                                 for ($idx = $year; $idx < ($year + 11); $idx++) {
1205                                         $OUT .= "<option value=\"" . $idx."\"";
1206                                         if ($default == $idx) $OUT .= ' selected="selected"';
1207                                         $OUT .= ">" . $idx."</option>\n";
1208                                 } // END - for
1209                         } elseif ($default == -1) {
1210                                 // Current year minus 1
1211                                 for ($idx = $startYear; $idx <= ($year + 1); $idx++)
1212                                 {
1213                                         $OUT .= "<option value=\"" . $idx."\">" . $idx."</option>\n";
1214                                 }
1215                         } else {
1216                                 // Get current year and subtract the configured minimum age
1217                                 $OUT .= "<option value=\"".($minYear - 1)."\">&lt;" . $minYear."</option>\n";
1218                                 // Calculate earliest year depending on extension version
1219                                 if ((isExtensionActive('other')) && (getExtensionVersion('other') >= '0.2.1')) {
1220                                         // Use configured minimum age
1221                                         $year = date('Y', time()) - getConfig('min_age');
1222                                 } else {
1223                                         // Use fixed 16 years age
1224                                         $year = date('Y', time()) - 16;
1225                                 }
1226
1227                                 // Construct year selection list
1228                                 for ($idx = $minYear; $idx <= $year; $idx++) {
1229                                         $OUT .= "<option value=\"" . $idx."\"";
1230                                         if ($default == $idx) $OUT .= ' selected="selected"';
1231                                         $OUT .= ">" . $idx."</option>\n";
1232                                 } // END - for
1233                         }
1234                         break;
1235
1236                 case 'sec':
1237                 case 'min':
1238                         for ($idx = '0'; $idx < 60; $idx+=5) {
1239                                 if (strlen($idx) == 1) $idx = '0' . $idx;
1240                                 $OUT .= "<option value=\"" . $idx."\"";
1241                                 if ($default == $idx) $OUT .= ' selected="selected"';
1242                                 $OUT .= ">" . $idx."</option>\n";
1243                         } // END - for
1244                         break;
1245
1246                 case 'hour':
1247                         for ($idx = '0'; $idx < 24; $idx++) {
1248                                 if (strlen($idx) == 1) $idx = '0' . $idx;
1249                                 $OUT .= "<option value=\"" . $idx."\"";
1250                                 if ($default == $idx) $OUT .= ' selected="selected"';
1251                                 $OUT .= ">" . $idx."</option>\n";
1252                         } // END - for
1253                         break;
1254
1255                 case 'yn':
1256                         $OUT .= "<option value=\"Y\"";
1257                         if ($default == 'Y') $OUT .= ' selected="selected"';
1258                         $OUT .= ">{--YES--}</option>\n<option value=\"N\"";
1259                         if ($default != 'Y') $OUT .= ' selected="selected"';
1260                         $OUT .= ">{--NO--}</option>\n";
1261                         break;
1262         }
1263         $OUT .= "    </select>\n";
1264         return $OUT;
1265 }
1266
1267 //
1268 // Deprecated : $length
1269 // Optional   : $DATA
1270 //
1271 function generateRandomCode ($length, $code, $userid, $DATA = '') {
1272         // Build server string
1273         $server = $_SERVER['PHP_SELF'] . getConfig('ENCRYPT_SEPERATOR') . detectUserAgent() . getConfig('ENCRYPT_SEPERATOR') . getenv('SERVER_SOFTWARE') . getConfig('ENCRYPT_SEPERATOR') . detectRemoteAddr().":'.':".filemtime(getConfig('PATH').'inc/databases.php');
1274
1275         // Build key string
1276         $keys = getConfig('SITE_KEY') . getConfig('ENCRYPT_SEPERATOR') . getConfig('DATE_KEY');
1277         if (isConfigEntrySet('secret_key'))  $keys .= getConfig('ENCRYPT_SEPERATOR').getConfig('secret_key');
1278         if (isConfigEntrySet('file_hash'))   $keys .= getConfig('ENCRYPT_SEPERATOR').getConfig('file_hash');
1279         $keys .= getConfig('ENCRYPT_SEPERATOR') . date('d-m-Y (l-F-T)', getConfig('patch_ctime'));
1280         if (isConfigEntrySet('master_salt')) $keys .= getConfig('ENCRYPT_SEPERATOR').getConfig('master_salt');
1281
1282         // Build string from misc data
1283         $data   = $code . getConfig('ENCRYPT_SEPERATOR') . $userid . getConfig('ENCRYPT_SEPERATOR') . $DATA;
1284
1285         // Add more additional data
1286         if (isSessionVariableSet('u_hash'))         $data .= getConfig('ENCRYPT_SEPERATOR') . getSession('u_hash');
1287
1288         // Add referal id, language, theme and userid
1289         $data .= getConfig('ENCRYPT_SEPERATOR') . determineReferalId();
1290         $data .= getConfig('ENCRYPT_SEPERATOR') . getLanguage();
1291         $data .= getConfig('ENCRYPT_SEPERATOR') . getCurrentTheme();
1292         $data .= getConfig('ENCRYPT_SEPERATOR') . getMemberId();
1293
1294         // Calculate number for generating the code
1295         $a = $code + getConfig('_ADD') - 1;
1296
1297         if (isConfigEntrySet('master_salt')) {
1298                 // Generate hash with master salt from modula of number with the prime number and other data
1299                 $saltedHash = generateHash(($a % getConfig('_PRIME')) . getConfig('ENCRYPT_SEPERATOR') . $server . getConfig('ENCRYPT_SEPERATOR') . $keys . getConfig('ENCRYPT_SEPERATOR') . $data . getConfig('ENCRYPT_SEPERATOR') . getConfig('DATE_KEY') . getConfig('ENCRYPT_SEPERATOR') . $a, getConfig('master_salt'));
1300
1301                 // Create number from hash
1302                 $rcode = hexdec(substr($saltedHash, strlen(getConfig('master_salt')), 9)) / abs(getConfig('rand_no') - $a + sqrt(getConfig('_ADD'))) / pi();
1303         } else {
1304                 // Generate hash with "hash of site key" from modula of number with the prime number and other data
1305                 $saltedHash = generateHash(($a % getConfig('_PRIME')) . getConfig('ENCRYPT_SEPERATOR') . $server . getConfig('ENCRYPT_SEPERATOR') . $keys . getConfig('ENCRYPT_SEPERATOR') . $data . getConfig('ENCRYPT_SEPERATOR') . getConfig('DATE_KEY') . getConfig('ENCRYPT_SEPERATOR') . $a, substr(sha1(getConfig('SITE_KEY')), 0, getConfig('salt_length')));
1306
1307                 // Create number from hash
1308                 $rcode = hexdec(substr($saltedHash, 8, 9)) / abs(getConfig('rand_no') - $a + sqrt(getConfig('_ADD'))) / pi();
1309         }
1310
1311         // At least 10 numbers shall be secure enought!
1312         $len = getConfig('code_length');
1313         if ($len == '0') $len = $length;
1314         if ($len == '0') $len = 10;
1315
1316         // Cut off requested counts of number
1317         $return = substr(str_replace('.', '', $rcode), 0, $len);
1318
1319         // Done building code
1320         return $return;
1321 }
1322
1323 // Does only allow numbers
1324 function bigintval ($num, $castValue = true) {
1325         // Filter all numbers out
1326         $ret = preg_replace('/[^0123456789]/', '', $num);
1327
1328         // Shall we cast?
1329         if ($castValue === true) $ret = (double)$ret;
1330
1331         // Has the whole value changed?
1332         if ('' . $ret . '' != '' . $num . '') {
1333                 // Log the values
1334                 debug_report_bug('Problem with number found. ret=' . $ret . ', num='. $num);
1335         } // END - if
1336
1337         // Return result
1338         return $ret;
1339 }
1340
1341 // Insert the code in $img_code into jpeg or PNG image
1342 function generateImageOrCode ($img_code, $headerSent = true) {
1343         // Is the code size oversized or shouldn't we display it?
1344         if ((strlen($img_code) > 6) || (empty($img_code)) || (getConfig('code_length') == '0')) {
1345                 // Stop execution of function here because of over-sized code length
1346                 debug_report_bug('img_code ' . $img_code .' has invalid length. img_code()=' . strlen($img_code) . ' code_length=' . getConfig('code_length'));
1347         } elseif ($headerSent === false) {
1348                 // Return an HTML code here
1349                 return "<img src=\"{?URL?}/img.php?code=" . $img_code."\" alt=\"Image\" />\n";
1350         }
1351
1352         // Load image
1353         $img = sprintf("%s/theme/%s/images/code_bg.%s",
1354                 getConfig('PATH'),
1355                 getCurrentTheme(),
1356                 getConfig('img_type')
1357         );
1358
1359         // Is it readable?
1360         if (isFileReadable($img)) {
1361                 // Switch image type
1362                 switch (getConfig('img_type'))
1363                 {
1364                         case 'jpg':
1365                                 // Okay, load image and hide all errors
1366                                 $image = imagecreatefromjpeg($img);
1367                                 break;
1368
1369                         case 'png':
1370                                 // Okay, load image and hide all errors
1371                                 $image = imagecreatefrompng($img);
1372                                 break;
1373                 }
1374         } else {
1375                 // Exit function here
1376                 logDebugMessage(__FUNCTION__, __LINE__, sprintf("File for image type %s not found.", getConfig('img_type')));
1377                 return;
1378         }
1379
1380         // Generate text color (red/green/blue; 0 = dark, 255 = bright)
1381         $text_color = imagecolorallocate($image, 0, 0, 0);
1382
1383         // Insert code into image
1384         imagestring($image, 5, 14, 2, $img_code, $text_color);
1385
1386         // Return to browser
1387         sendHeader('Content-Type: image/' . getConfig('img_type'));
1388
1389         // Output image with matching image factory
1390         switch (getConfig('img_type')) {
1391                 case 'jpg': imagejpeg($image); break;
1392                 case 'png': imagepng($image);  break;
1393         }
1394
1395         // Remove image from memory
1396         imagedestroy($image);
1397 }
1398 // Create selection box or array of splitted timestamp
1399 function createTimeSelections ($timestamp, $prefix = '', $display = '', $align = 'center', $return_array=false) {
1400         // Calculate 2-seconds timestamp
1401         $stamp = round($timestamp);
1402         //* DEBUG: */ print("*" . $stamp.'/' . $timestamp."*<br />");
1403
1404         // Do we have a leap year?
1405         $SWITCH = '0';
1406         $TEST = date('Y', time()) / 4;
1407         $M1 = date('m', time());
1408         $M2 = date('m', (time() + $timestamp));
1409
1410         // If so and if current time is before 02/29 and estimated time is after 02/29 then add 86400 seconds (one day)
1411         if ((floor($TEST) == $TEST) && ($M1 == "02") && ($M2 > "02"))  $SWITCH = getConfig('ONE_DAY');
1412
1413         // First of all years...
1414         $Y = abs(floor($timestamp / (31536000 + $SWITCH)));
1415         //* DEBUG: */ print("Y={$Y}<br />");
1416         // Next months...
1417         $M = abs(floor($timestamp / 2628000 - $Y * 12));
1418         //* DEBUG: */ print("M={$M}<br />");
1419         // Next weeks
1420         $W = abs(floor($timestamp / 604800 - $Y * ((365 + $SWITCH / getConfig('ONE_DAY')) / 7) - ($M / 12 * (365 + $SWITCH / getConfig('ONE_DAY')) / 7)));
1421         //* DEBUG: */ print("W={$W}<br />");
1422         // Next days...
1423         $D = abs(floor($timestamp / 86400 - $Y * (365 + $SWITCH / getConfig('ONE_DAY')) - ($M / 12 * (365 + $SWITCH / getConfig('ONE_DAY'))) - $W * 7));
1424         //* DEBUG: */ print("D={$D}<br />");
1425         // Next hours...
1426         $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));
1427         //* DEBUG: */ print("h={$h}<br />");
1428         // Next minutes..
1429         $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));
1430         //* DEBUG: */ print("m={$m}<br />");
1431         // And at last seconds...
1432         $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));
1433         //* DEBUG: */ print("s={$s}<br />");
1434
1435         // Is seconds zero and time is < 60 seconds?
1436         if (($s == '0') && ($timestamp < 60)) {
1437                 // Fix seconds
1438                 $s = round($timestamp);
1439         } // END - if
1440
1441         //
1442         // Now we convert them in seconds...
1443         //
1444         if ($return_array) {
1445                 // Just put all data in an array for later use
1446                 $OUT = array(
1447                         'YEARS'   => $Y,
1448                         'MONTHS'  => $M,
1449                         'WEEKS'   => $W,
1450                         'DAYS'    => $D,
1451                         'HOURS'   => $h,
1452                         'MINUTES' => $m,
1453                         'SECONDS' => $s
1454                 );
1455         } else {
1456                 // Generate table
1457                 $OUT  = "<div align=\"" . $align."\">\n";
1458                 $OUT .= "<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" class=\"admin_table dashed\">\n";
1459                 $OUT .= "<tr>\n";
1460
1461                 if (ereg('Y', $display) || (empty($display))) {
1462                         $OUT .= "  <td align=\"center\" class=\"admin_title bottom\"><div class=\"tiny\">{--_YEARS--}</strong></td>\n";
1463                 }
1464
1465                 if (ereg('M', $display) || (empty($display))) {
1466                         $OUT .= "  <td align=\"center\" class=\"admin_title bottom\"><div class=\"tiny\">{--_MONTHS--}</strong></td>\n";
1467                 }
1468
1469                 if (ereg("W", $display) || (empty($display))) {
1470                         $OUT .= "  <td align=\"center\" class=\"admin_title bottom\"><div class=\"tiny\">{--_WEEKS--}</strong></td>\n";
1471                 }
1472
1473                 if (ereg("D", $display) || (empty($display))) {
1474                         $OUT .= "  <td align=\"center\" class=\"admin_title bottom\"><div class=\"tiny\">{--_DAYS--}</strong></td>\n";
1475                 }
1476
1477                 if (ereg("h", $display) || (empty($display))) {
1478                         $OUT .= "  <td align=\"center\" class=\"admin_title bottom\"><div class=\"tiny\">{--_HOURS--}</strong></td>\n";
1479                 }
1480
1481                 if (ereg('m', $display) || (empty($display))) {
1482                         $OUT .= "  <td align=\"center\" class=\"admin_title bottom\"><div class=\"tiny\">{--_MINUTES--}</strong></td>\n";
1483                 }
1484
1485                 if (ereg("s", $display) || (empty($display))) {
1486                         $OUT .= "  <td align=\"center\" class=\"admin_title bottom\"><div class=\"tiny\">{--_SECONDS--}</strong></td>\n";
1487                 }
1488
1489                 $OUT .= "</tr>\n";
1490                 $OUT .= "<tr>\n";
1491
1492                 if (ereg('Y', $display) || (empty($display))) {
1493                         // Generate year selection
1494                         $OUT .= "  <td align=\"center\"><select class=\"mini_select\" name=\"" . $prefix."_ye\" size=\"1\">\n";
1495                         for ($idx = '0'; $idx <= 10; $idx++) {
1496                                 $OUT .= "    <option class=\"mini_select\" value=\"" . $idx."\"";
1497                                 if ($idx == $Y) $OUT .= ' selected="selected"';
1498                                 $OUT .= ">" . $idx."</option>\n";
1499                         }
1500                         $OUT .= "  </select></td>\n";
1501                 } else {
1502                         $OUT .= "<INPUT type=\"hidden\" name=\"" . $prefix."_ye\" value=\"0\" />\n";
1503                 }
1504
1505                 if (ereg('M', $display) || (empty($display))) {
1506                         // Generate month selection
1507                         $OUT .= "  <td align=\"center\"><select class=\"mini_select\" name=\"" . $prefix."_mo\" size=\"1\">\n";
1508                         for ($idx = '0'; $idx <= 11; $idx++)
1509                         {
1510                                 $OUT .= "  <option class=\"mini_select\" value=\"" . $idx."\"";
1511                                 if ($idx == $M) $OUT .= ' selected="selected"';
1512                                 $OUT .= ">" . $idx."</option>\n";
1513                         }
1514                         $OUT .= "  </select></td>\n";
1515                 } else {
1516                         $OUT .= "<INPUT type=\"hidden\" name=\"" . $prefix."_mo\" value=\"0\" />\n";
1517                 }
1518
1519                 if (ereg("W", $display) || (empty($display))) {
1520                         // Generate week selection
1521                         $OUT .= "  <td align=\"center\"><select class=\"mini_select\" name=\"" . $prefix."_we\" size=\"1\">\n";
1522                         for ($idx = '0'; $idx <= 4; $idx++) {
1523                                 $OUT .= "  <option class=\"mini_select\" value=\"" . $idx."\"";
1524                                 if ($idx == $W) $OUT .= ' selected="selected"';
1525                                 $OUT .= ">" . $idx."</option>\n";
1526                         }
1527                         $OUT .= "  </select></td>\n";
1528                 } else {
1529                         $OUT .= "<INPUT type=\"hidden\" name=\"" . $prefix."_we\" value=\"0\" />\n";
1530                 }
1531
1532                 if (ereg("D", $display) || (empty($display))) {
1533                         // Generate day selection
1534                         $OUT .= "  <td align=\"center\"><select class=\"mini_select\" name=\"" . $prefix."_da\" size=\"1\">\n";
1535                         for ($idx = '0'; $idx <= 31; $idx++) {
1536                                 $OUT .= "  <option class=\"mini_select\" value=\"" . $idx."\"";
1537                                 if ($idx == $D) $OUT .= ' selected="selected"';
1538                                 $OUT .= ">" . $idx."</option>\n";
1539                         }
1540                         $OUT .= "  </select></td>\n";
1541                 } else {
1542                         $OUT .= "<INPUT type=\"hidden\" name=\"" . $prefix."_da\" value=\"0\">\n";
1543                 }
1544
1545                 if (ereg("h", $display) || (empty($display))) {
1546                         // Generate hour selection
1547                         $OUT .= "  <td align=\"center\"><select class=\"mini_select\" name=\"" . $prefix."_ho\" size=\"1\">\n";
1548                         for ($idx = '0'; $idx <= 23; $idx++)    {
1549                                 $OUT .= "  <option class=\"mini_select\" value=\"" . $idx."\"";
1550                                 if ($idx == $h) $OUT .= ' selected="selected"';
1551                                 $OUT .= ">" . $idx."</option>\n";
1552                         }
1553                         $OUT .= "  </select></td>\n";
1554                 } else {
1555                         $OUT .= "<INPUT type=\"hidden\" name=\"" . $prefix."_ho\" value=\"0\">\n";
1556                 }
1557
1558                 if (ereg('m', $display) || (empty($display))) {
1559                         // Generate minute selection
1560                         $OUT .= "  <td align=\"center\"><select class=\"mini_select\" name=\"" . $prefix."_mi\" size=\"1\">\n";
1561                         for ($idx = '0'; $idx <= 59; $idx++) {
1562                                 $OUT .= "  <option class=\"mini_select\" value=\"" . $idx."\"";
1563                                 if ($idx == $m) $OUT .= ' selected="selected"';
1564                                 $OUT .= ">" . $idx."</option>\n";
1565                         }
1566                         $OUT .= "  </select></td>\n";
1567                 } else {
1568                         $OUT .= "<INPUT type=\"hidden\" name=\"" . $prefix."_mi\" value=\"0\">\n";
1569                 }
1570
1571                 if (ereg("s", $display) || (empty($display))) {
1572                         // Generate second selection
1573                         $OUT .= "  <td align=\"center\"><select class=\"mini_select\" name=\"" . $prefix."_se\" size=\"1\">\n";
1574                         for ($idx = '0'; $idx <= 59; $idx++) {
1575                                 $OUT .= "  <option class=\"mini_select\" value=\"" . $idx."\"";
1576                                 if ($idx == $s) $OUT .= ' selected="selected"';
1577                                 $OUT .= ">" . $idx."</option>\n";
1578                         }
1579                         $OUT .= "  </select></td>\n";
1580                 } else {
1581                         $OUT .= "<INPUT type=\"hidden\" name=\"" . $prefix."_se\" value=\"0\">\n";
1582                 }
1583                 $OUT .= "</tr>\n";
1584                 $OUT .= "</table>\n";
1585                 $OUT .= "</div>\n";
1586                 // Return generated HTML code
1587         }
1588         return $OUT;
1589 }
1590
1591 //
1592 function createTimestampFromSelections ($prefix, $postData) {
1593         // Initial return value
1594         $ret = '0';
1595
1596         // Do we have a leap year?
1597         $SWITCH = '0';
1598         $TEST = date('Y', time()) / 4;
1599         $M1   = date('m', time());
1600         // If so and if current time is before 02/29 and estimated time is after 02/29 then add 86400 seconds (one day)
1601         if ((floor($TEST) == $TEST) && ($M1 == "02") && ($postData[$prefix."_mo"] > "02"))  $SWITCH = getConfig('ONE_DAY');
1602         // First add years...
1603         $ret += $postData[$prefix."_ye"] * (31536000 + $SWITCH);
1604         // Next months...
1605         $ret += $postData[$prefix."_mo"] * 2628000;
1606         // Next weeks
1607         $ret += $postData[$prefix."_we"] * 604800;
1608         // Next days...
1609         $ret += $postData[$prefix."_da"] * 86400;
1610         // Next hours...
1611         $ret += $postData[$prefix."_ho"] * 3600;
1612         // Next minutes..
1613         $ret += $postData[$prefix."_mi"] * 60;
1614         // And at last seconds...
1615         $ret += $postData[$prefix."_se"];
1616         // Return calculated value
1617         return $ret;
1618 }
1619
1620 // Creates a 'fancy' human-readable timestamp from a Uni* stamp
1621 function createFancyTime ($stamp) {
1622         // Get data array with years/months/weeks/days/...
1623         $data = createTimeSelections($stamp, '', '', '', true);
1624         $ret = '';
1625         foreach($data as $k => $v) {
1626                 if ($v > 0) {
1627                         // Value is greater than 0 "eval" data to return string
1628                         eval("\$ret .= \", \".\$v.\" {--_".strtoupper($k)."--}\";");
1629                         break;
1630                 } // END - if
1631         } // END - foreach
1632
1633         // Do we have something there?
1634         if (strlen($ret) > 0) {
1635                 // Remove leading commata and space
1636                 $ret = substr($ret, 2);
1637         } else {
1638                 // Zero seconds
1639                 $ret = "0 {--_SECONDS--}";
1640         }
1641
1642         // Return fancy time string
1643         return $ret;
1644 }
1645
1646 // Generates a navigation row for listing emails
1647 function addEmailNavigation ($PAGES, $offset, $show_form, $colspan, $return=false) {
1648         $SEP = ''; $TOP = '';
1649         if ($show_form === false) {
1650                 $TOP = " top2";
1651                 $SEP = "<tr><td colspan=\"" . $colspan."\" class=\"seperator\">&nbsp;</td></tr>";
1652         }
1653
1654         $NAV = '';
1655         for ($page = 1; $page <= $PAGES; $page++) {
1656                 // Is the page currently selected or shall we generate a link to it?
1657                 if (($page == getRequestElement('page')) || ((!isGetRequestElementSet('page')) && ($page == 1))) {
1658                         // Is currently selected, so only highlight it
1659                         $NAV .= '<strong>-';
1660                 } else {
1661                         // Open anchor tag and add base URL
1662                         $NAV .= '<a href="{?URL?}/modules.php?module=admin&amp;what=' . getWhat() . '&amp;page=' . $page . '&amp;offset=' . $offset;
1663
1664                         // Add userid when we shall show all mails from a single member
1665                         if ((isGetRequestElementSet('userid')) && (bigintval(getRequestElement('userid')) > 0)) $NAV .= '&amp;userid=' . bigintval(getRequestElement('userid'));
1666
1667                         // Close open anchor tag
1668                         $NAV .= '">';
1669                 }
1670                 $NAV .= $page;
1671                 if (($page == getRequestElement('page')) || ((!isGetRequestElementSet('page')) && ($page == 1))) {
1672                         // Is currently selected, so only highlight it
1673                         $NAV .= '-</strong>';
1674                 } else {
1675                         // Close anchor tag
1676                         $NAV .= '</a>';
1677                 }
1678
1679                 // Add seperator if we have not yet reached total pages
1680                 if ($page < $PAGES) $NAV .= '&nbsp;|&nbsp;';
1681         } // END - for
1682
1683         // Define constants only once
1684         $content['nav']  = $NAV;
1685         $content['span'] = $colspan;
1686         $content['top']  = $TOP;
1687         $content['sep']  = $SEP;
1688
1689         // Load navigation template
1690         $OUT = loadTemplate('admin_email_nav_row', true, $content);
1691
1692         if ($return === true) {
1693                 // Return generated HTML-Code
1694                 return $OUT;
1695         } else {
1696                 // Output HTML-Code
1697                 outputHtml($OUT);
1698         }
1699 }
1700
1701 // Extract host from script name
1702 function extractHostnameFromUrl (&$script) {
1703         // Use default SERVER_URL by default... ;) So?
1704         $url = getConfig('SERVER_URL');
1705
1706         // Is this URL valid?
1707         if (substr($script, 0, 7) == 'http://') {
1708                 // Use the hostname from script URL as new hostname
1709                 $url = substr($script, 7);
1710                 $extract = explode('/', $url);
1711                 $url = $extract[0];
1712                 // Done extracting the URL :)
1713         } // END - if
1714
1715         // Extract host name
1716         $host = str_replace('http://', '', $url);
1717         if (ereg('/', $host)) $host = substr($host, 0, strpos($host, '/'));
1718
1719         // Generate relative URL
1720         //* DEBUG: */ print("SCRIPT=" . $script.'<br />');
1721         if (substr(strtolower($script), 0, 7) == 'http://') {
1722                 // But only if http:// is in front!
1723                 $script = substr($script, (strlen($url) + 7));
1724         } elseif (substr(strtolower($script), 0, 8) == "https://") {
1725                 // Does this work?!
1726                 $script = substr($script, (strlen($url) + 8));
1727         }
1728
1729         //* DEBUG: */ print("SCRIPT=" . $script.'<br />');
1730         if (substr($script, 0, 1) == '/') $script = substr($script, 1);
1731
1732         // Return host name
1733         return $host;
1734 }
1735
1736 // Send a GET request
1737 function sendGetRequest ($script, $data = array()) {
1738         // Extract host name from script
1739         $host = extractHostnameFromUrl($script);
1740
1741         // Add data
1742         $scriptData = http_build_query($data, '', '&');
1743
1744         // Do we have a question-mark in the script?
1745         if (strpos($script, '?') === false) {
1746                 // No, so first char must be question mark
1747                 $scriptData = '?' . $scriptData;
1748         } else {
1749                 // Ok, add &
1750                 $scriptData = '&' . $scriptData;
1751         }
1752
1753         // Add script data
1754         $script .= $scriptData;
1755
1756         // Generate GET request header
1757         $request  = 'GET /' . trim($script) . ' HTTP/1.1' . getConfig('HTTP_EOL');
1758         $request .= 'Host: ' . $host . getConfig('HTTP_EOL');
1759         $request .= 'Referer: ' . getConfig('URL') . '/admin.php' . getConfig('HTTP_EOL');
1760         if (isConfigEntrySet('FULL_VERSION')) {
1761                 $request .= 'User-Agent: ' . getConfig('TITLE') . '/' . getConfig('FULL_VERSION') . getConfig('HTTP_EOL');
1762         } else {
1763                 $request .= 'User-Agent: ' . getConfig('TITLE') . '/' . getConfig('VERSION') . getConfig('HTTP_EOL');
1764         }
1765         $request .= 'Content-Type: text/plain' . getConfig('HTTP_EOL');
1766         $request .= 'Cache-Control: no-cache' . getConfig('HTTP_EOL');
1767         $request .= 'Connection: Close' . getConfig('HTTP_EOL') . getConfig('HTTP_EOL');
1768
1769         // Send the raw request
1770         $response = sendRawRequest($host, $request);
1771
1772         // Return the result to the caller function
1773         return $response;
1774 }
1775
1776 // Send a POST request
1777 function sendPostRequest ($script, $postData) {
1778         // Is postData an array?
1779         if (!is_array($postData)) {
1780                 // Abort here
1781                 logDebugMessage(__FUNCTION__, __LINE__, sprintf("postData is not an array. Type: %s", gettype($postData)));
1782                 return array('', '', '');
1783         } // END - if
1784
1785         // Extract host name from script
1786         $host = extractHostnameFromUrl($script);
1787
1788         // Construct request
1789         $data = http_build_query($postData, '', '&');
1790
1791         // Generate POST request header
1792         $request  = 'POST /' . trim($script) . ' HTTP/1.1' . getConfig('HTTP_EOL');
1793         $request .= 'Host: ' . $host . getConfig('HTTP_EOL');
1794         $request .= 'Referer: ' . getConfig('URL') . '/admin.php' . getConfig('HTTP_EOL');
1795         $request .= 'User-Agent: ' . getConfig('TITLE') . '/' . getConfig('FULL_VERSION') . getConfig('HTTP_EOL');
1796         $request .= 'Content-Type: application/x-www-form-urlencoded' . getConfig('HTTP_EOL');
1797         $request .= 'Content-length: ' . strlen($data) . getConfig('HTTP_EOL');
1798         $request .= 'Cache-Control: no-cache' . getConfig('HTTP_EOL');
1799         $request .= 'Connection: Close' . getConfig('HTTP_EOL') . getConfig('HTTP_EOL');
1800         $request .= $data;
1801
1802         // Send the raw request
1803         $response = sendRawRequest($host, $request);
1804
1805         // Return the result to the caller function
1806         return $response;
1807 }
1808
1809 // Sends a raw request to another host
1810 function sendRawRequest ($host, $request) {
1811         // Init errno and errdesc with 'all fine' values
1812         $errno = '0'; $errdesc = '';
1813
1814         // Initialize array
1815         $response = array('', '', '');
1816
1817         // Default is not to use proxy
1818         $useProxy = false;
1819
1820         // Are proxy settins set?
1821         if ((isConfigEntrySet('proxy_host')) && (getConfig('proxy_host') != '') && (isConfigEntrySet('proxy_port')) && (getConfig('proxy_port') > 0)) {
1822                 // Then use it
1823                 $useProxy = true;
1824         } // END - if
1825
1826         // Open connection
1827         //* DEBUG: */ die("SCRIPT=" . $script.'<br />');
1828         if ($useProxy === true) {
1829                 // Connect to host through proxy connection
1830                 $fp = @fsockopen(compileRawCode(getConfig('proxy_host')), bigintval(getConfig('proxy_port')), $errno, $errdesc, 30);
1831         } else {
1832                 // Connect to host directly
1833                 $fp = @fsockopen($host, 80, $errno, $errdesc, 30);
1834         }
1835
1836         // Is there a link?
1837         if (!is_resource($fp)) {
1838                 // Failed!
1839                 return $response;
1840         } // END - if
1841
1842         // Do we use proxy?
1843         if ($useProxy === true) {
1844                 // Generate CONNECT request header
1845                 $proxyTunnel  = "CONNECT " . $host . ":80 HTTP/1.1" . getConfig('HTTP_EOL');
1846                 $proxyTunnel .= "Host: " . $host . getConfig('HTTP_EOL');
1847
1848                 // Use login data to proxy? (username at least!)
1849                 if (getConfig('proxy_username') != '') {
1850                         // Add it as well
1851                         $encodedAuth = base64_encode(compileRawCode(getConfig('proxy_username')) . getConfig('ENCRYPT_SEPERATOR') . compileRawCode(getConfig('proxy_password')));
1852                         $proxyTunnel .= "Proxy-Authorization: Basic " . $encodedAuth . getConfig('HTTP_EOL');
1853                 } // END - if
1854
1855                 // Add last new-line
1856                 $proxyTunnel .= getConfig('HTTP_EOL');
1857                 //* DEBUG: */ print("<strong>proxyTunnel=</strong><pre>" . $proxyTunnel."</pre>");
1858
1859                 // Write request
1860                 fputs($fp, $proxyTunnel);
1861
1862                 // Got response?
1863                 if (feof($fp)) {
1864                         // No response received
1865                         return $response;
1866                 } // END - if
1867
1868                 // Read the first line
1869                 $resp = trim(fgets($fp, 10240));
1870                 $respArray = explode(' ', $resp);
1871                 if ((strtolower($respArray[0]) !== 'http/1.0') || ($respArray[1] != '200')) {
1872                         // Invalid response!
1873                         return $response;
1874                 } // END - if
1875         } // END - if
1876
1877         // Write request
1878         fputs($fp, $request);
1879
1880         // Read response
1881         while (!feof($fp)) {
1882                 $response[] = trim(fgets($fp, 1024));
1883         } // END - while
1884
1885         // Close socket
1886         fclose($fp);
1887
1888         // Skip first empty lines
1889         $resp = $response;
1890         foreach ($resp as $idx => $line) {
1891                 // Trim space away
1892                 $line = trim($line);
1893
1894                 // Is this line empty?
1895                 if (empty($line)) {
1896                         // Then remove it
1897                         array_shift($response);
1898                 } else {
1899                         // Abort on first non-empty line
1900                         break;
1901                 }
1902         } // END - foreach
1903
1904         //* DEBUG: */ print("<strong>Response:</strong><pre>".print_r($response, true)."</pre>");
1905
1906         // Proxy agent found?
1907         if ((substr(strtolower($response[0]), 0, 11) == 'proxy-agent') && ($useProxy === true)) {
1908                 // Proxy header detected, so remove two lines
1909                 array_shift($response);
1910                 array_shift($response);
1911         } // END - if
1912
1913         // Was the request successfull?
1914         if ((!eregi('200 OK', $response[0])) || (empty($response[0]))) {
1915                 // Not found / access forbidden
1916                 $response = array('', '', '');
1917         } // END - if
1918
1919         // Return response
1920         return $response;
1921 }
1922
1923 // Taken from www.php.net eregi() user comments
1924 function isEmailValid ($email) {
1925         // Check first part of email address
1926         $first = '[-a-z0-9!#$%&\'*+/=?^_<{|}~]+(\.[-a-zA-Z0-9!#$%&\'*+/=?^_<{|}~]+)*';
1927
1928         //  Check domain
1929         $domain = '[a-z0-9-]+(\.[a-z0-9-]{2,5})+';
1930
1931         // Generate pattern
1932         $regex = '@^' . $first . '\@' . $domain . '$@iU';
1933
1934         // Return check result
1935         return preg_match($regex, $email);
1936 }
1937
1938 // Function taken from user comments on www.php.net / function eregi()
1939 function isUrlValid ($URL, $compile=true) {
1940         // Trim URL a little
1941         $URL = trim(urldecode($URL));
1942         //* DEBUG: */ outputHtml($URL.'<br />');
1943
1944         // Compile some chars out...
1945         if ($compile === true) $URL = compileUriCode($URL, false, false, false);
1946         //* DEBUG: */ outputHtml($URL.'<br />');
1947
1948         // Check for the extension filter
1949         if (isExtensionActive('filter')) {
1950                 // Use the extension's filter set
1951                 return FILTER_VALIDATE_URL($URL, false);
1952         } // END - if
1953
1954         // If not installed, perform a simple test. Just make it sure there is always a http:// or
1955         // https:// in front of the URLs
1956         return isUrlValidSimple($URL);
1957 }
1958
1959 // Generate a list of administrative links to a given userid
1960 function generateMemberAdminActionLinks ($userid, $status = '') {
1961         // Make sure userid is a number
1962         if ($userid != bigintval($userid)) debug_report_bug('userid is not a number!');
1963
1964         // Define all main targets
1965         $targetArray = array('del_user', 'edit_user', 'lock_user', 'add_points', 'sub_points');
1966
1967         // Begin of navigation links
1968         $OUT = "[&nbsp;";
1969
1970         foreach ($targetArray as $tar) {
1971                 $OUT .= "<span class=\"admin_user_link\"><a href=\"{?URL?}/modules.php?module=admin&amp;what=" . $tar . "&amp;userid=" . $userid . "\" title=\"{--ADMIN_LINK_";
1972                 //* DEBUG: */ outputHtml("*" . $tar.'/' . $status."*<br />");
1973                 if (($tar == 'lock_user') && ($status == 'LOCKED')) {
1974                         // Locked accounts shall be unlocked
1975                         $OUT .= 'UNLOCK_USER';
1976                 } else {
1977                         // All other status is fine
1978                         $OUT .= strtoupper($tar);
1979                 }
1980                 $OUT .= "_TITLE--}\">{--ADMIN_";
1981                 if (($tar == 'lock_user') && ($status == 'LOCKED')) {
1982                         // Locked accounts shall be unlocked
1983                         $OUT .= 'UNLOCK_USER';
1984                 } else {
1985                         // All other status is fine
1986                         $OUT .= strtoupper($tar);
1987                 }
1988                 $OUT .= "--}</a></span>&nbsp;|&nbsp;";
1989         }
1990
1991         // Finish navigation link
1992         $OUT = substr($OUT, 0, -7) . ']';
1993
1994         // Return string
1995         return $OUT;
1996 }
1997
1998 // Generate an email link
1999 function generateEmailLink ($email, $table = 'admins') {
2000         // Default email link (INSECURE! Spammer can read this by harvester programs)
2001         $EMAIL = 'mailto:' . $email;
2002
2003         // Check for several extensions
2004         if ((isExtensionActive('admins')) && ($table == 'admins')) {
2005                 // Create email link for contacting admin in guest area
2006                 $EMAIL = generateAdminEmailLink($email);
2007         } elseif ((isExtensionActive('user')) && (getExtensionVersion('user') >= '0.3.3') && ($table == 'user_data')) {
2008                 // Create email link for contacting a member within admin area (or later in other areas, too?)
2009                 $EMAIL = generateUserEmailLink($email, 'admin');
2010         } elseif ((isExtensionActive('sponsor')) && ($table == 'sponsor_data')) {
2011                 // Create email link to contact sponsor within admin area (or like the link above?)
2012                 $EMAIL = generateSponsorEmailLink($email, 'sponsor_data');
2013         }
2014
2015         // Shall I close the link when there is no admin?
2016         if ((!isAdmin()) && ($EMAIL == $email)) $EMAIL = '#'; // Closed!
2017
2018         // Return email link
2019         return $EMAIL;
2020 }
2021
2022 // Generate a hash for extra-security for all passwords
2023 function generateHash ($plainText, $salt = '') {
2024         // Is the required extension 'sql_patches' there and a salt is not given?
2025         if (((isExtensionInstalledAndOlder('sql_patches', '0.3.6')) || (!isExtensionActive('sql_patches')) || (!isExtensionInstalledAndNewer('other', '0.2.5'))) && (empty($salt))) {
2026                 // Extension sql_patches is missing/outdated so we hash the plain text with MD5
2027                 return md5($plainText);
2028         } // END - if
2029
2030         // Do we miss an arry element here?
2031         if (!isConfigEntrySet('file_hash')) {
2032                 // Stop here
2033                 debug_report_bug('Missing file_hash in ' . __FUNCTION__ . '.');
2034         } // END - if
2035
2036         // When the salt is empty build a new one, else use the first x configured characters as the salt
2037         if (empty($salt)) {
2038                 // Build server string (inc/databases.php is no longer updated with every commit)
2039                 $server = $_SERVER['PHP_SELF'] . getConfig('ENCRYPT_SEPERATOR') . detectUserAgent() . getConfig('ENCRYPT_SEPERATOR') . getenv('SERVER_SOFTWARE') . getConfig('ENCRYPT_SEPERATOR') . detectRemoteAddr();
2040
2041                 // Build key string
2042                 $keys   = getConfig('SITE_KEY') . getConfig('ENCRYPT_SEPERATOR') . getConfig('DATE_KEY') . getConfig('ENCRYPT_SEPERATOR') . getConfig('secret_key') . getConfig('ENCRYPT_SEPERATOR') . getConfig('file_hash') . getConfig('ENCRYPT_SEPERATOR') . date('d-m-Y (l-F-T)', getConfig('patch_ctime')) . getConfig('ENCRYPT_SEPERATOR') . getConfig('master_salt');
2043
2044                 // Additional data
2045                 $data = $plainText . getConfig('ENCRYPT_SEPERATOR') . uniqid(mt_rand(), true) . getConfig('ENCRYPT_SEPERATOR') . time();
2046
2047                 // Calculate number for generating the code
2048                 $a = time() + getConfig('_ADD') - 1;
2049
2050                 // Generate SHA1 sum from modula of number and the prime number
2051                 $sha1 = sha1(($a % getConfig('_PRIME')) . $server . getConfig('ENCRYPT_SEPERATOR') . $keys . getConfig('ENCRYPT_SEPERATOR') . $data . getConfig('ENCRYPT_SEPERATOR') . getConfig('DATE_KEY') . getConfig('ENCRYPT_SEPERATOR') . $a);
2052                 //* DEBUG: */ outputHtml("SHA1=" . $sha1." (".strlen($sha1).")<br />");
2053                 $sha1 = scrambleString($sha1);
2054                 //* DEBUG: */ outputHtml("Scrambled=" . $sha1." (".strlen($sha1).")<br />");
2055                 //* DEBUG: */ $sha1b = descrambleString($sha1);
2056                 //* DEBUG: */ outputHtml("Descrambled=" . $sha1b." (".strlen($sha1b).")<br />");
2057
2058                 // Generate the password salt string
2059                 $salt = substr($sha1, 0, getConfig('salt_length'));
2060                 //* DEBUG: */ outputHtml($salt." (".strlen($salt).")<br />");
2061         } else {
2062                 // Use given salt
2063                 //* DEBUG: */ print 'salt=' . $salt . '<br />';
2064                 $salt = substr($salt, 0, getConfig('salt_length'));
2065                 //* DEBUG: */ print 'salt=' . $salt . '(' . strlen($salt) . '/' . getConfig('salt_length') . ')<br />';
2066
2067                 // Sanity check on salt
2068                 if (strlen($salt) != getConfig('salt_length')) {
2069                         // Not the same!
2070                         debug_report_bug(__FUNCTION__.': salt length mismatch! ('.strlen($salt).'/'.getConfig('salt_length').')');
2071                 } // END - if
2072         }
2073
2074         // Return hash
2075         return $salt.sha1($salt . $plainText);
2076 }
2077
2078 // Scramble a string
2079 function scrambleString($str) {
2080         // Init
2081         $scrambled = '';
2082
2083         // Final check, in case of failture it will return unscrambled string
2084         if (strlen($str) > 40) {
2085                 // The string is to long
2086                 return $str;
2087         } elseif (strlen($str) == 40) {
2088                 // From database
2089                 $scrambleNums = explode(':', getConfig('pass_scramble'));
2090         } else {
2091                 // Generate new numbers
2092                 $scrambleNums = explode(':', genScrambleString(strlen($str)));
2093         }
2094
2095         // Scramble string here
2096         //* DEBUG: */ outputHtml("***Original=" . $str."***<br />");
2097         for ($idx = '0'; $idx < strlen($str); $idx++) {
2098                 // Get char on scrambled position
2099                 $char = substr($str, $scrambleNums[$idx], 1);
2100
2101                 // Add it to final output string
2102                 $scrambled .= $char;
2103         } // END - for
2104
2105         // Return scrambled string
2106         //* DEBUG: */ outputHtml("***Scrambled=" . $scrambled."***<br />");
2107         return $scrambled;
2108 }
2109
2110 // De-scramble a string scrambled by scrambleString()
2111 function descrambleString($str) {
2112         // Scramble only 40 chars long strings
2113         if (strlen($str) != 40) return $str;
2114
2115         // Load numbers from config
2116         $scrambleNums = explode(':', getConfig('pass_scramble'));
2117
2118         // Validate numbers
2119         if (count($scrambleNums) != 40) return $str;
2120
2121         // Begin descrambling
2122         $orig = str_repeat(' ', 40);
2123         //* DEBUG: */ outputHtml("+++Scrambled=" . $str."+++<br />");
2124         for ($idx = '0'; $idx < 40; $idx++) {
2125                 $char = substr($str, $idx, 1);
2126                 $orig = substr_replace($orig, $char, $scrambleNums[$idx], 1);
2127         } // END - for
2128
2129         // Return scrambled string
2130         //* DEBUG: */ outputHtml("+++Original=" . $orig."+++<br />");
2131         return $orig;
2132 }
2133
2134 // Generated a "string" for scrambling
2135 function genScrambleString ($len) {
2136         // Prepare array for the numbers
2137         $scrambleNumbers = array();
2138
2139         // First we need to setup randomized numbers from 0 to 31
2140         for ($idx = '0'; $idx < $len; $idx++) {
2141                 // Generate number
2142                 $rand = mt_rand(0, ($len -1));
2143
2144                 // Check for it by creating more numbers
2145                 while (array_key_exists($rand, $scrambleNumbers)) {
2146                         $rand = mt_rand(0, ($len -1));
2147                 } // END - while
2148
2149                 // Add number
2150                 $scrambleNumbers[$rand] = $rand;
2151         } // END - for
2152
2153         // So let's create the string for storing it in database
2154         $scrambleString = implode(':', $scrambleNumbers);
2155         return $scrambleString;
2156 }
2157
2158 // Generate an PGP-like encrypted hash of given hash for e.g. cookies
2159 function generatePassString ($passHash) {
2160         // Return vanilla password hash
2161         $ret = $passHash;
2162
2163         // Is a secret key and master salt already initialized?
2164         if ((isExtensionInstalled('sql_patches')) && (isExtensionInstalledAndNewer('other', '0.2.5')) && (isConfigEntrySet('_PRIME')) && (isConfigEntrySet('secret_key')) && (isConfigEntrySet('master_salt'))) {
2165                 // Only calculate when the secret key is generated
2166                 $newHash = ''; $start = 9;
2167                 for ($idx = '0'; $idx < 10; $idx++) {
2168                         $part1 = hexdec(substr($passHash, $start, 4));
2169                         $part2 = hexdec(substr(getConfig('secret_key'), $start, 4));
2170                         $mod = dechex($idx);
2171                         if ($part1 > $part2) {
2172                                 $mod = dechex(sqrt(($part1 - $part2) * getConfig('_PRIME') / pi()));
2173                         } elseif ($part2 > $part1) {
2174                                 $mod = dechex(sqrt(($part2 - $part1) * getConfig('_PRIME') / pi()));
2175                         }
2176                         $mod = substr($mod, 0, 4);
2177                         //* DEBUG: */ outputHtml('part1='.$part1.'/part2='.$part2.'/mod=' . $mod . '('.strlen($mod).')<br />');
2178                         $mod = str_repeat(0, (4 - strlen($mod))) . $mod;
2179                         //* DEBUG: */ outputHtml('*' . $start . '=' . $mod . '*<br />');
2180                         $start += 4;
2181                         $newHash .= $mod;
2182                 } // END - for
2183
2184                 //* DEBUG: */ print($passHash.'<br />' . $newHash." (".strlen($newHash).')<br />');
2185                 $ret = generateHash($newHash, getConfig('master_salt'));
2186                 //* DEBUG: */ print('ret='.$ret.'<br />');
2187         } else {
2188                 // Hash it simple
2189                 //* DEBUG: */ outputHtml("--" . $passHash."--<br />");
2190                 $ret = md5($passHash);
2191                 //* DEBUG: */ outputHtml("++" . $ret."++<br />");
2192         }
2193
2194         // Return result
2195         return $ret;
2196 }
2197
2198 // Fix "deleted" cookies
2199 function fixDeletedCookies ($cookies) {
2200         // Is this an array with entries?
2201         if ((is_array($cookies)) && (count($cookies) > 0)) {
2202                 // Then check all cookies if they are marked as deleted!
2203                 foreach ($cookies as $cookieName) {
2204                         // Is the cookie set to "deleted"?
2205                         if (getSession($cookieName) == 'deleted') {
2206                                 setSession($cookieName, '');
2207                         } // END - if
2208                 } // END - foreach
2209         } // END - if
2210 }
2211
2212 // Output error messages in a fasioned way and die...
2213 function app_die ($F, $L, $message) {
2214         // Check if Script is already dieing and not let it kill itself another 1000 times
2215         if (!isset($GLOBALS['app_died'])) {
2216                 // Make sure, that the script realy realy diese here and now
2217                 $GLOBALS['app_died'] = true;
2218
2219                 // Load header
2220                 loadIncludeOnce('inc/header.php');
2221
2222                 // Rewrite message for output
2223                 $message = sprintf(getMessage('MXCHANGE_HAS_DIED'), basename($F), $L, $message);
2224
2225                 // Better log this message away
2226                 logDebugMessage($F, $L, $message);
2227
2228                 // Load the message template
2229                 loadTemplate('admin_settings_saved', false, $message);
2230
2231                 // Load footer
2232                 loadIncludeOnce('inc/footer.php');
2233         } else {
2234                 // Script tried to kill itself twice
2235                 debug_report_bug('Script wanted to kill itself more than once! Raw message=' . $message . ', file/function=' . $F . ', line=' . $L);
2236         }
2237 }
2238
2239 // Display parsing time and number of SQL queries in footer
2240 function displayParsingTime() {
2241         // Is the timer started?
2242         if (!isset($GLOBALS['startTime'])) {
2243                 // Abort here
2244                 return false;
2245         } // END - if
2246
2247         // Get end time
2248         $endTime = microtime(true);
2249
2250         // "Explode" both times
2251         $start = explode(' ', $GLOBALS['startTime']);
2252         $end = explode(' ', $endTime);
2253         $runTime = $end[0] - $start[0];
2254         if ($runTime < 0) $runTime = '0';
2255
2256         // Prepare output
2257         $content = array(
2258                 'runtime'  => translateComma($runTime),
2259                 'timeSQLs' => translateComma(getConfig('sql_time') * 1000),
2260         );
2261
2262         // Load the template
2263         loadTemplate('show_timings', false, $content);
2264 }
2265
2266 // Check wether a boolean constant is set
2267 // Taken from user comments in PHP documentation for function constant()
2268 function isBooleanConstantAndTrue ($constName) { // : Boolean
2269         // Failed by default
2270         $res = false;
2271
2272         // In cache?
2273         if (isset($GLOBALS['cache_array']['const'][$constName])) {
2274                 // Use cache
2275                 //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>): " . $constName."-CACHE!<br />");
2276                 $res = ($GLOBALS['cache_array']['const'][$constName] === true);
2277         } else {
2278                 // Check constant
2279                 //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>): " . $constName."-RESOLVE!<br />");
2280                 if (defined($constName)) {
2281                         // Found!
2282                         //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>): " . $constName."-FOUND!<br />");
2283                         $res = (constant($constName) === true);
2284                 } // END - if
2285
2286                 // Set cache
2287                 $GLOBALS['cache_array']['const'][$constName] = $res;
2288         }
2289         //* DEBUG: */ var_dump($res);
2290
2291         // Return value
2292         return $res;
2293 }
2294
2295 // Checks if a given apache module is loaded
2296 function isApacheModuleLoaded ($apacheModule) {
2297         // Check it and return result
2298         return (((function_exists('apache_get_modules')) && (in_array($apacheModule, apache_get_modules()))) || (!function_exists('apache_get_modules')));
2299 }
2300
2301 // Get current theme name
2302 function getCurrentTheme () {
2303         // The default theme is 'default'... ;-)
2304         $ret = 'default';
2305
2306         // Load default theme if not empty from configuration
2307         if ((isConfigEntrySet('default_theme')) && (getConfig('default_theme') != '')) $ret = getConfig('default_theme');
2308
2309         if (!isSessionVariableSet('mxchange_theme')) {
2310                 // Set default theme
2311                 setTheme($ret);
2312         } elseif ((isSessionVariableSet('mxchange_theme')) && (isExtensionInstalledAndNewer('sql_patches', '0.1.4'))) {
2313                 //die("<pre>".print_r($GLOBALS['cache_array']['themes'], true)."</pre>");
2314                 // Get theme from cookie
2315                 $ret = getSession('mxchange_theme');
2316
2317                 // Is it valid?
2318                 if (getThemeId($ret) == '0') {
2319                         // Fix it to default
2320                         $ret = 'default';
2321                 } // END - if
2322         } elseif ((!isInstalled()) && ((isInstalling()) || (getOutputMode() == true)) && ((isGetRequestElementSet('theme')) || (isPostRequestElementSet('theme')))) {
2323                 // Prepare FQFN for checking
2324                 $theme = sprintf("%stheme/%s/theme.php", getConfig('PATH'), getRequestElement('theme'));
2325
2326                 // Installation mode active
2327                 if ((isGetRequestElementSet('theme')) && (isFileReadable($theme))) {
2328                         // Set cookie from URL data
2329                         setTheme(getRequestElement('theme'));
2330                 } elseif (isFileReadable(sprintf("%stheme/%s/theme.php", getConfig('PATH'), SQL_ESCAPE(postRequestElement('theme'))))) {
2331                         // Set cookie from posted data
2332                         setTheme(SQL_ESCAPE(postRequestElement('theme')));
2333                 }
2334
2335                 // Set return value
2336                 $ret = getSession('mxchange_theme');
2337         } else {
2338                 // Invalid design, reset cookie
2339                 setTheme($ret);
2340         }
2341
2342         // Return theme value
2343         return $ret;
2344 }
2345
2346 // Setter for theme in session
2347 function setTheme ($newTheme) {
2348         setSession('mxchange_theme', $newTheme);
2349 }
2350
2351 // Get id from theme
2352 // @TODO Try to move this to inc/libs/theme_functions.php
2353 function getThemeId ($name) {
2354         // Is the extension 'theme' installed?
2355         if (!isExtensionActive('theme')) {
2356                 // Then abort here
2357                 return 0;
2358         } // END - if
2359
2360         // Default id
2361         $id = '0';
2362
2363         // Is the cache entry there?
2364         if (isset($GLOBALS['cache_array']['themes']['id'][$name])) {
2365                 // Get the version from cache
2366                 $id = $GLOBALS['cache_array']['themes']['id'][$name];
2367
2368                 // Count up
2369                 incrementStatsEntry('cache_hits');
2370         } elseif (getExtensionVersion('cache') != '0.1.8') {
2371                 // Check if current theme is already imported or not
2372                 $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_themes` WHERE `theme_path`='%s' LIMIT 1",
2373                         array($name), __FUNCTION__, __LINE__);
2374
2375                 // Entry found?
2376                 if (SQL_NUMROWS($result) == 1) {
2377                         // Fetch data
2378                         list($id) = SQL_FETCHROW($result);
2379                 } // END - if
2380
2381                 // Free result
2382                 SQL_FREERESULT($result);
2383         }
2384
2385         // Return id
2386         return $id;
2387 }
2388
2389 // Generates an error code from given account status
2390 function generateErrorCodeFromUserStatus ($status='') {
2391         // If no status is provided, use the default, cached
2392         if ((empty($status)) && (isMember())) {
2393                 // Get user status
2394                 $status = getUserData('status');
2395         } // END - if
2396
2397         // Default error code if unknown account status
2398         $errorCode = getCode('UNKNOWN_STATUS');
2399
2400         // Generate constant name
2401         $constantName = sprintf("ID_%s", $status);
2402
2403         // Is the constant there?
2404         if (isCodeSet($constantName)) {
2405                 // Then get it!
2406                 $errorCode = getCode($constantName);
2407         } else {
2408                 // Unknown status
2409                 logDebugMessage(__FUNCTION__, __LINE__, sprintf("Unknown error status %s detected.", $status));
2410         }
2411
2412         // Return error code
2413         return $errorCode;
2414 }
2415
2416 // Function to search for the last modifified file
2417 function searchDirsRecursive ($dir, &$last_changed) {
2418         // Get dir as array
2419         //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):dir=" . $dir.'<br />');
2420         // Does it match what we are looking for? (We skip a lot files already!)
2421         // RegexPattern to exclude  ., .., .revision,  .svn, debug.log or .cache in the filenames
2422         $excludePattern = '@(\.revision|debug\.log|\.cache|config\.php)$@';
2423         $ds = getArrayFromDirectory($dir, '', true, false, array(), '.php', $excludePattern);
2424         //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):ds[]=".count($ds).'<br />');
2425
2426         // Walk through all entries
2427         foreach ($ds as $d) {
2428                 // Generate proper FQFN
2429                 $FQFN = str_replace('//', '/', getConfig('PATH') . $dir. '/'. $d);
2430
2431                 // Is it a file and readable?
2432                 //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):FQFN={$FQFN}<br />");
2433                 if (isDirectory($FQFN)) {
2434                         // $FQFN is a directory so also crawl into this directory
2435                         $newDir = $d;
2436                         if (!empty($dir)) $newDir = $dir . '/'. $d;
2437                         //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):DESCENT: " . $newDir.'<br />');
2438                         searchDirsRecursive($newDir, $last_changed);
2439                 } elseif (isFileReadable($FQFN)) {
2440                         // $FQFN is a filename and no directory
2441                         $time = filemtime($FQFN);
2442                         //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):File: " . $d." found. (".($last_changed['time'] - $time).")<br />");
2443                         if ($last_changed['time'] < $time) {
2444                                 // This file is newer as the file before
2445                                 //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>) - NEWER!<br />");
2446                                 $last_changed['path_name'] = $FQFN;
2447                                 $last_changed['time'] = $time;
2448                         } // END - if
2449                 }
2450         } // END - foreach
2451 }
2452
2453 // "Getter" for revision/version data
2454 function getActualVersion ($type = 'Revision') {
2455         // By default nothing is new... ;-)
2456         $new = false;
2457
2458         // Is the cache entry there?
2459         if (isset($GLOBALS['cache_array']['revision'][$type])) {
2460                 // Found so increase cache hit
2461                 incrementStatsEntry('cache_hits');
2462
2463                 // Return it
2464                 return $GLOBALS['cache_array']['revision'][$type][0];
2465         } else {
2466                 // FQFN of revision file
2467                 $FQFN = sprintf("%s/.revision", getConfig('CACHE_PATH'));
2468
2469                 // Check if 'check_revision_data' is setted (switch for manually rewrite the .revision-File)
2470                 if ((isGetRequestElementSet('check_revision_data')) && (getRequestElement('check_revision_data') == 'yes')) {
2471                         // Forced rebuild of .revision file
2472                         $new = true;
2473                 } else {
2474                         // Check for revision file
2475                         if (!isFileReadable($FQFN)) {
2476                                 // Not found, so we need to create it
2477                                 $new = true;
2478                         } else {
2479                                 // Revision file found
2480                                 $ins_vers = explode("\n", readFromFile($FQFN));
2481
2482                                 // Get array for mapping information
2483                                 $mapper = array_flip(getSearchFor());
2484                                 //* DEBUG: */ print('<pre>mapper='.print_r($mapper, true).'</pre>ins_vers=<pre>'.print_r($ins_vers, true).'</pre>');
2485
2486                                 // Is the content valid?
2487                                 if ((!is_array($ins_vers)) || (count($ins_vers) <= 0) || (!isset($ins_vers[$mapper[$type]])) || (trim($ins_vers[$mapper[$type]]) == '') || ($ins_vers[0]) == 'new') {
2488                                         // File needs update!
2489                                         $new = true;
2490                                 } else {
2491                                         // Generate fake cache entry
2492                                         foreach ($mapper as $map=>$idx) {
2493                                                 $GLOBALS['cache_array']['revision'][$map][0] = $ins_vers[$idx];
2494                                         } // END - foreach
2495
2496                                         // Return found value
2497                                         return trim($ins_vers[$mapper[$type]]);
2498                                 }
2499                         }
2500                 }
2501
2502                 // Has it been updated?
2503                 if ($new === true)  {
2504                         // Write it
2505                         writeToFile($FQFN, implode("\n", getArrayFromActualVersion()));
2506
2507                         // ... and call recursive
2508                         return getActualVersion($type);
2509                 } // END - if
2510         }
2511 }
2512
2513 // Repares an array we are looking for
2514 // The returned Array is needed twice (in getArrayFromActualVersion() and in getActualVersion() in the old .revision-fallback) so I puted it in an extra function to not polute the global namespace
2515 function getSearchFor () {
2516         // Add Revision, Date, Tag and Author
2517         $searchFor = array('Revision', 'Date', 'Tag', 'Author', 'File');
2518
2519         // Return the created array
2520         return $searchFor;
2521 }
2522
2523 // @TODO Please describe this function
2524 function getArrayFromActualVersion () {
2525         // Init variables
2526         $next_dir = '';
2527
2528         // Directory to start with search
2529         $last_changed = array(
2530                 'path_name' => '',
2531                 'time'      => 0
2532         );
2533
2534         // Init return array
2535         $akt_vers = array();
2536
2537         // Init value for counting the founded keywords
2538         $res = '0';
2539
2540         // Searches all Files and there date of the last modifikation and puts the newest File in $last_changed.
2541         searchDirsRecursive($next_dir, $last_changed); // @TODO small change to API to $last_changed = searchDirsRecursive($next_dir, $time);
2542
2543         // Get file
2544         $last_file = readFromFile($last_changed['path_name']);
2545
2546         // Get all the keywords to search for
2547         $searchFor = getSearchFor();
2548
2549         // This foreach loops the $searchFor-Tags (array('Revision', 'Date', 'Tag', 'Author') --> could easaly extended in the future)
2550         foreach ($searchFor as $search) {
2551                 // Searches for "$search-tag:VALUE$" or "$search-tag::VALUE$"(the stylish keywordversion ;-)) in the lates modified file
2552                 $res += preg_match('@\$' . $search.'(:|::) (.*) \$@U', $last_file, $t);
2553                 // This trimms the search-result and puts it in the $GLOBALS['cache_array']['revision']-return array
2554                 if (isset($t[2])) $GLOBALS['cache_array']['revision'][$search] = trim($t[2]);
2555         } // END - foreach
2556
2557         // Save the last-changed filename for debugging
2558         $GLOBALS['cache_array']['revision']['File'] = $last_changed['path_name'];
2559
2560         // at least 3 keyword-Tags are needed for propper values
2561         if ($res && $res >= 3
2562         && isset($GLOBALS['cache_array']['revision']['Revision']) && $GLOBALS['cache_array']['revision']['Revision'] != ''
2563         && isset($GLOBALS['cache_array']['revision']['Date']) && $GLOBALS['cache_array']['revision']['Date'] != ''
2564         && isset($GLOBALS['cache_array']['revision']['Tag']) && $GLOBALS['cache_array']['revision']['Tag'] != '') {
2565                 // Prepare content witch need special treadment
2566
2567                 // Prepare timestamp for date
2568                 preg_match('@(....)-(..)-(..) (..):(..):(..)@', $GLOBALS['cache_array']['revision']['Date'], $match_d);
2569                 $GLOBALS['cache_array']['revision']['Date'] = mktime($match_d[4], $match_d[5], $match_d[6], $match_d[2], $match_d[3], $match_d[1]);
2570
2571                 // Add author to the Tag if the author is set and is not quix0r (lead coder)
2572                 if ((isset($GLOBALS['cache_array']['revision']['Author'])) && ($GLOBALS['cache_array']['revision']['Author'] != 'quix0r')) {
2573                         $GLOBALS['cache_array']['revision']['Tag'] .= '-'.strtoupper($GLOBALS['cache_array']['revision']['Author']);
2574                 } // END - if
2575
2576         } else {
2577                 // No valid Data from the last modificated file so read the Revision from the Server. Fallback-solution!! Should not be removed I think.
2578                 $version = sendGetRequest('check-updates3.php');
2579
2580                 // Prepare content
2581                 // Only sets not setted or not proper values to the Online-Server-Fallback-Solution
2582                 if (!isset($GLOBALS['cache_array']['revision']['Revision']) || $GLOBALS['cache_array']['revision']['Revision'] == '') $GLOBALS['cache_array']['revision']['Revision'] = trim($version[10]);
2583                 if (!isset($GLOBALS['cache_array']['revision']['Date'])     || $GLOBALS['cache_array']['revision']['Date']     == '') $GLOBALS['cache_array']['revision']['Date']     = trim($version[9]);
2584                 if (!isset($GLOBALS['cache_array']['revision']['Tag'])      || $GLOBALS['cache_array']['revision']['Tag']      == '') $GLOBALS['cache_array']['revision']['Tag']      = trim($version[8]);
2585                 if (!isset($GLOBALS['cache_array']['revision']['Author'])   || $GLOBALS['cache_array']['revision']['Author']   == '') $GLOBALS['cache_array']['revision']['Author']   = 'quix0r';
2586                 if (!isset($GLOBALS['cache_array']['revision']['File'])     || $GLOBALS['cache_array']['revision']['File']     == '') $GLOBALS['cache_array']['revision']['File']     = trim($version[11]);
2587         }
2588
2589         // Return prepared array
2590         return $GLOBALS['cache_array']['revision'];
2591 }
2592
2593 // Back-ported from the new ship-simu engine. :-)
2594 function debug_get_printable_backtrace () {
2595         // Init variable
2596         $backtrace = "<ol>\n";
2597
2598         // Get and prepare backtrace for output
2599         $backtraceArray = debug_backtrace();
2600         foreach ($backtraceArray as $key => $trace) {
2601                 if (!isset($trace['file'])) $trace['file'] = __FUNCTION__;
2602                 if (!isset($trace['line'])) $trace['line'] = __LINE__;
2603                 if (!isset($trace['args'])) $trace['args'] = array();
2604                 $backtrace .= "<li class=\"debug_list\"><span class=\"backtrace_file\">".basename($trace['file'])."</span>:" . $trace['line'].", <span class=\"backtrace_function\">" . $trace['function'].'('.count($trace['args']).")</span></li>\n";
2605         } // END - foreach
2606
2607         // Close it
2608         $backtrace .= "</ol>\n";
2609
2610         // Return the backtrace
2611         return $backtrace;
2612 }
2613
2614 // Output a debug backtrace to the user
2615 function debug_report_bug ($message = '') {
2616         // Is this already called?
2617         if (isset($GLOBALS[__FUNCTION__])) {
2618                 // Other backtrace
2619                 print 'Message:'.$message.'<br />Backtrace:<pre>';
2620                 debug_print_backtrace();
2621                 die('</pre>');
2622         } // END - if
2623
2624         // Set this function as called
2625         $GLOBALS[__FUNCTION__] = true;
2626
2627         // Init message
2628         $debug = '';
2629
2630         // Is the optional message set?
2631         if (!empty($message)) {
2632                 // Use and log it
2633                 $debug = sprintf("Note: %s<br />\n",
2634                         $message
2635                 );
2636
2637                 // @TODO Add a little more infos here
2638                 logDebugMessage(__FUNCTION__, __LINE__, strip_tags($message));
2639         } // END - if
2640
2641         // Add output
2642         $debug .= "Please report this bug at <a title=\"Direct link to the bug-tracker\" href=\"http://bugs.mxchange.org\" rel=\"external\" target=\"_blank\">bugs.mxchange.org</a> and include the logfile from <strong>" . getConfig('CACHE_PATH') . "debug.log</strong> in your report (you can now attach files):<pre>";
2643         $debug .= debug_get_printable_backtrace();
2644         $debug .= "</pre>\nRequest-URI: " . getRequestUri()."<br />\n";
2645         $debug .= "Thank you for finding bugs.";
2646
2647         // And abort here
2648         // @TODO This cannot be rewritten to app_die(), try to find a solution for this.
2649         die($debug);
2650 }
2651
2652 // Generates a ***weak*** seed (taken from de.php.net/mt_srand)
2653 function generateSeed () {
2654         list($usec, $sec) = explode(' ', microtime());
2655         $microTime = (((float)$sec + (float)$usec)) * 100000;
2656         return $microTime;
2657 }
2658
2659 // Converts a message code to a human-readable message
2660 function getMessageFromErrorCode ($code) {
2661         $message = '';
2662         switch ($code) {
2663                 case '': break;
2664                 case getCode('LOGOUT_DONE')      : $message = getMessage('LOGOUT_DONE'); break;
2665                 case getCode('LOGOUT_FAILED')    : $message = "<span class=\"guest_failed\">{--LOGOUT_FAILED--}</span>"; break;
2666                 case getCode('DATA_INVALID')     : $message = getMessage('MAIL_DATA_INVALID'); break;
2667                 case getCode('POSSIBLE_INVALID') : $message = getMessage('MAIL_POSSIBLE_INVALID'); break;
2668                 case getCode('ACCOUNT_LOCKED')   : $message = getMessage('MEMBER_ACCOUNT_LOCKED_UNC'); break;
2669                 case getCode('USER_404')         : $message = getMessage('USER_404'); break;
2670                 case getCode('STATS_404')        : $message = getMessage('MAIL_STATS_404'); break;
2671                 case getCode('ALREADY_CONFIRMED'): $message = getMessage('MAIL_ALREADY_CONFIRMED'); break;
2672                 case getCode('WRONG_PASS')       : $message = getMessage('LOGIN_WRONG_PASS'); break;
2673                 case getCode('WRONG_ID')         : $message = getMessage('LOGIN_WRONG_ID'); break;
2674                 case getCode('ID_LOCKED')        : $message = getMessage('LOGIN_ID_LOCKED'); break;
2675                 case getCode('ID_UNCONFIRMED')   : $message = getMessage('LOGIN_ID_UNCONFIRMED'); break;
2676                 case getCode('NO_COOKIES')       : $message = getMessage('LOGIN_NO_COOKIES'); break;
2677                 case getCode('COOKIES_DISABLED') : $message = getMessage('LOGIN_NO_COOKIES'); break;
2678                 case getCode('BEG_SAME_AS_OWN')  : $message = getMessage('BEG_SAME_UID_AS_OWN'); break;
2679                 case getCode('LOGIN_FAILED')     : $message = getMessage('LOGIN_FAILED_GENERAL'); break;
2680                 case getCode('MODULE_MEM_ONLY')  : $message = sprintf(getMessage('MODULE_MEM_ONLY'), getRequestElement('mod')); break;
2681                 case getCode('OVERLENGTH')       : $message = getMessage('MEMBER_TEXT_OVERLENGTH'); break;
2682                 case getCode('URL_FOUND')        : $message = getMessage('MEMBER_TEXT_CONTAINS_URL'); break;
2683                 case getCode('SUBJ_URL')         : $message = getMessage('MEMBER_SUBJ_CONTAINS_URL'); break;
2684                 case getCode('BLIST_URL')        : $message = "{--MEMBER_URL_BLACK_LISTED--}<br />\n{--MEMBER_BLIST_TIME--}: ".generateDateTime(getRequestElement('blist'), 0); break;
2685                 case getCode('NO_RECS_LEFT')     : $message = getMessage('MEMBER_SELECTED_MORE_RECS'); break;
2686                 case getCode('INVALID_TAGS')     : $message = getMessage('MEMBER_HTML_INVALID_TAGS'); break;
2687                 case getCode('MORE_POINTS')      : $message = getMessage('MEMBER_MORE_POINTS_NEEDED'); break;
2688                 case getCode('MORE_RECEIVERS1')  : $message = getMessage('MEMBER_ENTER_MORE_RECEIVERS'); break;
2689                 case getCode('MORE_RECEIVERS2')  : $message = getMessage('MEMBER_NO_MORE_RECEIVERS_FOUND'); break;
2690                 case getCode('MORE_RECEIVERS3')  : $message = sprintf(getMessage('MEMBER_ENTER_MORE_MIN_RECEIVERS'), getConfig('order_min')); break;
2691                 case getCode('INVALID_URL')      : $message = getMessage('MEMBER_ENTER_INVALID_URL'); break;
2692
2693                 case getCode('ERROR_MAILID'):
2694                         if (isExtensionActive('mailid', true)) {
2695                                 $message = getMessage('ERROR_CONFIRMING_MAIL');
2696                         } else {
2697                                 $message = sprintf(getMessage('EXTENSION_PROBLEM_NOT_INSTALLED'), 'mailid');
2698                         }
2699                         break;
2700
2701                 case getCode('EXTENSION_PROBLEM'):
2702                         if (isGetRequestElementSet('ext')) {
2703                                 $message = generateExtensionInactiveNotInstalledMessage(getRequestElement('ext'));
2704                         } else {
2705                                 $message = getMessage('EXTENSION_PROBLEM_UNSET_EXT');
2706                         }
2707                         break;
2708
2709                 case getCode('URL_TLOCK'):
2710                         $result = SQL_QUERY_ESC("SELECT `timestamp` FROM `{?_MYSQL_PREFIX?}_pool` WHERE `id`=%s LIMIT 1",
2711                                 array(bigintval(getRequestElement('id'))), __FILE__, __LINE__);
2712
2713                         // Load timestamp from last order
2714                         list($timestamp) = SQL_FETCHROW($result);
2715                         $timestamp = generateDateTime($timestamp, 1);
2716
2717                         // Free memory
2718                         SQL_FREERESULT($result);
2719
2720                         // Calculate hours...
2721                         $STD = round(getConfig('url_tlock') / 60 / 60);
2722
2723                         // Minutes...
2724                         $MIN = round((getConfig('url_tlock') - $STD * 60 * 60) / 60);
2725
2726                         // And seconds
2727                         $SEC = getConfig('url_tlock') - $STD * 60 * 60 - $MIN * 60;
2728
2729                         // Finally contruct the message
2730                         // @TODO Rewrite this old lost code to a template
2731                         $message = "{--MEMBER_URL_TIME_LOCK--}<br />{--CONFIG_URL_TLOCK--} ".$STD."
2732                         {--_HOURS--}, ".$MIN." {--_MINUTES--} {--_AND--} ".$SEC." {--_SECONDS--}<br />
2733                         {--MEMBER_LAST_TLOCK--}: ".$timestamp;
2734                         break;
2735
2736                 default:
2737                         // Missing/invalid code
2738                         $message = sprintf(getMessage('UNKNOWN_MAILID_CODE'), $code);
2739
2740                         // Log it
2741                         logDebugMessage(__FUNCTION__, __LINE__, $message);
2742                         break;
2743         } // END - switch
2744
2745         // Return the message
2746         return $message;
2747 }
2748
2749 // Compile characters which are allowed in URLs
2750 function compileUriCode ($code, $simple = true) {
2751         // Compile constants
2752         if ($simple === false) $code = str_replace('{--', '".', str_replace('--}', '."', $code));
2753
2754         // Compile QUOT and other non-HTML codes
2755         $code = str_replace('{DOT}', '.',
2756                 str_replace('{SLASH}', '/',
2757                 str_replace('{QUOT}', "'",
2758                 str_replace('{DOLLAR}', '$',
2759                 str_replace('{OPEN_ANCHOR}', '(',
2760                 str_replace('{CLOSE_ANCHOR}', ')',
2761                 str_replace('{OPEN_SQR}', '[',
2762                 str_replace('{CLOSE_SQR}', ']',
2763                 str_replace('{PER}', '%',
2764                 $code
2765         )))))))));
2766
2767         // Return compiled code
2768         return $code;
2769 }
2770
2771 // Function taken from user comments on www.php.net / function eregi()
2772 function isUrlValidSimple ($url) {
2773         // Prepare URL
2774         $url = secureString(str_replace("\\", '', compileRawCode(urldecode($url))));
2775
2776         // Allows http and https
2777         $http      = "(http|https)+(:\/\/)";
2778         // Test domain
2779         $domain1   = "([[:alnum:]]([-[:alnum:]])*\.)?([[:alnum:]][-[:alnum:]\.]*[[:alnum:]])(\.[[:alpha:]]{2,5})?";
2780         // Test double-domains (e.g. .de.vu)
2781         $domain2   = "([-[:alnum:]])?(\.[[:alnum:]][-[:alnum:]\.]*[[:alnum:]])(\.[[:alpha:]]{2,5})(\.[[:alpha:]]{2,5})?";
2782         // Test IP number
2783         $ip        = "([[:digit:]]{1,3})\.([[:digit:]]{1,3})\.([[:digit:]]{1,3})\.([[:digit:]]{1,3})";
2784         // ... directory
2785         $dir       = "((/)+([-_\.[:alnum:]])+)*";
2786         // ... page
2787         $page      = "/([-_[:alnum:]][-\._[:alnum:]]*\.[[:alnum:]]{2,5})?";
2788         // ... and the string after and including question character
2789         $getstring1 = "([\?/]([[:alnum:]][-\._%[:alnum:]]*(=)?([-\@\._:%[:alnum:]])+)(&([[:alnum:]]([-_%[:alnum:]])*(=)?([-\@\[\._:%[:alnum:]])+(\])*))*)?";
2790         // Pattern for URLs like http://url/dir/doc.html?var=value
2791         $pattern['d1dpg1']  = $http . $domain1 . $dir . $page . $getstring1;
2792         $pattern['d2dpg1']  = $http . $domain2 . $dir . $page . $getstring1;
2793         $pattern['ipdpg1']  = $http . $ip . $dir . $page . $getstring1;
2794         // Pattern for URLs like http://url/dir/?var=value
2795         $pattern['d1dg1']  = $http . $domain1 . $dir.'/' . $getstring1;
2796         $pattern['d2dg1']  = $http . $domain2 . $dir.'/' . $getstring1;
2797         $pattern['ipdg1']  = $http . $ip . $dir.'/' . $getstring1;
2798         // Pattern for URLs like http://url/dir/page.ext
2799         $pattern['d1dp']  = $http . $domain1 . $dir . $page;
2800         $pattern['d1dp']  = $http . $domain2 . $dir . $page;
2801         $pattern['ipdp']  = $http . $ip . $dir . $page;
2802         // Pattern for URLs like http://url/dir
2803         $pattern['d1d']  = $http . $domain1 . $dir;
2804         $pattern['d2d']  = $http . $domain2 . $dir;
2805         $pattern['ipd']  = $http . $ip . $dir;
2806         // Pattern for URLs like http://url/?var=value
2807         $pattern['d1g1']  = $http . $domain1 . '/' . $getstring1;
2808         $pattern['d2g1']  = $http . $domain2 . '/' . $getstring1;
2809         $pattern['ipg1']  = $http . $ip . '/' . $getstring1;
2810         // Pattern for URLs like http://url?var=value
2811         $pattern['d1g12']  = $http . $domain1 . $getstring1;
2812         $pattern['d2g12']  = $http . $domain2 . $getstring1;
2813         $pattern['ipg12']  = $http . $ip . $getstring1;
2814         // Test all patterns
2815         $reg = false;
2816         foreach ($pattern as $key => $pat) {
2817                 // Debug regex?
2818                 if (isDebugRegExpressionEnabled()) {
2819                         // @TODO Are these convertions still required?
2820                         $pat = str_replace('.', "&#92;&#46;", $pat);
2821                         $pat = str_replace('@', "&#92;&#64;", $pat);
2822                         //* DEBUG: */ outputHtml($key."=&nbsp;" . $pat . '<br />');
2823                 } // END - if
2824
2825                 // Check if expression matches
2826                 $reg = ($reg || preg_match(('^' . $pat.'^'), $url));
2827
2828                 // Does it match?
2829                 if ($reg === true) break;
2830         }
2831
2832         // Return true/false
2833         return $reg;
2834 }
2835
2836 // Wtites data to a config.php-style file
2837 // @TODO Rewrite this function to use readFromFile() and writeToFile()
2838 function changeDataInFile ($FQFN, $comment, $prefix, $suffix, $DATA, $seek=0) {
2839         // Initialize some variables
2840         $done = false;
2841         $seek++;
2842         $next  = -1;
2843         $found = false;
2844
2845         // Is the file there and read-/write-able?
2846         if ((isFileReadable($FQFN)) && (is_writeable($FQFN))) {
2847                 $search = 'CFG: ' . $comment;
2848                 $tmp = $FQFN . '.tmp';
2849
2850                 // Open the source file
2851                 $fp = fopen($FQFN, 'r') or outputHtml('<strong>READ:</strong> ' . $FQFN . '<br />');
2852
2853                 // Is the resource valid?
2854                 if (is_resource($fp)) {
2855                         // Open temporary file
2856                         $fp_tmp = fopen($tmp, 'w') or outputHtml('<strong>WRITE:</strong> ' . $tmp . '<br />');
2857
2858                         // Is the resource again valid?
2859                         if (is_resource($fp_tmp)) {
2860                                 // Mark temporary file as readable
2861                                 $GLOBALS['file_readable'][$tmp] = true;
2862
2863                                 // Start reading
2864                                 while (!feof($fp)) {
2865                                         // Read from source file
2866                                         $line = fgets ($fp, 1024);
2867
2868                                         if (strpos($line, $search) > -1) { $next = '0'; $found = true; }
2869
2870                                         if ($next > -1) {
2871                                                 if ($next === $seek) {
2872                                                         $next = -1;
2873                                                         $line = $prefix . $DATA . $suffix . "\n";
2874                                                 } else {
2875                                                         $next++;
2876                                                 }
2877                                         } // END - if
2878
2879                                         // Write to temp file
2880                                         fputs($fp_tmp, $line);
2881                                 } // END - while
2882
2883                                 // Close temp file
2884                                 fclose($fp_tmp);
2885
2886                                 // Finished writing tmp file
2887                                 $done = true;
2888                         } // END - if
2889
2890                         // Close source file
2891                         fclose($fp);
2892
2893                         if (($done === true) && ($found === true)) {
2894                                 // Copy back tmp file and delete tmp :-)
2895                                 copyFileVerified($tmp, $FQFN, 0644);
2896                                 return removeFile($tmp);
2897                         } elseif ($found === false) {
2898                                 outputHtml('<strong>CHANGE:</strong> 404!');
2899                         } else {
2900                                 outputHtml('<strong>TMP:</strong> UNDONE!');
2901                         }
2902                 }
2903         } else {
2904                 // File not found, not readable or writeable
2905                 outputHtml('<strong>404:</strong> ' . $FQFN . '<br />');
2906         }
2907
2908         // An error was detected!
2909         return false;
2910 }
2911 // Send notification to admin
2912 function sendAdminNotification ($subject, $templateName, $content=array(), $userid = '0') {
2913         if (isExtensionInstalledAndNewer('admins', '0.4.1')) {
2914                 // Send new way
2915                 sendAdminsEmails($subject, $templateName, $content, $userid);
2916         } else {
2917                 // Send out out-dated way
2918                 $message = loadEmailTemplate($templateName, $content, $userid);
2919                 sendAdminEmails($subject, $message);
2920         }
2921 }
2922
2923 // Debug message logger
2924 function logDebugMessage ($funcFile, $line, $message, $force=true) {
2925         // Is debug mode enabled?
2926         if ((isDebugModeEnabled()) || ($force === true)) {
2927                 // Remove CRLF
2928                 $message = str_replace("\r", '', str_replace("\n", '', $message));
2929
2930                 // Log this message away, we better don't call app_die() here to prevent an endless loop
2931                 $fp = fopen(getConfig('CACHE_PATH') . 'debug.log', 'a') or die(__FUNCTION__.'['.__LINE__.']: Cannot write logfile debug.log!');
2932                 fwrite($fp, date('d.m.Y|H:i:s', time()) . '|' . getModule(false) . '|' . basename($funcFile) . '|' . $line . '|' . $message . "\n");
2933                 fclose($fp);
2934         } // END - if
2935 }
2936
2937 // Handle extra values
2938 function handleExtraValues ($filterFunction, $value, $extraValue) {
2939         // Default is the value itself
2940         $ret = $value;
2941
2942         // Do we have a special filter function?
2943         if (!empty($filterFunction)) {
2944                 // Does the filter function exist?
2945                 if (function_exists($filterFunction)) {
2946                         // Do we have extra parameters here?
2947                         if (!empty($extraValue)) {
2948                                 // Put both parameters in one new array by default
2949                                 $args = array($value, $extraValue);
2950
2951                                 // If we have an array simply use it and pre-extend it with our value
2952                                 if (is_array($extraValue)) {
2953                                         // Make the new args array
2954                                         $args = merge_array(array($value), $extraValue);
2955                                 } // END - if
2956
2957                                 // Call the multi-parameter call-back
2958                                 $ret = call_user_func_array($filterFunction, $args);
2959                         } else {
2960                                 // One parameter call
2961                                 $ret = call_user_func($filterFunction, $value);
2962                         }
2963                 } // END - if
2964         } // END - if
2965
2966         // Return the value
2967         return $ret;
2968 }
2969
2970 // Converts timestamp selections into a timestamp
2971 function convertSelectionsToTimestamp (&$postData, &$DATA, &$id, &$skip) {
2972         // Init test variable
2973         $skip  = false;
2974         $test2 = '';
2975
2976         // Get last three chars
2977         $test = substr($id, -3);
2978
2979         // Improved way of checking! :-)
2980         if (in_array($test, array('_ye', '_mo', '_we', '_da', '_ho', '_mi', '_se'))) {
2981                 // Found a multi-selection for timings?
2982                 $test = substr($id, 0, -3);
2983                 if ((isset($postData[$test.'_ye'])) && (isset($postData[$test.'_mo'])) && (isset($postData[$test.'_we'])) && (isset($postData[$test.'_da'])) && (isset($postData[$test.'_ho'])) && (isset($postData[$test.'_mi'])) && (isset($postData[$test.'_se'])) && ($test != $test2)) {
2984                         // Generate timestamp
2985                         $postData[$test] = createTimestampFromSelections($test, $postData);
2986                         $DATA[] = sprintf("`%s`='%s'", $test, $postData[$test]);
2987                         $GLOBALS['skip_config'][$test] = true;
2988
2989                         // Remove data from array
2990                         foreach (array('ye', 'mo', 'we', 'da', 'ho', 'mi', 'se') as $rem) {
2991                                 unset($postData[$test . '_' . $rem]);
2992                         } // END - foreach
2993
2994                         // Skip adding
2995                         unset($id);
2996                         $skip = true;
2997                         $test2 = $test;
2998                 } // END - if
2999         } // END - if
3000 }
3001
3002 // Reverts the german decimal comma into Computer decimal dot
3003 function convertCommaToDot ($str) {
3004         // Default float is not a float... ;-)
3005         $float = false;
3006
3007         // Which language is selected?
3008         switch (getLanguage()) {
3009                 case 'de': // German language
3010                         // Remove german thousand dots first
3011                         $str = str_replace('.', '', $str);
3012
3013                         // Replace german commata with decimal dot and cast it
3014                         $float = (float)str_replace(',', '.', $str);
3015                         break;
3016
3017                 default: // US and so on
3018                         // Remove thousand dots first and cast
3019                         $float = (float)str_replace(',', '', $str);
3020                         break;
3021         }
3022
3023         // Return float
3024         return $float;
3025 }
3026
3027 // Handle menu-depending failed logins and return the rendered content
3028 function handleLoginFailtures ($accessLevel) {
3029         // Default output is empty ;-)
3030         $OUT = '';
3031
3032         // Is the session data set?
3033         if ((isSessionVariableSet('mxchange_' . $accessLevel.'_failures')) && (isSessionVariableSet('mxchange_' . $accessLevel.'_last_fail'))) {
3034                 // Ignore zero values
3035                 if (getSession('mxchange_' . $accessLevel.'_failures') > 0) {
3036                         // Non-guest has login failures found, get both data and prepare it for template
3037                         //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):accessLevel={$accessLevel}<br />");
3038                         $content = array(
3039                                 'login_failures' => getSession('mxchange_' . $accessLevel.'_failures'),
3040                                 'last_failure'   => generateDateTime(getSession('mxchange_' . $accessLevel.'_last_fail'), 2)
3041                         );
3042
3043                         // Load template
3044                         $OUT = loadTemplate('login_failures', true, $content);
3045                 } // END - if
3046
3047                 // Reset session data
3048                 setSession('mxchange_' . $accessLevel.'_failures', '');
3049                 setSession('mxchange_' . $accessLevel.'_last_fail', '');
3050         } // END - if
3051
3052         // Return rendered content
3053         return $OUT;
3054 }
3055
3056 // Rebuild cache
3057 function rebuildCacheFile ($cache, $inc = '', $force = false) {
3058         // Debug message
3059         /* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, sprintf("cache=%s, inc=%s, force=%s", $cache, $inc, intval($force)));
3060
3061         // Shall I remove the cache file?
3062         if (isCacheInstanceValid()) {
3063                 // Rebuild cache
3064                 if ($GLOBALS['cache_instance']->loadCacheFile($cache)) {
3065                         // Destroy it
3066                         $GLOBALS['cache_instance']->removeCacheFile($force);
3067                 } // END - if
3068
3069                 // Include file given?
3070                 if (!empty($inc)) {
3071                         // Construct FQFN
3072                         $inc = sprintf("inc/loader/load_cache-%s.php", $inc);
3073
3074                         // Is the include there?
3075                         if (isIncludeReadable($inc)) {
3076                                 // And rebuild it from scratch
3077                                 //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>): inc={$inc} - LOADED!<br />");
3078                                 loadInclude($inc);
3079                         } else {
3080                                 // Include not found!
3081                                 logDebugMessage(__FUNCTION__, __LINE__, "Include {$inc} not found. cache={$cache}");
3082                         }
3083                 } // END - if
3084         } // END - if
3085 }
3086
3087 // Determines the real remote address
3088 function determineRealRemoteAddress () {
3089         // Is a proxy in use?
3090         if (isset($_SERVER['HTTP_X_FORWARDED_FOR'])) {
3091                 // Proxy was used
3092                 $address = $_SERVER['HTTP_X_FORWARDED_FOR'];
3093         } elseif (isset($_SERVER['HTTP_CLIENT_IP'])) {
3094                 // Yet, another proxy
3095                 $address = $_SERVER['HTTP_CLIENT_IP'];
3096         } else {
3097                 // The regular address when no proxy was used
3098                 $address = $_SERVER['REMOTE_ADDR'];
3099         }
3100
3101         // This strips out the real address from proxy output
3102         if (strstr($address, ',')) {
3103                 $addressArray = explode(',', $address);
3104                 $address = $addressArray[0];
3105         } // END - if
3106
3107         // Return the result
3108         return $address;
3109 }
3110
3111 // Adds a bonus mail to the queue
3112 // This is a high-level function!
3113 function addNewBonusMail ($data, $mode = '', $output=true) {
3114         // Use mode from data if not set and availble ;-)
3115         if ((empty($mode)) && (isset($data['mode']))) $mode = $data['mode'];
3116
3117         // Generate receiver list
3118         $RECEIVER = generateReceiverList($data['cat'], $data['receiver'], $mode);
3119
3120         // Receivers added?
3121         if (!empty($RECEIVER)) {
3122                 // Add bonus mail to queue
3123                 addBonusMailToQueue(
3124                 $data['subject'],
3125                 $data['text'],
3126                 $RECEIVER,
3127                 $data['points'],
3128                 $data['seconds'],
3129                 $data['url'],
3130                 $data['cat'],
3131                 $mode,
3132                 $data['receiver']
3133                 );
3134
3135                 // Mail inserted into bonus pool
3136                 if ($output) loadTemplate('admin_settings_saved', false, getMessage('ADMIN_BONUS_SEND'));
3137         } elseif ($output) {
3138                 // More entered than can be reached!
3139                 loadTemplate('admin_settings_saved', false, getMessage('ADMIN_MORE_SELECTED'));
3140         } else {
3141                 // Debug log
3142                 logDebugMessage(__FUNCTION__, __LINE__, "cat={$data['cat']},receiver={$data['receiver']},data=".base64_encode(serialize($data))." More selected, than available!");
3143         }
3144 }
3145
3146 // Determines referal id and sets it
3147 function determineReferalId () {
3148         // Skip this in non-html-mode and outside ref.php
3149         if ((getOutputMode() != 0) && (basename($_SERVER['PHP_SELF']) != 'ref.php')) return false;
3150
3151         // Check if refid is set
3152         if ((isset($GLOBALS['refid'])) && ($GLOBALS['refid'] > 0)) {
3153                 // This is fine...
3154         } elseif ((isGetRequestElementSet('user')) && (basename($_SERVER['PHP_SELF']) == 'click.php')) {
3155                 // The variable user comes from the click-counter script click.php and we only accept this here
3156                 $GLOBALS['refid'] = bigintval(getRequestElement('user'));
3157         } elseif (isPostRequestElementSet('refid')) {
3158                 // Get referal id from variable refid (so I hope this makes my script more compatible to other scripts)
3159                 $GLOBALS['refid'] = secureString(postRequestElement('refid'));
3160         } elseif (isGetRequestElementSet('refid')) {
3161                 // Get referal id from variable refid (so I hope this makes my script more compatible to other scripts)
3162                 $GLOBALS['refid'] = secureString(getRequestElement('refid'));
3163         } elseif (isGetRequestElementSet('ref')) {
3164                 // Set refid=ref (the referal link uses such variable)
3165                 $GLOBALS['refid'] = secureString(getRequestElement('ref'));
3166         } elseif ((isSessionVariableSet('refid')) && (getSession('refid') != 0)) {
3167                 // Set session refid als global
3168                 $GLOBALS['refid'] = bigintval(getSession('refid'));
3169         } elseif ((isExtensionInstalledAndNewer('user', '0.3.4')) && (getConfig('select_user_zero_refid')) == 'Y') {
3170                 // Select a random user which has confirmed enougth mails
3171                 $GLOBALS['refid'] = determineRandomReferalId();
3172         } elseif ((isExtensionInstalled('sql_patches')) && (getConfig('def_refid') > 0)) {
3173                 // Set default refid as refid in URL
3174                 $GLOBALS['refid'] = getConfig('def_refid');
3175         } else {
3176                 // No default id when sql_patches is not installed or none set
3177                 $GLOBALS['refid'] = '0';
3178         }
3179
3180         // Set cookie when default refid > 0
3181         if (!isSessionVariableSet('refid') || (!empty($GLOBALS['refid'])) || ((getSession('refid') == '0') && (isConfigEntrySet('def_refid')) && (getConfig('def_refid') > 0))) {
3182                 // Default is not found
3183                 $found = false;
3184
3185                 // Do we have nickname or userid set?
3186                 if (isNicknameUsed($GLOBALS['refid'])) {
3187                         // Nickname in URL, so load the id
3188                         $found = fetchUserData($GLOBALS['refid'], 'nickname');
3189                 } elseif ($GLOBALS['refid'] > 0) {
3190                         // Direct userid entered
3191                         $found = fetchUserData($GLOBALS['refid']);
3192                 }
3193
3194                 // Is the record valid?
3195                 if (($found === false) || (!isUserDataValid())) {
3196                         // No, then reset referal id
3197                         $GLOBALS['refid'] = getConfig('def_refid');
3198                 } // END - if
3199
3200                 // Set cookie
3201                 setSession('refid', $GLOBALS['refid']);
3202         } // END - if
3203
3204         // Return determined refid
3205         return $GLOBALS['refid'];
3206 }
3207
3208 // Enables the reset mode and runs it
3209 function doReset () {
3210         // Enable the reset mode
3211         $GLOBALS['reset_enabled'] = true;
3212
3213         // Run filters
3214         runFilterChain('reset');
3215 }
3216
3217 // Our shutdown-function
3218 function shutdown () {
3219         // Call the filter chain 'shutdown'
3220         runFilterChain('shutdown', null);
3221
3222         if (SQL_IS_LINK_UP()) {
3223                 // Close link
3224                 SQL_CLOSE(__FILE__, __LINE__);
3225         } elseif (!isInstallationPhase()) {
3226                 // No database link
3227                 addFatalMessage(__FILE__, __LINE__, getMessage('NO_DB_LINK_SHUTDOWN'));
3228         }
3229
3230         // Stop executing here
3231         exit;
3232 }
3233
3234 // Init member id
3235 function initMemberId () {
3236         $GLOBALS['member_id'] = '0';
3237 }
3238
3239 // Setter for member id
3240 function setMemberId ($memberid) {
3241         // We should not set member id to zero
3242         if ($memberid == '0') debug_report_bug('Userid should not be set zero.');
3243
3244         // Set it secured
3245         $GLOBALS['member_id'] = bigintval($memberid);
3246 }
3247
3248 // Getter for member id or returns zero
3249 function getMemberId () {
3250         // Default member id
3251         $memberid = '0';
3252
3253         // Is the member id set?
3254         if (isMemberIdSet()) {
3255                 // Then use it
3256                 $memberid = $GLOBALS['member_id'];
3257         } // END - if
3258
3259         // Return it
3260         return $memberid;
3261 }
3262
3263 // Checks ether the member id is set
3264 function isMemberIdSet () {
3265         return (isset($GLOBALS['member_id']));
3266 }
3267
3268 // Handle message codes from URL
3269 function handleCodeMessage () {
3270         if (isGetRequestElementSet('code')) {
3271                 // Default extension is 'unknown'
3272                 $ext = 'unknown';
3273
3274                 // Is extension given?
3275                 if (isGetRequestElementSet('ext')) $ext = getRequestElement('ext');
3276
3277                 // Convert the 'code' parameter from URL to a human-readable message
3278                 $message = getMessageFromErrorCode(getRequestElement('code'));
3279
3280                 // Load message template
3281                 loadTemplate('message', false, $message);
3282         } // END - if
3283 }
3284
3285 // Setter for extra title
3286 function setExtraTitle ($extraTitle) {
3287         $GLOBALS['extra_title'] = $extraTitle;
3288 }
3289
3290 // Getter for extra title
3291 function getExtraTitle () {
3292         // Is the extra title set?
3293         if (!isExtraTitleSet()) {
3294                 // No, then abort here
3295                 debug_report_bug('extra_title is not set!');
3296         } // END - if
3297
3298         // Return it
3299         return $GLOBALS['extra_title'];
3300 }
3301
3302 // Checks if the extra title is set
3303 function isExtraTitleSet () {
3304         return ((isset($GLOBALS['extra_title'])) && (!empty($GLOBALS['extra_title'])));
3305 }
3306
3307 // Generates a 'extension foo inactive' message
3308 function generateExtensionInactiveMessage ($ext_name) {
3309         // Is the extension empty?
3310         if (empty($ext_name)) {
3311                 // This should not happen
3312                 debug_report_bug(__FUNCTION__ . ': Parameter ext is empty. This should not happen.');
3313         } // END - if
3314
3315         // Default message
3316         $message = sprintf(getMessage('EXTENSION_PROBLEM_EXT_INACTIVE'), $ext_name);
3317
3318         // Is an admin logged in?
3319         if (isAdmin()) {
3320                 // Then output admin message
3321                 $message = sprintf(getMessage('ADMIN_EXTENSION_PROBLEM_EXT_INACTIVE'), $ext_name);
3322         } // END - if
3323
3324         // Return prepared message
3325         return $message;
3326 }
3327
3328 // Generates a 'extension foo not installed' message
3329 function generateExtensionNotInstalledMessage ($ext_name) {
3330         // Is the extension empty?
3331         if (empty($ext_name)) {
3332                 // This should not happen
3333                 debug_report_bug(__FUNCTION__ . ': Parameter ext is empty. This should not happen.');
3334         } // END - if
3335
3336         // Default message
3337         $message = sprintf(getMessage('EXTENSION_PROBLEM_EXT_NOT_INSTALLED'), $ext_name);
3338
3339         // Is an admin logged in?
3340         if (isAdmin()) {
3341                 // Then output admin message
3342                 $message = sprintf(getMessage('ADMIN_EXTENSION_PROBLEM_EXT_NOT_INSTALLED'), $ext_name);
3343         } // END - if
3344
3345         // Return prepared message
3346         return $message;
3347 }
3348
3349 // Generates a message depending on if the extension is not installed or not
3350 // just activated
3351 function generateExtensionInactiveNotInstalledMessage ($ext_name) {
3352         // Init message
3353         $message = '';
3354
3355         // Is the extension not installed or just deactivated?
3356         switch (isExtensionInstalled($ext_name)) {
3357                 case true; // Deactivated!
3358                         $message = generateExtensionInactiveMessage($ext_name);
3359                         break;
3360
3361                 case false; // Not installed!
3362                         $message = generateExtensionNotInstalledMessage($ext_name);
3363                         break;
3364
3365                 default: // Should not happen!
3366                         logDebugMessage(__FUNCTION__, __LINE__, sprintf("Invalid state of extension %s detected.", $ext_name));
3367                         $message = sprintf("Invalid state of extension %s detected.", $ext_name);
3368                         break;
3369         } // END - switch
3370
3371         // Return the message
3372         return $message;
3373 }
3374
3375 // Reads a directory recursively by default and searches for files not matching
3376 // an exclusion pattern. You can now keep the exclusion pattern empty for reading
3377 // a whole directory.
3378 function getArrayFromDirectory ($baseDir, $prefix, $fileIncludeDirs = false, $addBaseDir = true, $excludeArray = array(), $extension = '.php', $excludePattern = '@(\.|\.\.)$@', $recursive = true) {
3379         // Add default entries we should exclude
3380         $excludeArray[] = '.';
3381         $excludeArray[] = '..';
3382         $excludeArray[] = '.svn';
3383         $excludeArray[] = '.htaccess';
3384
3385         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "baseDir={$baseDir},prefix={$prefix} - Entered!");
3386         // Init includes
3387         $files = array();
3388
3389         // Open directory
3390         $dirPointer = opendir(getConfig('PATH') . $baseDir) or app_die(__FUNCTION__, __LINE__, 'Cannot read directory ' . basename($baseDir) . '.');
3391
3392         // Read all entries
3393         while ($baseFile = readdir($dirPointer)) {
3394                 // Exclude '.', '..' and entries in $excludeArray automatically
3395                 if (in_array($baseFile, $excludeArray, true))  {
3396                         // Exclude them
3397                         //* DEBUG: */ outputHtml('excluded=' . $baseFile . '<br />');
3398                         continue;
3399                 } // END - if
3400
3401                 // Construct include filename and FQFN
3402                 $fileName = $baseDir . $baseFile;
3403                 $FQFN = getConfig('PATH') . $fileName;
3404
3405                 // Remove double slashes
3406                 $FQFN = str_replace('//', '/', $FQFN);
3407
3408                 // Check if the base filename matches an exclusion pattern and if the pattern is not empty
3409                 if ((!empty($excludePattern)) && (preg_match($excludePattern, $baseFile, $match))) {
3410                         // These Lines are only for debugging!!
3411                         //* DEBUG: */ outputHtml('baseDir:' . $baseDir . '<br />');
3412                         //* DEBUG: */ outputHtml('baseFile:' . $baseFile . '<br />');
3413                         //* DEBUG: */ outputHtml('FQFN:' . $FQFN . '<br />');
3414
3415                         // Exclude this one
3416                         continue;
3417                 } // END - if
3418
3419                 // Skip also files with non-matching prefix genericly
3420                 if (($recursive === true) && (isDirectory($FQFN))) {
3421                         // Is a redirectory so read it as well
3422                         $files = merge_array($files, getArrayFromDirectory($baseDir . $baseFile . '/', $prefix, $fileIncludeDirs, $addBaseDir, $excludeArray, $extension, $excludePattern, $recursive));
3423
3424                         // And skip further processing
3425                         continue;
3426                 } elseif (substr($baseFile, 0, strlen($prefix)) != $prefix) {
3427                         // Skip this file
3428                         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "Invalid prefix in file " . $baseFile . ", prefix=" . $prefix);
3429                         continue;
3430                 } elseif (!isFileReadable($FQFN)) {
3431                         // Not readable so skip it
3432                         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "File " . $FQFN . " is not readable!");
3433                         continue;
3434                 }
3435
3436                 // Is the file a PHP script or other?
3437                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "baseDir={$baseDir},prefix={$prefix},baseFile={$baseFile}");
3438                 if ((substr($baseFile, -4, 4) == '.php') || (($fileIncludeDirs === true) && (isDirectory($FQFN)))) {
3439                         // Is this a valid include file?
3440                         if ($extension == '.php') {
3441                                 // Remove both for extension name
3442                                 $extName = substr($baseFile, strlen($prefix), -4);
3443
3444                                 // Is the extension valid and active?
3445                                 if (isExtensionNameValid($extName)) {
3446                                         // Then add this file
3447                                         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Extension entry ' . $baseFile . ' added.');
3448                                         $files[] = $fileName;
3449                                 } else {
3450                                         // Add non-extension files as well
3451                                         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Regular entry ' . $baseFile . ' added.');
3452                                         if ($addBaseDir === true) {
3453                                                 $files[] = $fileName;
3454                                         } else {
3455                                                 $files[] = $baseFile;
3456                                         }
3457                                 }
3458                         } else {
3459                                 // We found .php file but should not search for them, why?
3460                                 debug_report_bug('We should find files with extension=' . $extension . ', but we found a PHP script.');
3461                         }
3462                 } elseif (substr($baseFile, -4, 4) == $extension) {
3463                         // Other, generic file found
3464                         $files[] = $fileName;
3465                 }
3466         } // END - while
3467
3468         // Close directory
3469         closedir($dirPointer);
3470
3471         // Sort array
3472         asort($files);
3473
3474         // Return array with include files
3475         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, '- Left!');
3476         return $files;
3477 }
3478
3479 // Maps a module name into a database table name
3480 function mapModuleToTable ($moduleName) {
3481         // Map only these, still lame code...
3482         switch ($moduleName) {
3483                 // 'index' is the guest's menu
3484                 case 'index': $moduleName = 'guest';  break;
3485                 // ... and 'login' the member's menu
3486                 case 'login': $moduleName = 'member'; break;
3487                 // Anything else will not be mapped, silently.
3488         } // END - switch
3489
3490         // Return result
3491         return $moduleName;
3492 }
3493
3494 // Add SQL debug data to array for later output
3495 function addSqlToDebug ($result, $sqlString, $timing, $F, $L) {
3496         // Already executed?
3497         if (isset($GLOBALS['debug_sqls'][$F][$L][$sqlString])) {
3498                 // Then abort here, we don't need to profile a query twice
3499                 return;
3500         } // END - if
3501
3502         // Remeber this as profiled (or not, but we don't care here)
3503         $GLOBALS['debug_sqls'][$F][$L][$sqlString] = true;
3504
3505         // Do we have cache?
3506         if (!isset($GLOBALS['debug_sql_available'])) {
3507                 // Check it and cache it in $GLOBALS
3508                 $GLOBALS['debug_sql_available'] = ((isConfigurationLoaded()) && (isExtensionInstalledAndNewer('other', '0.2.2')) && (getConfig('display_debug_sqls') == 'Y'));
3509         } // END - if
3510         
3511         // Don't execute anything here if we don't need or ext-other is missing
3512         if ($GLOBALS['debug_sql_available'] === false) {
3513                 return;
3514         } // END - if
3515
3516         // Generate record
3517         $record = array(
3518                 'num_rows' => SQL_NUMROWS($result),
3519                 'affected' => SQL_AFFECTEDROWS(),
3520                 'sql_str'  => $sqlString,
3521                 'timing'   => $timing,
3522                 'file'     => basename($F),
3523                 'line'     => $L
3524         );
3525
3526         // Add it
3527         $GLOBALS['debug_sqls'][] = $record;
3528 }
3529
3530 // Initializes the cache instance
3531 function initCacheInstance () {
3532         // Load include for CacheSystem class
3533         loadIncludeOnce('inc/classes/cachesystem.class.php');
3534
3535         // Initialize cache system only when it's needed
3536         $GLOBALS['cache_instance'] = new CacheSystem();
3537         if ($GLOBALS['cache_instance']->getStatus() != 'done') {
3538                 // Failed to initialize cache sustem
3539                 addFatalMessage(__FILE__, __LINE__, '(<font color="#0000aa">' . __LINE__ . '</font>): ' . getMessage('CACHE_CANNOT_INITIALIZE'));
3540         } // END - if
3541 }
3542
3543 // Getter for message from array or raw message
3544 function getMessageFromIndexedArray ($message, $pos, $array) {
3545         // Check if the requested message was found in array
3546         if (isset($array[$pos])) {
3547                 // ... if yes then use it!
3548                 $ret = $array[$pos];
3549         } else {
3550                 // ... else use default message
3551                 $ret = $message;
3552         }
3553
3554         // Return result
3555         return $ret;
3556 }
3557
3558 // Print code with line numbers
3559 function linenumberCode ($code)    {
3560         if (!is_array($code)) $codeE = explode("\n", $code); else $codeE = $code;
3561         $count_lines = count($codeE);
3562
3563         $r = 'Line | Code:<br />';
3564         foreach($codeE as $line => $c) {
3565                 $r .= '<div class="line"><span class="linenum">';
3566                 if ($count_lines == 1) {
3567                         $r .= 1;
3568                 } else {
3569                         $r .= ($line == ($count_lines - 1)) ? '' :  ($line+1);
3570                 }
3571                 $r .= '</span>|';
3572
3573                 // Add code
3574                 $r .= '<span class="linetext">' . htmlentities($c) . '</span></div>';
3575         }
3576
3577         return '<div class="code">' . $r . '</div>';
3578 }
3579
3580 // Convert ';' to ', ' for e.g. receiver list
3581 function convertReceivers ($old) {
3582         return str_replace(';', ', ', $old);
3583 }
3584
3585 // Determines the right page title
3586 function determinePageTitle () {
3587         // Config and database connection valid?
3588         if ((isConfigLocalLoaded()) && (isConfigurationLoaded()) && (SQL_IS_LINK_UP()) && (isExtensionInstalledAndNewer('sql_patches', '0.1.6'))) {
3589                 // Init title
3590                 $TITLE = '';
3591
3592                 // Title decoration enabled?
3593                 if ((getConfig('enable_title_deco') == 'Y') && (getConfig('title_left') != '')) $TITLE .= trim(getConfig('title_left'))." ";
3594
3595                 // Do we have some extra title?
3596                 if (isExtraTitleSet()) {
3597                         // Then prepent it
3598                         $TITLE .= getExtraTitle() . ' by ';
3599                 } // END - if
3600
3601                 // Add main title
3602                 $TITLE .= getConfig('MAIN_TITLE');
3603
3604                 // Add title of module? (middle decoration will also be added!)
3605                 if ((getConfig('enable_mod_title') == 'Y') || ((!isWhatSet()) && (!isActionSet())) || (getModule() == 'admin')) {
3606                         $TITLE .= ' ' . trim(getConfig('title_middle')) . ' ' . getModuleTitle(getModule());
3607                 } // END - if
3608
3609                 // Add title from what file
3610                 $mode = '';
3611                 if (getModule() == 'login') $mode = 'member';
3612                 elseif (getModule() == 'index') $mode = 'guest';
3613                 if ((!empty($mode)) && (getConfig('enable_what_title') == 'Y')) $TITLE .= " ".trim(getConfig('title_middle'))." ".getModuleDescription($mode, getWhat());
3614
3615                 // Add title decorations? (right)
3616                 if ((getConfig('enable_title_deco') == 'Y') && (getConfig('title_right') != '')) $TITLE .= " ".trim(getConfig('title_right'));
3617
3618                 // Remember title in constant for the template
3619                 $pageTitle = $TITLE;
3620         } elseif ((isInstalled()) && (isAdminRegistered())) {
3621                 // Installed, admin registered but no ext-sql_patches
3622                 $pageTitle = '[-- ' . getConfig('MAIN_TITLE').' - '.getModuleTitle(getModule()) . ' --]';
3623         } elseif ((isInstalled()) && (!isAdminRegistered())) {
3624                 // Installed but no admin registered
3625                 $pageTitle = sprintf(getMessage('SETUP_OF_MXCHANGE'), getConfig('MAIN_TITLE'));
3626         } elseif ((!isInstalled()) || (!isAdminRegistered())) {
3627                 // Installation mode
3628                 $pageTitle = getMessage('INSTALLATION_OF_MXCHANGE');
3629         } else {
3630                 // Configuration not found!
3631                 $pageTitle = getMessage('NO_CONFIG_FOUND_TITLE');
3632
3633                 // Do not add the fatal message in installation mode
3634                 if ((!isInstalling()) && (!isConfigurationLoaded())) addFatalMessage(__FILE__, __LINE__, getMessage('NO_CONFIG_FOUND'));
3635         }
3636
3637         // Return title
3638         return $pageTitle;
3639 }
3640
3641 // Checks wethere there is a cache file there. This function is cached.
3642 function isTemplateCached ($template) {
3643         // Do we have cached this result?
3644         if (!isset($GLOBALS['template_cache'][$template])) {
3645                 // Generate FQFN
3646                 $FQFN = sprintf("%s_compiled/templates/%s.tpl.cache", getConfig('CACHE_PATH'), $template);
3647
3648                 // Is it there?
3649                 $GLOBALS['template_cache'][$template] = isFileReadable($FQFN);
3650         } // END - if
3651
3652         // Return it
3653         return $GLOBALS['template_cache'][$template];
3654 }
3655
3656 // Flushes non-flushed template cache to disk
3657 function flushTemplateCache ($template, $eval) {
3658         // Is this cache flushed?
3659         if ((!isTemplateCached($template)) && ($eval != '404')) {
3660                 // Generate FQFN
3661                 $FQFN = sprintf("%s_compiled/templates/%s.tpl.cache", getConfig('CACHE_PATH'), $template);
3662
3663                 // Replace username with a call
3664                 $eval = str_replace('$username', '".getUsername()."', $eval);
3665
3666                 // And flush it
3667                 writeToFile($FQFN, $eval, true);
3668         } // END - if
3669 }
3670
3671 // Reads a template cache
3672 function readTemplateCache ($template) {
3673         // Check it again
3674         if (isTemplateCached($template)) {
3675                 // Generate FQFN
3676                 $FQFN = sprintf("%s_compiled/templates/%s.tpl.cache", getConfig('CACHE_PATH'), $template);
3677
3678                 // And read from it
3679                 $GLOBALS['template_eval'][$template] = readFromFile($FQFN);
3680         } // END - if
3681
3682         // And return it
3683         return $GLOBALS['template_eval'][$template];
3684 }
3685
3686 //////////////////////////////////////////////////
3687 // AUTOMATICALLY RE-GENERATED MISSING FUNCTIONS //
3688 //////////////////////////////////////////////////
3689 //
3690 if (!function_exists('html_entity_decode')) {
3691         // Taken from documentation on www.php.net
3692         function html_entity_decode ($string) {
3693                 $trans_tbl = get_html_translation_table(HTML_ENTITIES);
3694                 $trans_tbl = array_flip($trans_tbl);
3695                 return strtr($string, $trans_tbl);
3696         }
3697 } // END - if
3698
3699 if (!function_exists('http_build_query')) {
3700         // Taken from documentation on www.php.net, credits to Marco K. (Germany)
3701         function http_build_query($data, $prefix='', $sep='', $key='') {
3702                 $ret = array();
3703                 foreach ((array)$data as $k => $v) {
3704                         if (is_int($k) && $prefix != null) {
3705                                 $k = urlencode($prefix . $k);
3706                         } // END - if
3707
3708                         if ((!empty($key)) || ($key === 0))  $k = $key.'['.urlencode($k).']';
3709
3710                         if (is_array($v) || is_object($v)) {
3711                                 array_push($ret, http_build_query($v, '', $sep, $k));
3712                         } else {
3713                                 array_push($ret, $k.'='.urlencode($v));
3714                         }
3715                 } // END - foreach
3716
3717                 if (empty($sep)) $sep = ini_get('arg_separator.output');
3718
3719                 return implode($sep, $ret);
3720         }
3721 }// // END - if
3722
3723 // [EOF]
3724 ?>