]> git.mxchange.org Git - mailer.git/blob - inc/functions.php
66324337f68d134e09d79940aba79f6620e04568
[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  *                                                                      *
14  * -------------------------------------------------------------------- *
15  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
16  * For more information visit: http://www.mxchange.org                  *
17  *                                                                      *
18  * This program is free software; you can redistribute it and/or modify *
19  * it under the terms of the GNU General Public License as published by *
20  * the Free Software Foundation; either version 2 of the License, or    *
21  * (at your option) any later version.                                  *
22  *                                                                      *
23  * This program is distributed in the hope that it will be useful,      *
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
26  * GNU General Public License for more details.                         *
27  *                                                                      *
28  * You should have received a copy of the GNU General Public License    *
29  * along with this program; if not, write to the Free Software          *
30  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
31  * MA  02110-1301  USA                                                  *
32  ************************************************************************/
33
34 // Some security stuff...
35 if (!defined('__SECURITY')) {
36         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4)."/security.php";
37         require($INC);
38 }
39
40 // Check if our config file is writeable or not
41 function is_INCWritable($inc) {
42         // Generate FQFN
43         $fqfn = sprintf("%sinc/%s.php", PATH, $inc);
44
45         // Abort by simple test
46         if ((FILE_READABLE($fqfn)) && (!is_writeable($fqfn))) {
47                 return false;
48         } // END - if
49
50         // Test if we can append data
51         $fp = @fopen($fqfn, 'a');
52         if ($inc == "dummy") {
53                 // Remove dummy file
54                 @fclose($fp);
55                 return @unlink($fqfn);
56         } else {
57                 // Close all other files
58                 return @fclose($fp);
59         }
60 }
61
62 // Open a table (you may want to add some header stuff here)
63 function OPEN_TABLE($PERCENT = "", $CLASS = "", $ALIGN="left", $VALIGN="", $td_only=false) {
64         global $table_cnt;
65
66         // Count tables so we can generate CSS classes for every table... :-)
67         if (empty($CLASS)) {
68                 // Class is empty so count one up and create a class
69                 $table_cnt++; $CLASS = "class".$table_cnt;
70         }
71         $OUT = "<TABLE border=\"0\" cellspacing=\"0\" cellpadding=\"0\"";
72
73         // Shall I add the classes to TABLE and TD or only to TD?
74         if (!$td_only) $OUT .= " class=\"".$CLASS."\"";
75
76         // Width is given
77         if (!empty($PERCENT)) $OUT .= " width=\"".$PERCENT."\"";
78
79         // Horizonal align
80         if (!empty($ALIGN)) $OUT .=" align=\"".$ALIGN."\"";
81
82         // Vertical align is given
83         if (!empty($VALIGN))  $OUT .= " valign=\"".$VALIGN."\"";
84         $OUT .= ">\n<TR>\n<TD";
85         if (!empty($ALIGN)) $OUT .=" align=\"".$ALIGN."\"";
86         $OUT .= " class=\"".$CLASS."\">";
87         OUTPUT_HTML($OUT);
88 }
89
90 // Close a table (you may want to add some footer stuff here)
91 function CLOSE_TABLE($ADD="") {
92         OUTPUT_HTML("  </TD>\n</TR>");
93         if (!empty($ADD)) OUTPUT_HTML($ADD);
94         OUTPUT_HTML("</TABLE>");
95 }
96
97 // Output HTML code directly or "render" it. You addionally switch the new-line character off
98 function OUTPUT_HTML($HTML, $NEW_LINE = true) {
99         // Some global variables
100         global $OUTPUT, $footer, $CSS;
101
102         // Do we have HTML-Code here?
103         if (!empty($HTML)) {
104                 // Yes, so we handle it as you have configured
105                 switch (OUTPUT_MODE)
106                 {
107                 case "render":
108                         // That's why you don't need any \n at the end of your HTML code... :-)
109                         if (_OB_CACHING == "on") {
110                                 // Output into PHP's internal buffer
111                                 OUTPUT_RAW($HTML);
112
113                                 // That's why you don't need any \n at the end of your HTML code... :-)
114                                 if ($NEW_LINE) echo "\n";
115                         } else {
116                                 // Render mode for old or lame servers...
117                                 $OUTPUT .= $HTML;
118
119                                 // That's why you don't need any \n at the end of your HTML code... :-)
120                                 if ($NEW_LINE) $OUTPUT .= "\n";
121                         }
122                         break;
123
124                 case "direct":
125                         // If we are switching from render to direct output rendered code
126                         if ((!empty($OUTPUT)) && (_OB_CACHING != "on")) { OUTPUT_RAW($OUTPUT); $OUTPUT = ""; }
127
128                         // The same as above... ^
129                         OUTPUT_RAW($HTML);
130                         if ($NEW_LINE) echo "\n";
131                         break;
132
133                 default:
134                         // Huh, something goes wrong or maybe you have edited config.php ???
135                         DEBUG_LOG(__FUNCTION__, __LINE__, sprintf("Invalid renderer %s detected.", OUTPUT_MODE));
136                         MXCHANGE_DIE("<STRONG>".FATAL_ERROR.":</STRONG> ".LANG_NO_RENDER_DIRECT);
137                         break;
138                 }
139         } elseif ((_OB_CACHING == "on") && ($footer == 1)) {
140                 // Output cached HTML code
141                 $OUTPUT = ob_get_contents();
142
143                 // Clear output buffer for later output
144                 ob_end_clean();
145
146                 // Send HTTP header
147                 header("HTTP/1.1 200");
148
149                 // Used later
150                 $now = gmdate('D, d M Y H:i:s') . ' GMT';
151
152                 // General headers for no caching
153                 header("Expired: " . $now); // RFC2616 - Section 14.21
154                 header("Last-Modified: " . $now);
155                 header("Cache-Control: no-store, no-cache, must-revalidate, pre-check=0, post-check=0, max-age=0"); // HTTP/1.1
156                 header("Pragma: no-cache"); // HTTP/1.0
157                 header("Connection: Close");
158
159                 // Extension "rewrite" installed?
160                 if ((EXT_IS_ACTIVE("rewrite")) && (function_exists('REWRITE_LINKS')) && ($CSS != "1") && ($CSS != "-1")) {
161                         $OUTPUT = REWRITE_LINKS($OUTPUT);
162                 } // END - if
163
164                 // Compile and run finished rendered HTML code
165                 while (strpos($OUTPUT, '{!') > 0) {
166                         // Prepare the content and eval() it...
167                         $newContent = "";
168                         $eval = "\$newContent = \"".COMPILE_CODE(addslashes($OUTPUT))."\";";
169                         @eval($eval);
170
171                         // Was that eval okay?
172                         if (empty($newContent)) {
173                                 // Something went wrong!
174                                 die("Evaluation error:<pre>".htmlentities($eval)."</pre>");
175                         } // END - if
176                         $OUTPUT = $newContent;
177                 } // END - while
178
179                 // Output code here, DO NOT REMOVE! ;-)
180                 OUTPUT_RAW($OUTPUT);
181         } elseif ((OUTPUT_MODE == "render") && (!empty($OUTPUT))) {
182                 // Rewrite links when rewrite extension is active
183                 if ((EXT_IS_ACTIVE("rewrite")) && (function_exists('REWRITE_LINKS')) && ($CSS != "1") && ($CSS != "-1")) {
184                         $OUTPUT = REWRITE_LINKS($OUTPUT);
185                 } // END - if
186
187                 // Compile and run finished rendered HTML code
188                 while (strpos($OUTPUT, '{!') > 0) {
189                         $eval = "\$OUTPUT = \"".COMPILE_CODE(addslashes($OUTPUT))."\";";
190                         eval($eval);
191                 } // END - while
192
193                 // Output code here, DO NOT REMOVE! ;-)
194                 OUTPUT_RAW($OUTPUT);
195         }
196 }
197
198 // Output the raw HTML code
199 function OUTPUT_RAW ($HTML) {
200         // Output stripped HTML code to avoid broken JavaScript code, etc.
201         echo stripslashes(stripslashes($HTML));
202
203         // Flush the output if only _OB_CACHING is not "on"
204         if (_OB_CACHING != "on") {
205                 // Flush it
206                 flush();
207         } // END - if
208 }
209
210 // Add a fatal error message to the queue array
211 function ADD_FATAL ($message, $extra="") {
212         global $FATAL;
213
214         if (empty($extra)) {
215                 // Regular text message to add to $FATAL
216                 $FATAL[] = $message;
217         } else {
218                 // $message is text with a mask plus extras to insert into the text
219                 $message = sprintf($message, $extra);
220                 $FATAL[] = $message;
221         }
222
223         // Log fatal messages away
224         DEBUG_LOG(__FUNCTION__, __LINE__, " message={$message}");
225 }
226
227 // Load a template file and return it's content (only it's name; do not use ' or ")
228 function LOAD_TEMPLATE($template, $return=false, $content=array()) {
229         // Add more variables which you want to use in your template files
230         global $DATA, $_CONFIG, $username;
231
232         // Make all template names lowercase
233         $template = strtolower($template);
234
235         // Count the template load
236         if (!isset($_CONFIG['num_templates'])) $_CONFIG['num_templates'] = 0;
237         $_CONFIG['num_templates']++;
238
239         // Init some data
240         $ret = "";
241         if (empty($GLOBALS['refid'])) $GLOBALS['refid'] = 0;
242
243         // @DEPRECATED Try to rewrite the if() condition
244         if ($template == "member_support_form") {
245                 // Support request of a member
246                 $result = SQL_QUERY_ESC("SELECT userid, gender, surname, family, email FROM "._MYSQL_PREFIX."_user_data WHERE userid=%s LIMIT 1",
247                         array($GLOBALS['userid']), __FILE__, __LINE__);
248
249                 // Is content an array?
250                 if (is_array($content)) {
251                         // Merge data
252                         $content = array_merge($content, SQL_FETCHARRAY($result));
253
254                         // Translate gender
255                         $content['gender'] = TRANSLATE_GENDER($content['gender']);
256                 } else {
257                         // DEPRECATED: Load data in direct variables
258                         list($gender, $surname, $family, $email) = SQL_FETCHROW($result);
259
260                         // Translate gender
261                         $gender = TRANSLATE_GENDER($gender);
262                         DEBUG_LOG(__FUNCTION__, __LINE__, sprintf("DEPRECATION-WARNING: content is not array (%s).", gettype($content)));
263                 }
264
265                 // Free result
266                 SQL_FREERESULT($result);
267         } // END - if
268
269         // Generate date/time string
270         $date_time = MAKE_DATETIME(time(), "1");
271
272         // Base directory
273         $BASE = sprintf("%stemplates/%s/html/", PATH, GET_LANGUAGE());
274         $MODE = "";
275
276         // Check for admin/guest/member templates
277         if (strpos($template, "admin_") > -1) {
278                 // Admin template found
279                 $MODE = "admin/";
280         } elseif (strpos($template, "guest_") > -1) {
281                 // Guest template found
282                 $MODE = "guest/";
283         } elseif (strpos($template, "member_") > -1) {
284                 // Member template found
285                 $MODE = "member/";
286         } elseif (strpos($template, "install_") > -1) {
287                 // Installation template found
288                 $MODE = "install/";
289         } elseif (strpos($template, "ext_") > -1) {
290                 // Extension template found
291                 $MODE = "ext/";
292         } elseif (strpos($template, "la_") > -1) {
293                 // "Logical-area" template found
294                 $MODE = "la/";
295         } else {
296                 // Test for extension
297                 $test = substr($template, 0, strpos($template, "_"));
298                 if (EXT_IS_ACTIVE($test)) {
299                         // Set extra path to extension's name
300                         $MODE = $test."/";
301                 }
302         }
303
304         ////////////////////////
305         // Generate file name //
306         ////////////////////////
307         $file = $BASE.$MODE.$template.".tpl";
308
309         if ((!empty($GLOBALS['what'])) && ((strpos($template, "_header") > 0) || (strpos($template, "_footer") > 0)) && (($MODE == "guest/") || ($MODE == "member/") || ($MODE == "admin/"))) {
310                 // Select what depended header/footer template file for admin/guest/member area
311                 $file2 = sprintf("%s%s%s_%s.tpl",
312                         $BASE,
313                         $MODE,
314                         $template,
315                         SQL_ESCAPE($GLOBALS['what'])
316                 );
317
318                 // Probe for it...
319                 if (FILE_READABLE($file2)) $file = $file2;
320
321                 // Remove variable from memory
322                 unset($file2);
323         }
324
325         // Does the special template exists?
326         if (!FILE_READABLE($file)) {
327                 // Reset to default template
328                 $file = $BASE.$template.".tpl";
329         } // END - if
330
331         // Now does the final template exists?
332         if (FILE_READABLE($file)) {
333                 // The local file does exists so we load it. :)
334                 $tmpl_file = implode("", file($file));
335
336                 // Replace ' to our own chars to preventing them being quoted
337                 while (strpos($tmpl_file, "\'") !== false) { $tmpl_file = str_replace("\'", '{QUOT}', $tmpl_file); }
338
339                 // Do we have to compile the code?
340                 $ret = "";
341                 if ((strpos($tmpl_file, "\$") !== false) || (strpos($tmpl_file, '{--') !== false) || (strpos($tmpl_file, '--}') > 0)) {
342                         // Okay, compile it!
343                         $tmpl_file = "\$ret=\"".COMPILE_CODE(addslashes($tmpl_file))."\";";
344                         eval($tmpl_file);
345                 } else {
346                         // Simply return loaded code
347                         $ret = $tmpl_file;
348                 }
349
350                 // Add surrounding HTML comments to help finding bugs faster
351                 $ret = "<!-- Template ".$template." - Start -->\n".$ret."<!-- Template ".$template." - End -->\n";
352         } elseif ((IS_ADMIN()) || ((isBooleanConstantAndTrue('mxchange_installing')) && (!isBooleanConstantAndTrue('mxchange_installed')))) {
353                 // Only admins shall see this warning or when installation mode is active
354                 $ret = "<br /><SPAN class=\"guest_failed\">".TEMPLATE_404."</SPAN><br />
355 (".basename($file).")<br />
356 <br />
357 ".TEMPLATE_CONTENT."
358 <pre>".print_r($content, true)."</pre>
359 ".TEMPLATE_DATA."
360 <pre>".print_r($DATA, true)."</pre>
361 <br /><br />";
362         }
363
364         // Remove content and data
365         unset($content);
366         unset($DATA);
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) {
372                         // Return the HTML code
373                         return $ret;
374                 } else {
375                         // Output direct
376                         OUTPUT_HTML($ret);
377                 }
378         } elseif (isBooleanConstantAndTrue('DEBUG_MODE')) {
379                 // Warning, empty output!
380                 return "E:".$template."<br />\n";
381         }
382 }
383
384 // Send mail out to an email address
385 function SEND_EMAIL($TO, $SUBJECT, $MSG, $HTML = "N", $FROM = "") {
386         //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):TO={$TO},SUBJECT={$SUBJECT}<br />\n";
387
388         // Compile subject line (for POINTS constant etc.)
389         $eval = "\$SUBJECT = html_entity_decode(\"".COMPILE_CODE(addslashes($SUBJECT))."\");";
390         eval($eval);
391
392         // Set from header
393         if ((!eregi("@", $TO)) && ($TO > 0)) {
394                 // Value detected, is the message extension installed?
395                 if (EXT_IS_ACTIVE("msg")) {
396                         ADD_MESSAGE_TO_BOX($TO, $SUBJECT, $MSG, $HTML);
397                         return;
398                 } else {
399                         // Load email address
400                         $result_email = SQL_QUERY_ESC("SELECT email FROM "._MYSQL_PREFIX."_user_data WHERE userid=%s LIMIT 1", array(bigintval($TO)), __FILE__, __LINE__);
401                         //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):numRows=".SQL_NUMROWS($result_email)."<br />\n";
402
403                         // Does the user exist?
404                         if (SQL_NUMROWS($result_email)) {
405                                 // Load email address
406                                 list($TO) = SQL_FETCHROW($result_email);
407                         } else {
408                                 // Set webmaster
409                                 $TO = WEBMASTER;
410                         }
411
412                         // Free result
413                         SQL_FREERESULT($result_email);
414                 }
415         } elseif ("$TO" == "0") {
416                 // Is the webmaster!
417                 $TO = WEBMASTER;
418         }
419         //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):TO={$TO}<br />\n";
420
421         // Check for PHPMailer or debug-mode
422         if (!CHECK_PHPMAILER_USAGE()) {
423                 // Not in PHPMailer-Mode
424                 if (empty($FROM)) {
425                         // Load email header template
426                         $FROM = LOAD_EMAIL_TEMPLATE("header");
427                 } else {
428                         // Append header
429                         $FROM .= LOAD_EMAIL_TEMPLATE("header");
430                 }
431         } elseif (isBooleanConstantAndTrue('DEBUG_MODE')) {
432                 if (empty($FROM)) {
433                         // Load email header template
434                         $FROM = LOAD_EMAIL_TEMPLATE("header");
435                 } else {
436                         // Append header
437                         $FROM .= LOAD_EMAIL_TEMPLATE("header");
438                 }
439         }
440
441         // Compile "TO"
442         $eval = "\$TO = \"".COMPILE_CODE(addslashes($TO))."\";";
443         eval($eval);
444
445         // Compile "MSG"
446         $eval = "\$MSG = \"".COMPILE_CODE(addslashes($MSG))."\";";
447         eval($eval);
448
449         // Fix HTML parameter (default is no!)
450         if (empty($HTML)) $HTML = "N";
451         if (isBooleanConstantAndTrue('DEBUG_MODE')) {
452                 // In debug mode we want to display the mail instead of sending it away so we can debug this part
453                 echo "<pre>
454 ".htmlentities(trim($FROM))."
455 To      : ".$TO."
456 Subject : ".$SUBJECT."
457 Message : ".$MSG."
458 </pre>\n";
459
460                 // Log the mail away
461                 if (defined('DEBUG_MAIL')) DEBUG_LOG(__FUNCTION__, __LINE__, "to={$TO},subject={$SUBJECT},msg={$MSG}");
462         } elseif (($HTML == "Y") && (EXT_IS_ACTIVE("html_mail"))) {
463                 // Send mail as HTML away
464                 SEND_HTML_EMAIL($TO, $SUBJECT, $MSG, $FROM);
465         } elseif (!empty($TO)) {
466                 // Send Mail away
467                 SEND_RAW_EMAIL($TO, $SUBJECT, $MSG, $FROM);
468         } elseif ($HTML == "N") {
469                 // Problem found!
470                 SEND_RAW_EMAIL(WEBMASTER, "[PROBLEM:]".$SUBJECT, $MSG, $FROM);
471         }
472 }
473
474 // Check if legacy or PHPMailer command
475 // @private
476 function CHECK_PHPMAILER_USAGE() {
477         return ((defined('SMTP_HOSTNAME')) && (defined('SMTP_USER')) && (defined('SMTP_PASSWORD')) && (SMTP_HOSTNAME != "") && (SMTP_USER != ""));
478 }
479
480 /*
481  * Send out a raw email with PHPMailer class or legacy mail() command
482  */
483 function SEND_RAW_EMAIL ($to, $subject, $msg, $from) {
484         // Shall we use PHPMailer class or legacy mode?
485         if (CHECK_PHPMAILER_USAGE()) {
486                 // Use PHPMailer class with SMTP enabled
487                 require_once(PATH."inc/phpmailer/class.phpmailer.php");
488                 require_once(PATH."inc/phpmailer/class.smtp.php");
489
490                 // get new instance
491                 $mail = new PHPMailer();
492                 $mail->PluginDir  = sprintf("%sinc/phpmailer/", PATH);
493
494                 $mail->IsSMTP();
495                 $mail->SMTPAuth   = true;
496                 $mail->Host       = SMTP_HOSTNAME;
497                 $mail->Port       = 25;
498                 $mail->Username   = SMTP_USER;
499                 $mail->Password   = SMTP_PASSWORD;
500                 if (empty($from)) {
501                         $mail->From = WEBMASTER;
502                 } else {
503                         $mail->From = $from;
504                 }
505                 $mail->FromName   = MAIN_TITLE;
506                 $mail->Subject    = $subject;
507                 if ((EXT_IS_ACTIVE("html_mail")) && (strip_tags($msg) != $msg)) {
508                         $mail->Body       = $msg;
509                         $mail->AltBody    = "Your mail program required HTML support to read this mail!";
510                         $mail->WordWrap   = 70;
511                         $mail->IsHTML(true);
512                 } else {
513                         $mail->Body       = html_entity_decode($msg);
514                 }
515                 $mail->AddAddress($to, "");
516                 $mail->AddReplyTo(WEBMASTER,MAIN_TITLE);
517                 $mail->AddCustomHeader("Errors-To:".WEBMASTER);
518                 $mail->AddCustomHeader("X-Loop:".WEBMASTER);
519                 $mail->Send();
520         } else {
521                 // Use legacy mail() command
522                 @mail($to, $subject, html_entity_decode($msg), $from);
523         }
524 }
525 //
526
527 // Generate a password in a specified length or use default password length
528 function GEN_PASS($LEN = 0) {
529         global $_CONFIG;
530         if ($LEN == 0) $LEN = $_CONFIG['pass_len'];
531
532         // Initialize array with all allowed chars
533         $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,-,+,_,/");
534
535         // Initialize randomizer
536         mt_srand((double) microtime() * 1000000);
537
538         // Start creating password
539         $PASS = "";
540         for ($i = 0; $i < $LEN; $i++) {
541                 $PASS .= $ABC[mt_rand(0, sizeof($ABC) -1)];
542         } // END - for
543
544         // When the size is below 40 we can also add additional security by scrambling it
545         if (strlen($PASS) <= 40) {
546                 // Also scramble the password
547                 $PASS = scrambleString($PASS);
548         } // END - if
549
550         // Return the password
551         return $PASS;
552 }
553 //
554 function MAKE_DATETIME ($time, $mode="0")
555 {
556         if ($time == 0) {
557                 // Never happend
558                 return NEVER_HAPPENED;
559         } else {
560                 // Filter out numbers
561                 $time = bigintval($time);
562         }
563
564         switch (GET_LANGUAGE())
565         {
566         case "de": // German date / time format
567                 switch ($mode) {
568                         case "0": $ret = date("d.m.Y \u\m H:i \U\h\\r", $time); break;
569                         case "1": $ret = strtolower(date("d.m.Y - H:i", $time)); break;
570                         case "2": $ret = date("d.m.Y|H:i", $time); break;
571                         case "3": $ret = date("d.m.Y", $time); break;
572                         default:
573                                 DEBUG_LOG(__FUNCTION__, __LINE__, sprintf("Invalid date mode %s detected.", $mode));
574                                 break;
575                 }
576                 break;
577
578         default:        // Default is the US date / time format!
579                 switch ($mode) {
580                         case "0": $ret = date("r", $time); break;
581                         case "1": $ret = date("Y-m-d - g:i A", $time); break;
582                         case "2": $ret = date("y-m-d|H:i", $time); break;
583                         case "3": $ret = date("y-m-d", $time); break;
584                         default:
585                                 DEBUG_LOG(__FUNCTION__, __LINE__, sprintf("Invalid date mode %s detected.", $mode));
586                                 break;
587                 }
588         }
589         return $ret;
590 }
591
592 // Translates the american decimal dot into a german comma
593 function TRANSLATE_COMMA ($dotted, $cut=true, $max=0) {
594         global $_CONFIG;
595
596         // Default is 3 you can change this in admin area "Misc -> Misc Options"
597         if (empty($_CONFIG['max_comma'])) $_CONFIG['max_comma'] = "3";
598
599         // Use from config is default
600         $maxComma = $_CONFIG['max_comma'];
601
602         // Use from parameter?
603         if ($max > 0) $maxComma = $max;
604
605         // Cut zeros off?
606         if (($cut) && ($max == 0)) {
607                 // Test for commata if in cut-mode
608                 $com = explode(".", $dotted);
609                 if (count($com) < 2) {
610                         // Don't display commatas even if there are none... ;-)
611                         $maxComma = 0;
612                 }
613         } // END - if
614
615         // Debug log
616         //* DEBUG: */ DEBUG_LOG(__FUNCTION__, __LINE__, "dotted={$dotted},maxComma={$maxComma}");
617
618         // Translate it now
619         switch (GET_LANGUAGE()) {
620         case "de":
621                 $dotted = number_format($dotted, $maxComma, ",", ".");
622                 break;
623
624         default:
625                 $dotted = number_format($dotted, $maxComma, ".", ",");
626                 break;
627         }
628
629         // Return translated value
630         return $dotted;
631 }
632
633 //
634 function DEREFERER ($URL) {
635         // Don't de-refer our own links!
636         if (substr($URL, 0, strlen(URL)) != URL) {
637                 // De-refer this link
638                 $URL = URL."/modules.php?module=loader&amp;url=".urlencode(base64_encode(gzcompress($URL)));
639         } // END - if
640
641         // Return link
642         return $URL;
643 }
644
645 //
646 function TRANSLATE_GENDER ($gender) {
647         switch ($gender)
648         {
649                 case "M": $ret = GENDER_M; break;
650                 case "F": $ret = GENDER_F; break;
651                 case "C": $ret = GENDER_C; break;
652                 default : $ret = $gender; break;
653         }
654         return $ret;
655 }
656 //
657 function FRAMETESTER($URL) {
658         // Prepare frametester URL
659         $frametesterUrl = sprintf("%s/modules.php?module=frametester&amp;url=%s",
660                 URL,
661                 urlencode(base64_encode(gzcompress(COMPILE_CODE($URL))))
662         );
663         return $frametesterUrl;
664 }
665 //
666 function SELECTION_COUNT($array) {
667         $ret = 0;
668         if (is_array($array)) {
669                 foreach ($array as $key => $sel) {
670                         if (!empty($sel)) $ret++;
671                 }
672         }
673         return $ret;
674 }
675 //
676 function IMG_CODE ($code, $type, $DATA, $uid) {
677         return "<IMG border=\"0\" alt=\"Code\" src=\"".URL."/mailid_top.php?uid=".$uid."&amp;".$type."=".$DATA."&amp;mode=img&amp;code=".$code."\">";
678 }
679 //
680 function TRANSLATE_STATUS($status) {
681         switch ($status)
682         {
683         case "UNCONFIRMED":
684                 $ret = ACCOUNT_UNCONFIRMED;
685                 break;
686
687         case "CONFIRMED":
688                 $ret = ACCOUNT_CONFIRMED;
689                 break;
690
691         case "LOCKED":
692                 $ret = ACCOUNT_LOCKED;
693                 break;
694
695         case "":
696         case null:
697                 $ret = ACCOUNT_DELETED;
698                 break;
699
700         default:
701                 DEBUG_LOG(__FUNCTION__, __LINE__, sprintf("Unknown status %s detected.", $status));
702                 $ret = UNKNOWN_STATUS_1.$status.UNKNOWN_STATUS_2;
703                 break;
704         }
705         return $ret;
706 }
707 //
708 function GET_LANGUAGE() {
709         global $cacheArray;
710
711         // Set default return value to default language from config
712         $ret = DEFAULT_LANG;
713
714         // Init variable
715         $lang = "";
716
717         // Is the variable set
718         if (!empty($_GET['mx_lang'])) {
719                 // Accept only first 2 chars
720                 $lang = substr($_GET['mx_lang'], 0, 2);
721         } elseif (isset($cacheArray['language'])) {
722                 // Use cached
723                 $ret = $cacheArray['language'];
724         } elseif (!empty($lang)) {
725                 // Check if main language file does exist
726                 if (FILE_READABLE(PATH."inc/language/".$lang.".php")) {
727                         // Okay found, so let's update cookies
728                         SET_LANGUAGE($lang);
729                 }
730         } elseif (!isSessionVariableSet('mx_lang')) {
731                 // Return stored value from cookie
732                 $ret = get_session('mx_lang');
733
734                 // Fixes a warning before the session has the mx_lang constant
735                 if (empty($ret)) $ret = DEFAULT_LANG;
736         }
737
738         // Cache entry
739         $cacheArray['language'] = $ret;
740
741         // Return value
742         return $ret;
743 }
744 //
745 function SET_LANGUAGE($lang) {
746         global $_CONFIG;
747
748         // Accept only first 2 chars!
749         $lang = substr(SQL_ESCAPE(strip_tags($lang)), 0, 2);
750
751         // Set cookie
752         set_session("mx_lang", $lang);
753 }
754 //
755 function LOAD_EMAIL_TEMPLATE($template, $content=array(), $UID="0") {
756         global $DATA, $_CONFIG, $REPLACER;
757
758         // Make sure all template names are lowercase!
759         $template = strtolower($template);
760
761         // Default "nickname" if extension is not installed
762         $nick = "---";
763
764         // Keept for backward-compatiblity (please replace these variables against our new {!CONST!} syntax!)
765         // No longer used: $MAIN_TITLE = MAIN_TITLE; $URL = URL; $WEBMASTER = WEBMASTER;
766
767         // Prepare IP number and User Agent
768         $REMOTE_ADDR     = GET_REMOTE_ADDR();
769         $HTTP_USER_AGENT = GET_USER_AGENT();
770
771         // Default admin
772         $ADMIN = MAIN_TITLE;
773
774         // Is the admin logged in?
775         if (IS_ADMIN()) {
776                 // Get admin id
777                 $aid = GET_ADMIN_ID(get_session('admin_login'));
778
779                 // Load Admin data
780                 $ADMIN = GET_ADMIN_EMAIL($aid);
781         } // END - if
782
783         // Neutral email address is default
784         $email = WEBMASTER;
785
786         // Expiration in a nice output format
787         if ($_CONFIG['auto_purge'] == 0) {
788                 // Will never expire!
789                 $EXPIRATION = MAIL_WILL_NEVER_EXPIRE;
790         } elseif (function_exists('CREATE_FANCY_TIME')) {
791                 // Create nice date string
792                 $EXPIRATION = CREATE_FANCY_TIME($_CONFIG['auto_purge']);
793         } else {
794                 // Display days only
795                 $EXPIRATION = round($_CONFIG['auto_purge']/60/60/24)." "._DAYS;
796         }
797
798         // Is content an array?
799         if (is_array($content)) {
800                 // Add expiration to array, $EXPIRATION is now deprecated!
801                 $content['expiration'] = $EXPIRATION;
802         } // END - if
803
804         // Load user's data
805         //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):UID={$UID},template={$template}<br />\n";
806         if ($UID > 0) {
807                 if (EXT_IS_ACTIVE("nickname")) {
808                         //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):NICKNAME!<br />\n";
809                         // Load nickname
810                         $result = SQL_QUERY_ESC("SELECT surname, family, gender, email, nickname FROM "._MYSQL_PREFIX."_user_data WHERE userid=%s LIMIT 1",
811                                 array(bigintval($UID)), __FILE__, __LINE__);
812                 } else {
813                         //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):NO-NICK!<br />\n";
814                         /// Load normal data
815                         $result = SQL_QUERY_ESC("SELECT surname, family, gender, email FROM "._MYSQL_PREFIX."_user_data WHERE userid=%s LIMIT 1",
816                                 array(bigintval($UID)), __FILE__, __LINE__);
817                 }
818
819                 // Is content an array?
820                 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):content[]=".gettype($content)."<br />\n";
821                 if (is_array($content)) {
822                         // Fetch and migrate data
823                         //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):content()=".count($content)." - PRE<br />\n";
824                         $content = array_merge($content, SQL_FETCHARRAY($result));
825                         //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):content()=".count($content)." - AFTER<br />\n";
826                 } // END - if
827
828                 // Free result
829                 SQL_FREERESULT($result);
830         } // END - if
831
832         // Translate M to male or F to female if present
833         if (isset($content['gender'])) $content['gender'] = TRANSLATE_GENDER($content['gender']);
834
835         // Overwrite email from data if present
836         if (isset($content['email']))  $email = $content['email'];
837
838         // Store email for some functions in global data array
839         $DATA['email'] = $email;
840
841         // Base directory
842         $BASE = sprintf("%stemplates/%s/emails/", PATH, GET_LANGUAGE());
843
844         // Check for admin/guest/member templates
845         if (strpos($template, "admin_") > -1) {
846                 // Admin template found
847                 $file = $BASE."admin/".$template.".tpl";
848         } elseif (strpos($template, "guest_") > -1) {
849                 // Guest template found
850                 $file = $BASE."guest/".$template.".tpl";
851         } elseif (strpos($template, "member_") > -1) {
852                 // Member template found
853                 $file = $BASE."member/".$template.".tpl";
854         } else {
855                 // Test for extension
856                 $test = substr($template, 0, strpos($template, "_"));
857                 if (EXT_IS_ACTIVE($test)) {
858                         // Set extra path to extension's name
859                         $file = $BASE.$test."/".$template.".tpl";
860                 } else {
861                         // No special filename
862                         $file = $BASE.$template.".tpl";
863                 }
864         }
865
866         // Does the special template exists?
867         if (!FILE_READABLE($file)) {
868                 // Reset to default template
869                 $file = $BASE.$template.".tpl";
870         } // END - if
871
872         // Now does the final template exists?
873         $newContent = "";
874         if (FILE_READABLE($file)) {
875                 // The local file does exists so we load it. :)
876                 $tmpl_file = implode("", file($file));
877                 $tmpl_file = addslashes($tmpl_file);
878
879                 // Run code
880                 $tmpl_file = "\$newContent=html_entity_decode(\"".COMPILE_CODE($tmpl_file)."\");";
881                 @eval($tmpl_file);
882         } elseif (!empty($template)) {
883                 // Template file not found!
884                 $newContent = TEMPLATE_404.": ".$template."<br />
885 ".TEMPLATE_CONTENT."
886 <pre>".print_r($content, true)."</pre>
887 ".TEMPLATE_DATA."
888 <pre>".print_r($DATA, true)."</pre>
889 <br /><br />";
890
891                 // Debug mode not active? Then remove the HTML tags
892                 if (!DEBUG_MODE) $newContent = strip_tags($newContent);
893         } else {
894                 // No template name supplied!
895                 $newContent = NO_TEMPLATE_SUPPLIED;
896         }
897
898         // Is there some content?
899         if (empty($newContent)) {
900                 // Compiling failed
901                 $newContent = "Compiler error for template {$template}!\nUncompiled content:\n".$tmpl_file;
902                 if (function_exists('error_get_last')) $newContent .= "\n--------------------------------------\nDebug:\n".print_r(error_get_last(), true)."--------------------------------------\nPlease don't alter these informations!\nThanx.";
903         } // END - if
904
905         // Remove content and data
906         unset($content);
907         unset($DATA);
908
909         // Return compiled content
910         return COMPILE_CODE($newContent);
911 }
912 //
913 function MAKE_TIME($H, $M, $S, $stamp) {
914         // Extract day, month and year from given timestamp
915         $DAY   = date("d", $stamp);
916         $MONTH = date("m", $stamp);
917         $YEAR  = date('Y', $stamp);
918
919         // Create timestamp for wished time which depends on extracted date
920         return mktime($H, $M, $S, $MONTH, $DAY, $YEAR);
921 }
922 //
923 function LOAD_URL($URL, $addUrlData=true) {
924         global $CSS, $_CONFIG, $footer;
925
926         // Compile out URI codes
927         $URL = COMPILE_CODE($URL);
928
929         // Check if http(s):// is there
930         if ((substr($URL, 0, 7) != "http://") && (substr($URL, 0, 8) != "https://")) {
931                 // Make all URLs full-qualified
932                 $URL = URL."/".$URL;
933         }
934
935         // Get output buffer
936         $OUTPUT = ob_get_contents();
937
938         // Clear it only if there is content
939         if (!empty($OUTPUT)) {
940                 ob_end_clean();
941         } // END - if
942
943         // Add some data to URL if cookies are not accepted
944         if (((!defined('__COOKIES')) || (!__COOKIES)) && ($addUrlData)) $URL = ADD_URL_DATA($URL);
945
946         // Probe for bot from search engine
947         if ((eregi("spider", GET_USER_AGENT())) || (eregi("bot", GET_USER_AGENT())) || (eregi("spider", GET_USER_AGENT()))) {
948                 // Search engine bot detected so let's rewrite many chars for the link
949                 $URL = htmlentities(strip_tags($URL), ENT_QUOTES);
950
951                 // Output new location link as anchor
952                 OUTPUT_HTML("<A href=\"".$URL."\">".$URL."</A>");
953         } elseif (!headers_sent()) {
954                 // Load URL when headers are not sent
955                 /*
956                 print("<pre>");
957                 debug_print_backtrace();
958                 die("</pre>URL={$URL}");
959                 */
960                 @header ("Location: ".str_replace("&amp;", "&", $URL));
961         } else {
962                 // Output error message
963                 include(PATH."inc/header.php");
964                 LOAD_TEMPLATE("redirect_url", false, str_replace("&amp;", "&", $URL));
965                 include(PATH."inc/footer.php");
966         }
967         exit();
968 }
969 //
970 function COMPILE_CODE($code, $simple = false, $constants = true, $full = true) {
971         global $SEC_CHARS, $URL_CHARS;
972         // Is the code a string?
973         if (!is_string($code)) {
974                 // Silently return it
975                 return $code;
976         } // END - if
977
978         $ARRAY = $SEC_CHARS;
979
980         // Select smaller set of chars to replace when we e.g. want to compile URLs
981         if (!$full) $ARRAY = $URL_CHARS;
982
983         // Compile constants
984         if ($constants) {
985                 // BEFORE 0.2.1 : Language and data constants
986                 // WITH 0.2.1+  : Only language constants
987                 $code = str_replace('{--','".', str_replace('--}','."', $code));
988
989                 // BEFORE 0.2.1 : Not used
990                 // WITH 0.2.1+  : Data constants
991                 $code = str_replace('{!','".', str_replace("!}", '."', $code));
992         } // END - if
993
994         // Compile QUOT and other non-HTML codes
995         foreach ($ARRAY['to'] as $k => $to) {
996                 // Do the reversed thing as in inc/libs/security_functions.php
997                 $code = str_replace($to, $ARRAY['from'][$k], $code);
998         } // END - foreach
999
1000         // But shall I keep simple quotes for later use?
1001         if ($simple) $code = str_replace("\'", '{QUOT}', $code);
1002
1003         // Find $content[bla][blub] entries
1004         @preg_match_all('/\$(content|DATA)((\[([a-zA-Z0-9-_]+)\])*)/', $code, $matches);
1005
1006         // Are some matches found?
1007         if ((count($matches) > 0) && (count($matches[0]) > 0)) {
1008                 // Replace all matches
1009                 $matchesFound = array();
1010                 foreach ($matches[0] as $key => $match) {
1011                         // Fuzzy look has failed by default
1012                         $fuzzyFound = false;
1013
1014                         // Fuzzy look on match if already found
1015                         foreach ($matchesFound as $found => $set) {
1016                                 // Get test part
1017                                 $test = substr($found, 0, strlen($match));
1018
1019                                 // Does this entry exist?
1020                                 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):found={$found},match={$match},set={$set}<br />\n";
1021                                 if ($test == $match) {
1022                                         // Match found!
1023                                         //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):fuzzyFound!<br />\n";
1024                                         $fuzzyFound = true;
1025                                         break;
1026                                 } // END - if
1027                         } // END - foreach
1028
1029                         // Skip this entry?
1030                         if ($fuzzyFound) continue;
1031
1032                         // Take all string elements
1033                         if ((is_string($matches[4][$key])) && (!isset($matchesFound[$match])) && (!isset($matchesFound[$key."_".$matches[4][$key]]))) {
1034                                 // Replace it in the code
1035                                 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):key={$key},match={$match}<br />\n";
1036                                 $newMatch = str_replace("[".$matches[4][$key]."]", "['".$matches[4][$key]."']", $match);
1037                                 $code = str_replace($match, "\".".$newMatch.".\"", $code);
1038                                 $matchesFound[$key."_".$matches[4][$key]] = 1;
1039                                 $matchesFound[$match] = 1;
1040                         } elseif (!isset($matchesFound[$match])) {
1041                                 // Not yet replaced!
1042                                 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):match={$match}<br />\n";
1043                                 $code = str_replace($match, "\".".$match.".\"", $code);
1044                                 $matchesFound[$match] = 1;
1045                         }
1046                 } // END - foreach
1047         } // END - if
1048
1049         // Return compiled code
1050         return $code;
1051 }
1052 //
1053 /************************************************************************
1054  *                                                                      *
1055  * Gaenderter Sortier-Algorythmus, $array wird nach dem Array (!)       *
1056  * $a_sort sortiert:                                                    *
1057  *                                                                      *
1058  * $array - Das 3-dimensionale Array, das paralell sortiert werden soll *
1059  * $a_sort - Array, das die Sortiereihenfolge der ersten Elementeben    *
1060  * $primary_key - Prim.rschl.ssel aus $a_sort, nach dem sortiert wird   *
1061  * $order - Sortiereihenfolge: -1 = A-Z, 0 = keine, 1 = Z-A             *
1062  * $nums - true = Als Zahlen sortieren, false = Als Zeichen sortieren   *
1063  *                                                                      *
1064  * $a_sort muss Elemente enthalten, deren Wert Schluessel von $array    *
1065  * sind... Klingt kompliziert, suchen Sie mal mein Beispiel, dann sehen *
1066  * Sie, dass es doch nicht so schwer ist! :-)                           *
1067  *                                                                      *
1068  ************************************************************************/
1069 function array_pk_sort(&$array, $a_sort, $primary_key = 0, $order = -1, $nums = false)
1070 {
1071         $dummy = $array;
1072         while ($primary_key < count($a_sort)) {
1073                 foreach ($dummy[$a_sort[$primary_key]] as $key => $value) {
1074                         foreach ($dummy[$a_sort[$primary_key]] as $key2 => $value2) {
1075                                 $match = false;
1076                                 if (!$nums) {
1077                                         // Sort byte-by-byte (also numbers will be interpreted as chars! E.g.: "9" > "10")
1078                                         if (($key != $key2) && (strcmp(strtolower($dummy[$a_sort[$primary_key]][$key]), strtolower($dummy[$a_sort[$primary_key]][$key2])) == $order)) $match = true;
1079                                 } elseif ($key != $key2) {
1080                                         // Sort numbers (E.g.: 9 < 10)
1081                                         if (($dummy[$a_sort[$primary_key]][$key] < $dummy[$a_sort[$primary_key]][$key2]) && ($order == -1)) $match = true;
1082                                         if (($dummy[$a_sort[$primary_key]][$key] > $dummy[$a_sort[$primary_key]][$key2]) && ($order == 1))  $match = true;
1083                                 }
1084
1085                                 if ($match) {
1086                                         // We have found two different values, so let's sort whole array
1087                                         foreach ($dummy as $sort_key => $sort_val) {
1088                                                 $t                       = $dummy[$sort_key][$key];
1089                                                 $dummy[$sort_key][$key]  = $dummy[$sort_key][$key2];
1090                                                 $dummy[$sort_key][$key2] = $t;
1091                                                 unset($t);
1092                                         } // END - foreach
1093                                 } // END - if
1094                         } // END - foreach
1095                 } // END - foreach
1096
1097                 // Count one up
1098                 $primary_key++;
1099         } // END - while
1100
1101         // Write back sorted array
1102         $array = $dummy;
1103 }
1104 //
1105 function ADD_SELECTION($type, $DEFAULT, $prefix="", $id="0") {
1106         global $MONTH_DESCR, $_CONFIG;
1107         $OUT = "";
1108
1109         if ($type == "yn") {
1110                 // This is a yes/no selection only!
1111                 if ($id > 0) $prefix .= "[".$id."]";
1112                 $OUT .= "    <SELECT name=\"".$prefix."\" class=\"register_select\" size=\"1\">\n";
1113         } else {
1114                 // Begin with regular selection box here
1115                 if (!empty($prefix)) $prefix .= "_";
1116                 $type2 = $type;
1117                 if ($id > 0) $type2 .= "[".$id."]";
1118                 $OUT .= "    <SELECT name=\"".strtolower($prefix.$type2)."\" class=\"register_select\" size=\"1\">\n";
1119         }
1120
1121         switch ($type) {
1122         case "day": // Day
1123                 for ($idx = 1; $idx < 32; $idx++) {
1124                         $OUT .= "<OPTION value=\"".$idx."\"";
1125                         if ($DEFAULT == $idx) $OUT .= " selected=\"selected\"";
1126                         $OUT .= ">".$idx."</OPTION>\n";
1127                 } // END - for
1128                 break;
1129
1130         case "month": // Month
1131                 foreach ($MONTH_DESCR as $month => $descr) {
1132                         $OUT .= "<OPTION value=\"".$month."\"";
1133                         if ($DEFAULT == $month) $OUT .= " selected=\"selected\"";
1134                         $OUT .= ">".$descr."</OPTION>\n";
1135                 } // END - for
1136                 break;
1137
1138         case "year": // Year
1139                 // Get current year
1140                 $YEAR = date('Y', time());
1141
1142                 // Check if the default value is larger than minimum and bigger than actual year
1143                 if (($DEFAULT > 1930) && ($DEFAULT >= $YEAR)) {
1144                         for ($idx = $YEAR; $idx < ($YEAR + 11); $idx++) {
1145                                 $OUT .= "<OPTION value=\"".$idx."\"";
1146                                 if ($DEFAULT == $idx) $OUT .= " selected=\"selected\"";
1147                                 $OUT .= ">".$idx."</OPTION>\n";
1148                         } // END - for
1149                 } elseif ($DEFAULT == -1) {
1150                         // Current year minus 1
1151                         for ($idx = 2003; $idx <= ($YEAR + 1); $idx++)
1152                         {
1153                                 $OUT .= "<OPTION value=\"".$idx."\">".$idx."</OPTION>\n";
1154                         }
1155                 } else {
1156                         // Get current year and subtract the configured minimum age
1157                         $OUT .= "<OPTION value=\"1929\">&lt;1930</OPTION>\n";
1158                         $YEAR = date('Y', time()) - $_CONFIG['min_age'];
1159                         for ($idx = 1930; $idx <= $YEAR; $idx++)
1160                         {
1161                                 $OUT .= "<OPTION value=\"".$idx."\"";
1162                                 if ($DEFAULT == $idx) $OUT .= " selected=\"selected\"";
1163                                 $OUT .= ">".$idx."</OPTION>\n";
1164                         }
1165                 }
1166                 break;
1167
1168         case "sec":
1169         case "min":
1170                 for ($idx = 0; $idx < 60; $idx+=5) {
1171                         if (strlen($idx) == 1) $idx = "0".$idx;
1172                         $OUT .= "<OPTION value=\"".$idx."\"";
1173                         if ($DEFAULT == $idx) $OUT .= " selected=\"selected\"";
1174                         $OUT .= ">".$idx."</OPTION>\n";
1175                 }
1176                 break;
1177
1178         case "hour":
1179                 for ($idx = 0; $idx < 24; $idx++) {
1180                         if (strlen($idx) == 1) $idx = "0".$idx;
1181                         $OUT .= "<OPTION value=\"".$idx."\"";
1182                         if ($DEFAULT == $idx) $OUT .= " selected=\"selected\"";
1183                         $OUT .= ">".$idx."</OPTION>\n";
1184                 }
1185                 break;
1186
1187         case "yn":
1188                 $OUT .= "<OPTION value=\"Y\"";
1189                 if ($DEFAULT == "Y") $OUT .= " selected=\"selected\"";
1190                 $OUT .= ">".YES."</OPTION>\n<OPTION value=\"N\"";
1191                 if ($DEFAULT == "N") $OUT .= " selected=\"selected\"";
1192                 $OUT .= ">".NO."</OPTION>\n";
1193                 break;
1194         }
1195         $OUT .= "    </SELECT>\n";
1196         return $OUT;
1197 }
1198 //
1199 function TRANSLATE_YESNO($yn)
1200 {
1201         switch ($yn)
1202         {
1203                 case 'Y': $yn = YES; break;
1204                 case 'N': $yn = NO; break;
1205                 default : $yn = "??? (".$yn.")"; break;
1206         }
1207         return $yn;
1208 }
1209 //
1210 // Deprecated : $length
1211 // Optional   : $DATA
1212 //
1213 function GEN_RANDOM_CODE($length, $code, $uid, $DATA="") {
1214         global $_CONFIG;
1215
1216         // Fix missing _MAX constant
1217         if (!defined('_MAX')) define('_MAX', 15235);
1218
1219         // Build server string
1220         $server = $_SERVER['PHP_SELF'].":".GET_USER_AGENT().":".getenv('SERVER_SOFTWARE').":".GET_REMOTE_ADDR().":".":".filemtime(PATH."inc/databases.php");
1221
1222         // Build key string
1223         $keys   = SITE_KEY.":".DATE_KEY;
1224         if (isset($_CONFIG['secret_key']))  $keys .= ":".$_CONFIG['secret_key'];
1225         if (isset($_CONFIG['file_hash']))   $keys .= ":".$_CONFIG['file_hash'];
1226         $keys .= ":".date("d-m-Y (l-F-T)", bigintval($_CONFIG['patch_ctime']));
1227         if (isset($_CONFIG['master_salt'])) $keys .= ":".$_CONFIG['master_salt'];
1228
1229         // Build string from misc data
1230         $data   = $code.":".$uid.":".$DATA;
1231
1232         // Add more additional data
1233         if (isSessionVariableSet('u_hash'))                     $data .= ":".get_session('u_hash');
1234         if (isset($GLOBALS['userid']))                          $data .= ":".$GLOBALS['userid'];
1235         if (isSessionVariableSet('lifetime'))           $data .= ":".get_session('lifetime');
1236         if (isSessionVariableSet('mxchange_theme'))     $data .= ":".get_session('mxchange_theme');
1237         if (isSessionVariableSet('mx_lang'))            $data .= ":".GET_LANGUAGE();
1238         if (isset($GLOBALS['refid']))                           $data .= ":".$GLOBALS['refid'];
1239
1240         // Calculate number for generating the code
1241         $a = $code + _ADD - 1;
1242
1243         if (isset($_CONFIG['master_hash'])) {
1244                 // Generate hash with master salt from modula of number with the prime number and other data
1245                 $saltedHash = generateHash(($a % _PRIME).":".$server.":".$keys.":".$data.":".date("d-m-Y (l-F-T)", time()).":".$a, $_CONFIG['master_salt']);
1246
1247                 // Create number from hash
1248                 $rcode = hexdec(substr($saltedHash, strlen($_CONFIG['master_salt']), 9)) / abs(_MAX - $a + sqrt(_ADD)) / pi();
1249         } else {
1250                 // Generate hash with "hash of site key" from modula of number with the prime number and other data
1251                 $saltedHash = generateHash(($a % _PRIME).":".$server.":".$keys.":".$data.":".date("d-m-Y (l-F-T)", time()).":".$a, substr(sha1(SITE_KEY), 0, 8));
1252
1253                 // Create number from hash
1254                 $rcode = hexdec(substr($saltedHash, 8, 9)) / abs(_MAX - $a + sqrt(_ADD)) / pi();
1255         }
1256
1257         // At least 10 numbers shall be secure enought!
1258         $len = $_CONFIG['code_length'];
1259         if ($len == 0) $len = $length;
1260         if ($len == 0) $len = 10;
1261
1262         // Cut off requested counts of number
1263         $return = substr(str_replace('.', "", $rcode), 0, $len);
1264
1265         // Done building code
1266         return $return;
1267 }
1268 // Does only allow numbers
1269 function bigintval($num, $castValue = true) {
1270         // Filter all numbers out
1271         $ret = preg_replace("/[^0123456789]/", "", $num);
1272
1273         // Shall we cast?
1274         if ($castValue) $ret = (double)$ret;
1275
1276         // Has the whole value changed?
1277         if ("".$ret."" != "".$num."") {
1278                 // Log the values
1279                 print("<pre>");
1280                 debug_print_backtrace();
1281                 die("</pre>");
1282                 DEBUG_LOG(__FUNCTION__, __LINE__, " num={$num},ret={$ret}");
1283         } // END - if
1284
1285         // Return result
1286         return $ret;
1287 }
1288 // Insert the code in $img_code into jpeg or PNG image
1289 function GENERATE_IMAGE($img_code, $header=true) {
1290         global $_CONFIG;
1291
1292         if ((strlen($img_code) > 6) || (empty($img_code)) || ($_CONFIG['code_length'] == 0)) {
1293                 // Stop execution of function here because of over-sized code length
1294                 return;
1295         } elseif (!$header) {
1296                 // Return in an HTML code code
1297                 return "<IMG src=\"".URL."/img.php?code=".$img_code."\">\n";
1298         }
1299
1300         // Load image
1301         $img = sprintf("%s/theme/%s/images/code_bg.%s", PATH, GET_CURR_THEME(), $_CONFIG['img_type']);
1302         if (FILE_READABLE($img)) {
1303                 // Switch image type
1304                 switch ($_CONFIG['img_type'])
1305                 {
1306                 case "jpg":
1307                         // Okay, load image and hide all errors
1308                         $image = @imagecreatefromjpeg($img);
1309                         break;
1310
1311                 case "png":
1312                         // Okay, load image and hide all errors
1313                         $image = @imagecreatefrompng($img);
1314                         break;
1315                 }
1316         } else {
1317                 // Exit function here
1318                 return;
1319         }
1320
1321         // Generate text color (red/green/blue; 0 = dark, 255 = bright)
1322         $text_color = imagecolorallocate($image, 0, 0, 0);
1323
1324         // Insert code into image
1325         imagestring($image, 5, 14, 2, $img_code, $text_color);
1326
1327         // Return to browser
1328         header ("Content-Type: image/".$_CONFIG['img_type']);
1329
1330         // Output image with matching image factory
1331         switch ($_CONFIG['img_type']) {
1332                 case "jpg": imagejpeg($image); break;
1333                 case "png": imagepng($image);  break;
1334         }
1335
1336         // Remove image from memory
1337         imagedestroy($image);
1338 }
1339 // Create selection box or array of splitted timestamp
1340 function CREATE_TIME_SELECTIONS($timestamp, $prefix="", $display="", $align="center", $return_array=false) {
1341         global $_CONFIG;
1342
1343         // Calculate 2-seconds timestamp
1344         $stamp = round($timestamp);
1345
1346         // Do we have a leap year?
1347         $SWITCH = 0;
1348         $TEST = date('Y', time()) / 4;
1349         $M1 = date("m", time());
1350         $M2 = date("m", (time() + $stamp));
1351
1352         // If so and if current time is before 02/29 and estimated time is after 02/29 then add 86400 seconds (one day)
1353         if ((floor($TEST) == $TEST) && ($M1 == "02") && ($M2 > "02"))  $SWITCH = $_CONFIG['one_day'];
1354
1355         // First of all years...
1356         $Y = abs(floor($stamp / (31536000 + $SWITCH)));
1357         // Next months...
1358         $M = abs(floor($stamp / 2628000 - $Y * 12));
1359         // Next weeks
1360         $W = abs(floor($stamp / 604800 - $Y * ((365 + $SWITCH / $_CONFIG['one_day']) / 7) - ($M / 12 * (365 + $SWITCH / $_CONFIG['one_day']) / 7)));
1361         // Next days...
1362         $D = abs(floor($stamp / 86400 - $Y * (365 + $SWITCH / $_CONFIG['one_day']) - ($M / 12 * (365 + $SWITCH / $_CONFIG['one_day'])) - $W * 7));
1363         // Next hours...
1364         $h = abs(floor($stamp / 3600 - $Y * (365 + $SWITCH / $_CONFIG['one_day']) * 24 - ($M / 12 * (365 + $SWITCH / $_CONFIG['one_day']) * 24) - $W * 7 * 24 - $D * 24));
1365         // Next minutes..
1366         $m = abs(floor($stamp / 60 - $Y * (365 + $SWITCH / $_CONFIG['one_day']) * 24 * 60 - ($M / 12 * (365 + $SWITCH / $_CONFIG['one_day']) * 24 * 60) - $W * 7 * 24 * 60 - $D * 24 * 60 - $h * 60));
1367         // And at last seconds...
1368         $s = abs(floor($stamp - $Y * (365 + $SWITCH / $_CONFIG['one_day']) * 24 * 3600 - ($M / 12 * (365 + $SWITCH / $_CONFIG['one_day']) * 24 * 3600) - $W * 7 * 24 * 3600 - $D * 24 * 3600 - $h * 3600 - $m * 60));
1369
1370         // Is seconds zero and time is < 60 seconds?
1371         if (($s == 0) && ($stamp < 60)) {
1372                 // Fix seconds
1373                 $s = round($timestamp);
1374         } // END - if
1375
1376         //
1377         // Now we convert them in seconds...
1378         //
1379         if ($return_array) {
1380                 // Just put all data in an array for later use
1381                 $OUT = array(
1382                         'YEARS'   => $Y,
1383                         'MONTHS'  => $M,
1384                         'WEEKS'   => $W,
1385                         'DAYS'    => $D,
1386                         'HOURS'   => $h,
1387                         'MINUTES' => $m,
1388                         'SECONDS' => $s
1389                 );
1390         } else {
1391                 // Generate table
1392                 $OUT  = "<DIV align=\"".$align."\">\n";
1393                 $OUT .= "<TABLE border=\"0\" cellspacing=\"0\" cellpadding=\"0\" class=\"admin_table dashed\">\n";
1394                 $OUT .= "<TR>\n";
1395
1396                 if (ereg('Y', $display) || (empty($display))) {
1397                         $OUT .= "  <TD align=\"center\" class=\"admin_title bottom\"><STRONG class=\"tiny\">"._YEARS."</STRONG></TD>\n";
1398                 }
1399
1400                 if (ereg("M", $display) || (empty($display))) {
1401                         $OUT .= "  <TD align=\"center\" class=\"admin_title bottom\"><STRONG class=\"tiny\">"._MONTHS."</STRONG></TD>\n";
1402                 }
1403
1404                 if (ereg("W", $display) || (empty($display))) {
1405                         $OUT .= "  <TD align=\"center\" class=\"admin_title bottom\"><STRONG class=\"tiny\">"._WEEKS."</STRONG></TD>\n";
1406                 }
1407
1408                 if (ereg("D", $display) || (empty($display))) {
1409                         $OUT .= "  <TD align=\"center\" class=\"admin_title bottom\"><STRONG class=\"tiny\">"._DAYS."</STRONG></TD>\n";
1410                 }
1411
1412                 if (ereg("h", $display) || (empty($display))) {
1413                         $OUT .= "  <TD align=\"center\" class=\"admin_title bottom\"><STRONG class=\"tiny\">"._HOURS."</STRONG></TD>\n";
1414                 }
1415
1416                 if (ereg("m", $display) || (empty($display))) {
1417                         $OUT .= "  <TD align=\"center\" class=\"admin_title bottom\"><STRONG class=\"tiny\">"._MINUTES."</STRONG></TD>\n";
1418                 }
1419
1420                 if (ereg("s", $display) || (empty($display))) {
1421                         $OUT .= "  <TD align=\"center\" class=\"admin_title bottom\"><STRONG class=\"tiny\">"._SECONDS."</STRONG></TD>\n";
1422                 }
1423
1424                 $OUT .= "</TR>\n";
1425                 $OUT .= "<TR>\n";
1426
1427                 if (ereg('Y', $display) || (empty($display))) {
1428                         // Generate year selection
1429                         $OUT .= "  <TD align=\"center\"><SELECT class=\"mini_select\" name=\"".$prefix."_ye\" size=\"1\">\n";
1430                         for ($idx = 0; $idx <= 10; $idx++) {
1431                                 $OUT .= "    <OPTION class=\"mini_select\" value=\"".$idx."\"";
1432                                 if ($idx == $Y) $OUT .= " selected default";
1433                                 $OUT .= ">".$idx."</OPTION>\n";
1434                         }
1435                         $OUT .= "  </SELECT></TD>\n";
1436                 } else {
1437                         $OUT .= "<INPUT type=\"hidden\" name=\"".$prefix."_ye\" value=\"0\">\n";
1438                 }
1439
1440                 if (ereg("M", $display) || (empty($display))) {
1441                         // Generate month selection
1442                         $OUT .= "  <TD align=\"center\"><SELECT class=\"mini_select\" name=\"".$prefix."_mo\" size=\"1\">\n";
1443                         for ($idx = 0; $idx <= 11; $idx++)
1444                         {
1445                                         $OUT .= "  <OPTION class=\"mini_select\" value=\"".$idx."\"";
1446                                 if ($idx == $M) $OUT .= " selected default";
1447                                 $OUT .= ">".$idx."</OPTION>\n";
1448                         }
1449                         $OUT .= "  </SELECT></TD>\n";
1450                 } else {
1451                         $OUT .= "<INPUT type=\"hidden\" name=\"".$prefix."_mo\" value=\"0\">\n";
1452                 }
1453
1454                 if (ereg("W", $display) || (empty($display))) {
1455                         // Generate week selection
1456                         $OUT .= "  <TD align=\"center\"><SELECT class=\"mini_select\" name=\"".$prefix."_we\" size=\"1\">\n";
1457                         for ($idx = 0; $idx <= 4; $idx++) {
1458                                 $OUT .= "  <OPTION class=\"mini_select\" value=\"".$idx."\"";
1459                                 if ($idx == $W) $OUT .= " selected default";
1460                                 $OUT .= ">".$idx."</OPTION>\n";
1461                         }
1462                         $OUT .= "  </SELECT></TD>\n";
1463                 } else {
1464                         $OUT .= "<INPUT type=\"hidden\" name=\"".$prefix."_we\" value=\"0\">\n";
1465                 }
1466
1467                 if (ereg("D", $display) || (empty($display))) {
1468                         // Generate day selection
1469                         $OUT .= "  <TD align=\"center\"><SELECT class=\"mini_select\" name=\"".$prefix."_da\" size=\"1\">\n";
1470                         for ($idx = 0; $idx <= 31; $idx++) {
1471                                 $OUT .= "  <OPTION class=\"mini_select\" value=\"".$idx."\"";
1472                                 if ($idx == $D) $OUT .= " selected default";
1473                                 $OUT .= ">".$idx."</OPTION>\n";
1474                         }
1475                         $OUT .= "  </SELECT></TD>\n";
1476                 } else {
1477                         $OUT .= "<INPUT type=\"hidden\" name=\"".$prefix."_da\" value=\"0\">\n";
1478                 }
1479
1480                 if (ereg("h", $display) || (empty($display))) {
1481                         // Generate hour selection
1482                         $OUT .= "  <TD align=\"center\"><SELECT class=\"mini_select\" name=\"".$prefix."_ho\" size=\"1\">\n";
1483                         for ($idx = 0; $idx <= 23; $idx++)      {
1484                                 $OUT .= "  <OPTION class=\"mini_select\" value=\"".$idx."\"";
1485                                 if ($idx == $h) $OUT .= " selected default";
1486                                 $OUT .= ">".$idx."</OPTION>\n";
1487                         }
1488                         $OUT .= "  </SELECT></TD>\n";
1489                 } else {
1490                         $OUT .= "<INPUT type=\"hidden\" name=\"".$prefix."_ho\" value=\"0\">\n";
1491                 }
1492
1493                 if (ereg("m", $display) || (empty($display))) {
1494                         // Generate minute selection
1495                         $OUT .= "  <TD align=\"center\"><SELECT class=\"mini_select\" name=\"".$prefix."_mi\" size=\"1\">\n";
1496                         for ($idx = 0; $idx <= 59; $idx++) {
1497                                 $OUT .= "  <OPTION class=\"mini_select\" value=\"".$idx."\"";
1498                                 if ($idx == $m) $OUT .= " selected default";
1499                                 $OUT .= ">".$idx."</OPTION>\n";
1500                         }
1501                         $OUT .= "  </SELECT></TD>\n";
1502                 } else {
1503                         $OUT .= "<INPUT type=\"hidden\" name=\"".$prefix."_mi\" value=\"0\">\n";
1504                 }
1505
1506                 if (ereg("s", $display) || (empty($display))) {
1507                         // Generate second selection
1508                         $OUT .= "  <TD align=\"center\"><SELECT class=\"mini_select\" name=\"".$prefix."_se\" size=\"1\">\n";
1509                         for ($idx = 0; $idx <= 45; $idx += 15) {
1510                                 $OUT .= "  <OPTION class=\"mini_select\" value=\"".$idx."\"";
1511                                 if ($idx == $s) $OUT .= " selected default";
1512                                 $OUT .= ">".$idx."</OPTION>\n";
1513                         }
1514                         $OUT .= "  </SELECT></TD>\n";
1515                 } else {
1516                         $OUT .= "<INPUT type=\"hidden\" name=\"".$prefix."_se\" value=\"0\">\n";
1517                 }
1518                 $OUT .= "</TR>\n";
1519                 $OUT .= "</TABLE>\n";
1520                 $OUT .= "</DIV>\n";
1521                 // Return generated HTML code
1522         }
1523         return $OUT;
1524 }
1525 //
1526 function CREATE_TIMESTAMP_FROM_SELECTIONS($prefix, $POST) {
1527         global $_CONFIG;
1528         $ret = 0;
1529
1530         // Do we have a leap year?
1531         $SWITCH = 0;
1532         $TEST = date('Y', time()) / 4;
1533         $M1   = date("m", time());
1534         // If so and if current time is before 02/29 and estimated time is after 02/29 then add 86400 seconds (one day)
1535         if ((floor($TEST) == $TEST) && ($M1 == "02") && ($POST[$prefix."_mo"] > "02"))  $SWITCH = $_CONFIG['one_day'];
1536         // First add years...
1537         $ret += $POST[$prefix."_ye"] * (31536000 + $SWITCH);
1538         // Next months...
1539         $ret += $POST[$prefix."_mo"] * 2628000;
1540         // Next weeks
1541         $ret += $POST[$prefix."_we"] * 604800;
1542         // Next days...
1543         $ret += $POST[$prefix."_da"] * 86400;
1544         // Next hours...
1545         $ret += $POST[$prefix."_ho"] * 3600;
1546         // Next minutes..
1547         $ret += $POST[$prefix."_mi"] * 60;
1548         // And at last seconds...
1549         $ret += $POST[$prefix."_se"];
1550         // Return calculated value
1551         return $ret;
1552 }
1553 // Sends out mail to all administrators
1554 // IMPORTANT: Please use SEND_ADMIN_NOTIFCATION() for now!
1555 function SEND_ADMIN_EMAILS_PRO($subj, $template, $content, $UID) {
1556         // Trim template name
1557         $template = trim($template);
1558
1559         // Load email template
1560         $msg = LOAD_EMAIL_TEMPLATE($template, $content, $UID);
1561
1562         if (EXT_VERSION_IS_OLDER("admins", "0.4.0")) {
1563                 // Older version detected!
1564                 return SEND_ADMIN_EMAILS($subj, $msg);
1565         } // END - if
1566
1567         // Check which admin shall receive this mail
1568         $result = SQL_QUERY_ESC("SELECT DISTINCT admin_id FROM "._MYSQL_PREFIX."_admins_mails WHERE mail_template='%s' ORDER BY admin_id",
1569          array($template), __FILE__, __LINE__);
1570         if (SQL_NUMROWS($result) == 0) {
1571                 // Create new entry (to all admins)
1572                 $result = SQL_QUERY_ESC("INSERT INTO "._MYSQL_PREFIX."_admins_mails (admin_id, mail_template) VALUES (0, '%s')",
1573                  array($template), __FILE__, __LINE__);
1574         } else {
1575                 // Load admin IDs...
1576                 $aids = array();
1577                 while(list($aid) = SQL_FETCHROW($result)) {
1578                         $aids[] = $aid;
1579                 }
1580
1581                 // Free memory
1582                 SQL_FREERESULT($result);
1583
1584                 // "implode" IDs and query string
1585                 $aid = implode(",", $aids);
1586                 if ($aid == "-1") {
1587                         // Add line to userlog
1588                         USERLOG_ADD_LINE($subj, $msg, $UID);
1589                         return;
1590                 } elseif ($aid == "0") {
1591                         // Select all email adresses
1592                         $result = SQL_QUERY("SELECT email FROM "._MYSQL_PREFIX."_admins ORDER BY id", __FILE__, __LINE__);
1593                 } else {
1594                         // If Admin-ID is not "to-all" select
1595                         $result = SQL_QUERY_ESC("SELECT email FROM "._MYSQL_PREFIX."_admins WHERE id IN (%s) ORDER BY id", array($aid), __FILE__, __LINE__);
1596                 }
1597         }
1598
1599         // Load email addresses and send away
1600         while (list($email) = SQL_FETCHROW($result)) {
1601                 SEND_EMAIL($email, $subj, $msg);
1602         }
1603
1604         // Free memory
1605         SQL_FREERESULT($result);
1606 }
1607 //
1608 function CREATE_FANCY_TIME($stamp) {
1609         // Get data array with years/months/weeks/days/...
1610         $data = CREATE_TIME_SELECTIONS($stamp, "", "", "", true);
1611         $ret = "";
1612         foreach($data as $k => $v) {
1613                 if ($v > 0) {
1614                         // Value is greater than 0 "eval" data to return string
1615                         $eval = "\$ret .= \", \".\$v.\" \"._".strtoupper($k).";";
1616                         eval($eval);
1617                         break;
1618                 } // END - if
1619         } // END - foreach
1620
1621         // Do we have something there?
1622         if (strlen($ret) > 0) {
1623                 // Remove leading commata and space
1624                 $ret = substr($ret, 2);
1625         } else {
1626                 // Zero seconds
1627                 $ret = "0 "._SECONDS;
1628         }
1629
1630         // Return fancy time string
1631         return $ret;
1632 }
1633 //
1634 function ADD_EMAIL_NAV($PAGES, $offset, $show_form, $colspan, $return=false) {
1635         $SEP = ""; $TOP = "";
1636         if (!$show_form) {
1637                 $TOP = " top2";
1638                 $SEP = "<TR><TD colspan=\"".$colspan."\" class=\"seperator\">&nbsp;</TD></TR>";
1639         }
1640
1641         $NAV = "";
1642         for ($page = 1; $page <= $PAGES; $page++) {
1643                 // Is the page currently selected or shall we generate a link to it?
1644                 if (($page == $_GET['page']) || ((empty($_GET['page'])) && ($page == "1"))) {
1645                         // Is currently selected, so only highlight it
1646                         $NAV .= "<STRONG>-";
1647                 } else {
1648                         // Open anchor tag and add base URL
1649                         $NAV .= "<A href=\"".URL."/modules.php?module=admin&amp;what=".$GLOBALS['what']."&amp;page=".$page."&amp;offset=".$offset;
1650
1651                         // Add userid when we shall show all mails from a single member
1652                         if ((isset($_GET['u_id'])) && (bigintval($_GET['u_id']) > 0)) $NAV .= "&amp;u_id=".bigintval($_GET['u_id']);
1653
1654                         // Close open anchor tag
1655                         $NAV .= "\">";
1656                 }
1657                 $NAV .= $page;
1658                 if (($page == $_GET['page']) || ((empty($_GET['page'])) && ($page == "1"))) {
1659                         // Is currently selected, so only highlight it
1660                         $NAV .= "-</STRONG>";
1661                 } else {
1662                         // Close anchor tag
1663                         $NAV .= "</A>";
1664                 }
1665
1666                 // Add seperator if we have not yet reached total pages
1667                 if ($page < $PAGES) $NAV .= "&nbsp;|&nbsp;";
1668         }
1669
1670         // Define constants only once
1671         if (!defined('__NAV_OUTPUT')) {
1672                 define('__NAV_OUTPUT' , $NAV);
1673                 define('__NAV_COLSPAN', $colspan);
1674                 define('__NAV_TOP'    , $TOP);
1675                 define('__NAV_SEP'    , $SEP);
1676         }
1677
1678         // Load navigation template
1679         $OUT = LOAD_TEMPLATE("admin_email_nav_row", true);
1680
1681         if ($return) {
1682                 // Return generated HTML-Code
1683                 return $OUT;
1684         } else {
1685                 // Output HTML-Code
1686                 OUTPUT_HTML($OUT);
1687         }
1688 }
1689
1690 // Extract host from script name
1691 function EXTRACT_HOST (&$script) {
1692         // Use default SERVER_URL by default... ;) So?
1693         $url = SERVER_URL;
1694
1695         // Is this URL valid?
1696         if (substr($script, 0, 7) == "http://") {
1697                 // Use the hostname from script URL as new hostname
1698                 $url = substr($script, 7);
1699                 $extract = explode("/", $url);
1700                 $url = $extract[0];
1701                 // Done extracting the URL :)
1702         } // END - if
1703
1704         // Extract host name
1705         $host = str_replace("http://", "", $url);
1706         if (ereg("/", $host)) $host = substr($host, 0, strpos($host, "/"));
1707
1708         // Generate relative URL
1709         //* DEBUG: */ print("SCRIPT=".$script."<br />\n");
1710         if (substr(strtolower($script), 0, 7) == "http://") {
1711                 // But only if http:// is in front!
1712                 $script = substr($script, (strlen($url) + 7));
1713         } elseif (substr(strtolower($script), 0, 8) == "https://") {
1714                 // Does this work?!
1715                 $script = substr($script, (strlen($url) + 8));
1716         }
1717
1718         //* DEBUG: */ print("SCRIPT=".$script."<br />\n");
1719         if (substr($script, 0, 1) == "/") $script = substr($script, 1);
1720
1721         // Return host name
1722         return $host;
1723 }
1724
1725 // Send a GET request
1726 function GET_URL ($script) {
1727         // Compile the script name
1728         $script = COMPILE_CODE($script);
1729
1730         // Extract host name from script
1731         $host = EXTRACT_HOST($script);
1732
1733         // Generate GET request header
1734         $request  = "GET /" . trim($script) . " HTTP/1.1\r\n";
1735         $request .= "Host: " . $host . "\r\n";
1736         $request .= "Referer: " . URL . "/admin.php\r\n";
1737         $request .= "User-Agent: " . TITLE . "/" . FULL_VERSION . "\r\n";
1738         $request .= "Content-Type: text/plain\r\n";
1739         $request .= "Cache-Control: no-cache\r\n";
1740         $request .= "Connection: Close\r\n\r\n";
1741
1742         // Send the raw request
1743         $response = SEND_RAW_REQUEST($host, $request);
1744
1745         // Return the result to the caller function
1746         return $response;
1747 }
1748
1749 // Send a POST request
1750 function POST_URL ($script, $postData) {
1751         // Is postData an array?
1752         if (!is_array($postData)) {
1753                 // Abort here
1754                 DEBUG_LOG(__FUNCTION__, __LINE__, sprintf("postData is not an array. Type: %s", gettype($postData)));
1755                 return array("", "", "");
1756         } // END - if
1757
1758         // Compile the script name
1759         $script = COMPILE_CODE($script);
1760
1761         // Extract host name from script
1762         $host = EXTRACT_HOST($script);
1763
1764         // Construct request
1765         $data = http_build_query($postData, '','&');
1766
1767         // Generate POST request header
1768         $request  = "POST /" . trim($script) . " HTTP/1.1\r\n";
1769         $request .= "Host: " . $host . "\r\n";
1770         $request .= "Referer: " . URL . "/admin.php\r\n";
1771         $request .= "User-Agent: " . TITLE . "/" . FULL_VERSION . "\r\n";
1772         $request .= "Content-type: application/x-www-form-urlencoded\r\n";
1773         $request .= "Content-length: " . strlen($data) . "\r\n";
1774         $request .= "Cache-Control: no-cache\r\n";
1775         $request .= "Connection: Close\r\n\r\n";
1776         $request .= $data;
1777
1778         // Send the raw request
1779         $response = SEND_RAW_REQUEST($host, $request);
1780
1781         // Return the result to the caller function
1782         return $response;
1783 }
1784
1785 // Sends a raw request to another host
1786 function SEND_RAW_REQUEST ($host, $request) {
1787         global $_CONFIG;
1788
1789         // Initialize array
1790         $response = array("", "", "");
1791
1792         // Default is not to use proxy
1793         $useProxy = false;
1794
1795         // Are proxy settins set?
1796         if ((!empty($_CONFIG['proxy_host'])) && ($_CONFIG['proxy_port'] > 0)) {
1797                 // Then use it
1798                 $useProxy = true;
1799         } // END - if
1800
1801         // Open connection
1802         //* DEBUG: */ die("SCRIPT=".$script."<br />\n");
1803         if ($useProxy) {
1804                 $fp = @fsockopen(COMPILE_CODE($_CONFIG['proxy_host']), $_CONFIG['proxy_port'], $errno, $errdesc, 30);
1805         } else {
1806                 $fp = @fsockopen($host, 80, $errno, $errdesc, 30);
1807         }
1808
1809         // Is there a link?
1810         if (!is_resource($fp)) {
1811                 // Failed!
1812                 return $response;
1813         } // END - if
1814
1815         // Do we use proxy?
1816         if ($useProxy) {
1817                 // Generate CONNECT request header
1818                 $proxyTunnel  = "CONNECT ".$host.":80 HTTP/1.1\r\n";
1819                 $proxyTunnel .= "Host: ".$host."\r\n";
1820
1821                 // Use login data to proxy? (username at least!)
1822                 if (!empty($_CONFIG['proxy_username'])) {
1823                         // Add it as well
1824                         $encodedAuth = base64_encode(COMPILE_CODE($_CONFIG['proxy_username']).":".COMPILE_CODE($_CONFIG['proxy_password']));
1825                         $proxyTunnel .= "Proxy-Authorization: Basic ".$encodedAuth."\r\n";
1826                 } // END - if
1827
1828                 // Add last new-line
1829                 $proxyTunnel .= "\r\n";
1830                 //* DEBUG: */ print("<strong>proxyTunnel=</strong><pre>".$proxyTunnel."</pre>");
1831
1832                 // Write request
1833                 fputs($fp, $proxyTunnel);
1834
1835                 // Got response?
1836                 if (feof($fp)) {
1837                         // No response received
1838                         return $response;
1839                 } // END - if
1840
1841                 // Read the first line
1842                 $resp = trim(fgets($fp, 10240));
1843                 $respArray = explode(" ", $resp);
1844                 if ((strtolower($respArray[0]) !== "http/1.0") || ($respArray[1] != "200")) {
1845                         // Invalid response!
1846                         return $response;
1847                 } // END - if
1848         } // END - if
1849
1850         // Write request
1851         fputs($fp, $request);
1852
1853         // Read response
1854         while(!feof($fp)) {
1855                 $response[] = trim(fgets($fp, 1024));
1856         } // END - while
1857
1858         // Close socket
1859         fclose($fp);
1860
1861         // Skip first empty lines
1862         $resp = $response;
1863         foreach ($resp as $idx => $line) {
1864                 // Trim space away
1865                 $line = trim($line);
1866
1867                 // Is this line empty?
1868                 if (empty($line)) {
1869                         // Then remove it
1870                         array_shift($response);
1871                 } else {
1872                         // Abort on first non-empty line
1873                         break;
1874                 }
1875         } // END - foreach
1876
1877         //* DEBUG: */ print("<strong>Response:</strong><pre>".print_r($response, true)."</pre>");
1878
1879         // Proxy agent found?
1880         if ((substr(strtolower($response[0]), 0, 11) == "proxy-agent") && ($useProxy)) {
1881                 // Proxy header detected, so remove two lines
1882                 array_shift($response);
1883                 array_shift($response);
1884         } // END - if
1885
1886         // Was the request successfull?
1887         if ((!eregi("200 OK", $response[0])) || (empty($response[0]))) {
1888                 // Not found / access forbidden
1889                 $response = array("", "", "");
1890         } // END - if
1891
1892         // Return response
1893         return $response;
1894 }
1895 // Taken from www.php.net eregi() user comments
1896 function VALIDATE_EMAIL($email) {
1897         // Compile email
1898         $email = COMPILE_CODE($email);
1899
1900         // Check first part of email address
1901         $first = "[-a-z0-9!#$%&\'*+/=?^_<{|}~]+(\.[-a-zA-Z0-9!#$%&\'*+/=?^_<{|}~]+)*";
1902
1903         //  Check domain
1904         $domain = "[a-z0-9-]+(\.[a-z0-9-]{2,5})+";
1905
1906         // Generate pattern
1907         $regex = "^".$first."@".$domain."$";
1908
1909         // Return check result
1910         return eregi($regex, $email);
1911 }
1912 // Function taken from user comments on www.php.net / function eregi()
1913 function VALIDATE_URL ($URL, $compile=true) {
1914         // Trim URL a little
1915         $URL = trim(urldecode($URL));
1916         //* DEBUG: */ echo $URL."<br />";
1917
1918         // Compile some chars out...
1919         if ($compile) $URL = COMPILE_CODE($URL, false, false, false);
1920         //* DEBUG: */ echo $URL."<br />";
1921
1922         // Check for the extension filter
1923         if (EXT_IS_ACTIVE("filter")) {
1924                 // Use the extension's filter set
1925                 return FILTER_VALIDATE_URL($URL, false);
1926         }
1927
1928         // If not installed, perform a simple test. Just make it sure there is always a http:// or
1929         // https:// in front of the URLs
1930         return (((substr($URL, 0, 7) == "http://") || (substr($URL, 0, 8) == "https://")) && (strlen($URL) >= 12));
1931 }
1932 //
1933 function MEMBER_ACTION_LINKS($uid, $status="") {
1934         // Define all main targets
1935         $TARGETS = array("del_user", "edit_user", "lock_user", "add_points", "sub_points");
1936
1937         // Begin of navigation links
1938         $eval = "\$OUT = \"[&nbsp;";
1939
1940         foreach ($TARGETS as $tar) {
1941                 $eval .= "<SPAN class=\\\"admin_user_link\\\"><A href=\\\"".URL."/modules.php?module=admin&amp;what=".$tar."&amp;u_id=".$uid."\\\" title=\\\"\".ADMIN_LINK_";
1942                 //* DEBUG: */ echo "*".$tar."/".$status."*<br />\n";
1943                 if (($tar == "lock_user") && ($status == "LOCKED")) {
1944                         // Locked accounts shall be unlocked
1945                         $eval .= "UNLOCK_USER";
1946                 } else {
1947                         // All other status is fine
1948                         $eval .= strtoupper($tar);
1949                 }
1950                 $eval .= "_TITLE.\"\\\">\".ADMIN_";
1951                 if (($tar == "lock_user") && ($status == "LOCKED")) {
1952                         // Locked accounts shall be unlocked
1953                         $eval .= "UNLOCK_USER";
1954                 } else {
1955                         // All other status is fine
1956                         $eval .= strtoupper($tar);
1957                 }
1958                 $eval .= ".\"</A></SPAN>&nbsp;|&nbsp;";
1959         }
1960
1961         // Finish navigation link
1962         $eval = substr($eval, 0, -7)."]\";";
1963         eval($eval);
1964
1965         // Return string
1966         return $OUT;
1967 }
1968 // Function for backward-compatiblity
1969 function ADD_CATEGORY_TABLE ($MODE, $return=false) {
1970         // Load it from the register extension
1971         return REGISTER_ADD_CATEGORY_TABLE ($MODE, $return);
1972 }
1973 // Generate an email link
1974 function CREATE_EMAIL_LINK($email, $table="admins") {
1975         // Default email link (INSECURE! Spammer can read this by harvester programs)
1976         $EMAIL = "mailto:".$email;
1977
1978         // Check for several extensions
1979         if ((EXT_IS_ACTIVE("admins")) && ($table == "admins")) {
1980                 // Create email link for contacting admin in guest area
1981                 $EMAIL = ADMINS_CREATE_EMAIL_LINK($email);
1982         } elseif ((EXT_IS_ACTIVE("user")) && (GET_EXT_VERSION("user") >= "0.3.3") && ($table == "user_data")) {
1983                 // Create email link for contacting a member within admin area (or later in other areas, too?)
1984                 $EMAIL = USER_CREATE_EMAIL_LINK($email);
1985         } elseif ((EXT_IS_ACTIVE("sponsor")) && ($table == "sponsor_data")) {
1986                 // Create email link to contact sponsor within admin area (or like the link above?)
1987                 $EMAIL = SPONSOR_CREATE_EMAIL_LINK($email);
1988         }
1989
1990         // Shall I close the link when there is no admin?
1991         if ((!IS_ADMIN()) && ($EMAIL == $email)) $EMAIL = "#"; // Closed!
1992
1993         // Return email link
1994         return $EMAIL;
1995 }
1996 // Generate a hash for extra-security for all passwords
1997 function generateHash ($plainText, $salt = "") {
1998         global $_CONFIG, $_SERVER;
1999
2000         // Is the required extension "sql_patches" there and a salt is not given?
2001         if (((EXT_VERSION_IS_OLDER("sql_patches", "0.3.6")) || (!EXT_IS_ACTIVE("sql_patches"))) && (empty($salt))) {
2002                 // Extension sql_patches is missing/outdated so we hash the plain text with MD5
2003                 return md5($plainText);
2004         } // END - if
2005
2006         // Do we miss an arry element here?
2007         if (!isset($_CONFIG['file_hash'])) {
2008                 // Stop here
2009                 print("Missing file_hash in ".__FUNCTION__.". Backtrace:<pre>");
2010                 debug_print_backtrace();
2011                 die("</pre>");
2012         } // END - if
2013
2014         // When the salt is empty build a new one, else use the first x configured characters as the salt
2015         if (empty($salt)) {
2016                 // Build server string
2017                 $server = $_SERVER['PHP_SELF'].":".GET_USER_AGENT().":".getenv('SERVER_SOFTWARE').":".GET_REMOTE_ADDR().":".":".filemtime(PATH."inc/databases.php");
2018
2019                 // Build key string
2020                 $keys   = SITE_KEY.":".DATE_KEY.":".$_CONFIG['secret_key'].":".$_CONFIG['file_hash'].":".date("d-m-Y (l-F-T)", bigintval($_CONFIG['patch_ctime'])).":".$_CONFIG['master_salt'];
2021
2022                 // Additional data
2023                 $data = $plainText.":".uniqid(mt_rand(), true).":".time();
2024
2025                 // Calculate number for generating the code
2026                 $a = time() + _ADD - 1;
2027
2028                 // Generate SHA1 sum from modula of number and the prime number
2029                 $sha1 = sha1(($a % _PRIME).$server.":".$keys.":".$data.":".date("d-m-Y (l-F-T)", time()).":".$a);
2030                 //* DEBUG: */ echo "SHA1=".$sha1." (".strlen($sha1).")<br />";
2031                 $sha1 = scrambleString($sha1);
2032                 //* DEBUG: */ echo "Scrambled=".$sha1." (".strlen($sha1).")<br />";
2033                 //* DEBUG: */ $sha1b = descrambleString($sha1);
2034                 //* DEBUG: */ echo "Descrambled=".$sha1b." (".strlen($sha1b).")<br />";
2035
2036                 // Generate the password salt string
2037                 $salt = substr($sha1, 0, $_CONFIG['salt_length']);
2038                 //* DEBUG: */ echo $salt." (".strlen($salt).")<br />";
2039         } else {
2040                 // Use given salt
2041                 $salt = substr($salt, 0, $_CONFIG['salt_length']);
2042                 //* DEBUG: */ echo "GIVEN={$salt}<br />\n";
2043         }
2044
2045         // Return hash
2046         return $salt.sha1($salt.$plainText);
2047 }
2048 //
2049 function scrambleString($str) {
2050         global $_CONFIG;
2051
2052         // Init
2053         $scrambled = "";
2054
2055         // Final check, in case of failture it will return unscrambled string
2056         if (strlen($str) > 40) {
2057                 // The string is to long
2058                 return $str;
2059         } elseif (strlen($str) == 40) {
2060                 // From database
2061                 $scrambleNums = explode(":", $_CONFIG['pass_scramble']);
2062         } else {
2063                 // Generate new numbers
2064                 $scrambleNums = explode(":", genScrambleString(strlen($str)));
2065         }
2066
2067         // Scramble string here
2068         //* DEBUG: */ echo "***Original=".$str."***<br />";
2069         for ($idx = 0; $idx < strlen($str); $idx++) {
2070                 // Get char on scrambled position
2071                 $char = substr($str, $scrambleNums[$idx], 1);
2072
2073                 // Add it to final output string
2074                 $scrambled .= $char;
2075         } // END - for
2076
2077         // Return scrambled string
2078         //* DEBUG: */ echo "***Scrambled=".$scrambled."***<br />";
2079         return $scrambled;
2080 }
2081 //
2082 function descrambleString($str) {
2083         global $_CONFIG;
2084         // Scramble only 40 chars long strings
2085         if (strlen($str) != 40) return $str;
2086
2087         // Load numbers from config
2088         $scrambleNums = explode(":", $_CONFIG['pass_scramble']);
2089
2090         // Validate numbers
2091         if (count($scrambleNums) != 40) return $str;
2092
2093         // Begin descrambling
2094         $orig = str_repeat(" ", 40);
2095         //* DEBUG: */ echo "+++Scrambled=".$str."+++<br />";
2096         for ($idx = 0; $idx < 40; $idx++) {
2097                 $char = substr($str, $idx, 1);
2098                 $orig = substr_replace($orig, $char, $scrambleNums[$idx], 1);
2099         } // END - for
2100
2101         // Return scrambled string
2102         //* DEBUG: */ echo "+++Original=".$orig."+++<br />";
2103         return $orig;
2104 }
2105 //
2106 function genScrambleString($len) {
2107         // Prepare randomizer and array for the numbers
2108         mt_srand((double) microtime() * 1000000);
2109         $scrambleNumbers = array();
2110
2111         // First we need to setup randomized numbers from 0 to 31
2112         for ($idx = 0; $idx < $len; $idx++) {
2113                 // Generate number
2114                 $rand = mt_rand(0, ($len -1));
2115
2116                 // Check for it by creating more numbers
2117                 while (array_key_exists($rand, $scrambleNumbers)) {
2118                         $rand = mt_rand(0, ($len -1));
2119                 } // END - while
2120
2121                 // Add number
2122                 $scrambleNumbers[$rand] = $rand;
2123         } // END - for
2124
2125         // So let's create the string for storing it in database
2126         $scrambleString = implode(":", $scrambleNumbers);
2127         return $scrambleString;
2128 }
2129 // Append data like session ID or referal ID to the given URL which would
2130 // normally be stored in cookies
2131 function ADD_URL_DATA($URL) {
2132         global $_CONFIG;
2133         $ADD = "";
2134
2135         // Determine URL binder
2136         $BIND = "?";
2137         if (strpos($URL, "?") !== false) $BIND = "&";
2138
2139         if ((!defined('__COOKIES')) || ((!__COOKIES))) {
2140                 // Cookies are not accepted
2141                 if ((!empty($_GET['refid'])) && (strpos($URL, "refid=") == 0)) {
2142                         // Cookie found in URL
2143                         $ADD .= $BIND."refid=".bigintval($_GET['refid']);
2144                 } elseif ((GET_EXT_VERSION("sql_patches") != '') && ($_CONFIG['def_refid'] > 0)) {
2145                         // Not found! So let's set default here
2146                         $ADD .= $BIND."refid=".$_CONFIG['def_refid'];
2147                 }
2148
2149                 // Is there already added data? Then change the binder
2150                 if (!empty($ADD)) $BIND = "&";
2151
2152                 // Add session ID
2153                 if ((!empty($_GET['PHPSESSID'])) && (strpos($URL, "PHPSESSID=") == 0)) {
2154                         // Add session from URL
2155                         $ADD .= $BIND."PHPSESSID=".SQL_ESCAPE(strip_tags($_GET['PHPSESSID']));
2156                 } else {
2157                         // Add current session
2158                         $ADD .= $BIND."PHPSESSID=".session_id();
2159                 }
2160         } // END - if
2161
2162         // Add all together and return it
2163         return $URL.$ADD;
2164 }
2165 // Generate an PGP-like encrypted hash of given hash for e.g. cookies
2166 function generatePassString($passHash) {
2167         global $_CONFIG;
2168
2169         // Return vanilla password hash
2170         $ret = $passHash;
2171
2172         // Is a secret key and master salt already initialized?
2173         if ((!empty($_CONFIG['secret_key'])) && (!empty($_CONFIG['master_salt']))) {
2174                 // Only calculate when the secret key is generated
2175                 $newHash = ""; $start = 9;
2176                 for ($idx = 0; $idx < 10; $idx++) {
2177                         $part1 = hexdec(substr($passHash, $start, 4));
2178                         $part2 = hexdec(substr($_CONFIG['secret_key'], $start, 4));
2179                         $mod = dechex($idx);
2180                         if ($part1 > $part2) {
2181                                 $mod = dechex(sqrt(($part1 - $part2) * _PRIME / pi()));
2182                         } elseif ($part2 > $part1) {
2183                                 $mod = dechex(sqrt(($part2 - $part1) * _PRIME / pi()));
2184                         }
2185                         $mod = substr(round($mod), 0, 4);
2186                         $mod = str_repeat('0', 4-strlen($mod)).$mod;
2187                         //* DEBUG: */ echo "*".$start."=".$mod."*<br />";
2188                         $start += 4;
2189                         $newHash .= $mod;
2190                 } // END - for
2191
2192                 //* DEBUG: */ print($passHash."<br />".$newHash." (".strlen($newHash).")");
2193                 $ret = generateHash($newHash, $_CONFIG['master_salt']);
2194                 //* DEBUG: */ print($ret."<br />\n");
2195         } else {
2196                 // Hash it simple
2197                 //* DEBUG: */ echo "--".$passHash."--<br />\n";
2198                 $ret = md5($passHash);
2199                 //* DEBUG: */ echo "++".$ret."++<br />\n";
2200         }
2201
2202         // Return result
2203         return $ret;
2204 }
2205
2206 // Fix "deleted" cookies
2207 function FIX_DELETED_COOKIES ($cookies) {
2208         // Is this an array with entries?
2209         if ((is_array($cookies)) && (count($cookies) > 0)) {
2210                 // Then check all cookies if they are marked as deleted!
2211                 foreach ($cookies as $cookieName) {
2212                         // Is the cookie set to "deleted"?
2213                         if (get_session($cookieName) == "deleted") {
2214                                 set_session($cookieName, "");
2215                         }
2216                 } // END - foreach
2217         } // END - if
2218 }
2219
2220 // Output error messages in a fasioned way and die...
2221 function mxchange_die ($msg) {
2222         global $footer;
2223
2224         // Load the message template
2225         LOAD_TEMPLATE("admin_settings_saved", false, $msg);
2226
2227         // Load footer
2228         include(PATH."inc/footer.php");
2229
2230         // Exit explicitly
2231         exit;
2232 }
2233
2234 // Display parsing time and number of SQL queries in footer
2235 function DISPLAY_PARSING_TIME_FOOTER() {
2236         global $_CONFIG;
2237         $endTime = microtime(true);
2238
2239         // Is the timer started?
2240         if (!isset($GLOBALS['startTime'])) {
2241                 // Abort here
2242                 return false;
2243         }
2244
2245         // "Explode" both times
2246         $start = explode(" ", $GLOBALS['startTime']);
2247         $end = explode(" ", $endTime);
2248         $runTime = $end[0] - $start[0];
2249         if ($runTime < 0) $runTime = 0;
2250         $runTime = TRANSLATE_COMMA($runTime);
2251
2252         // Prepare output
2253         $content = array(
2254                 'runtime'               => $runTime,
2255                 'numSQLs'               => ($_CONFIG['sql_count'] + 1),
2256                 'numTemplates'  => ($_CONFIG['num_templates'] + 1)
2257         );
2258
2259         // Load the template
2260         LOAD_TEMPLATE("show_timings", false, $content);
2261 }
2262
2263 // Unset/set session variables
2264 function set_session ($var, $value) {
2265         global $CSS;
2266
2267         // Abort in CSS mode here
2268         if ($CSS == 1) return true;
2269
2270         // Trim value and session variable
2271         $var = trim(SQL_ESCAPE($var)); $value = trim($value);
2272
2273         // Is the session variable set?
2274         if (("".$value."" == "") && (isSessionVariableSet($var))) {
2275                 // Remove the session
2276                 //* DEBUG: */ echo "UNSET:".$var."=".get_session($var)."<br />\n";
2277                 unset($_SESSION[$var]);
2278                 return session_unregister($var);
2279         } elseif (("".$value."" != '') && (!isSessionVariableSet($var))) {
2280                 // Set session
2281                 //* DEBUG: */ echo "SET:".$var."=".$value."<br />\n";
2282                 $_SESSION[$var] =  $value;
2283                 return session_register($var);
2284         } elseif (!empty($value)) {
2285                 // Update session
2286                 //* DEBUG: */ echo "UPDATE:".$var."=".$value."<br />\n";
2287                 $_SESSION[$var] = $value;
2288                 return true;
2289         }
2290
2291         // Ignored (but valid)
2292         //* DEBUG: */ echo "IGNORED:".$var."=".$value."<br />\n";
2293         return true;
2294 }
2295
2296 // Check wether a boolean constant is set
2297 // Taken from user comments in PHP documentation for function constant()
2298 function isBooleanConstantAndTrue($constName) { // : Boolean
2299         global $cacheArray;
2300
2301         // Failed by default
2302         $res = false;
2303
2304         // In cache?
2305         if (isset($cacheArray['const'][$constName])) {
2306                 // Use cache
2307                 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>): ".$constName."-CACHE!<br />\n";
2308                 $res = $cacheArray['const'][$constName];
2309         } else {
2310                 // Check constant
2311                 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>): ".$constName."-RESOLVE!<br />\n";
2312                 if (defined($constName)) $res = (constant($constName) === true);
2313
2314                 // Set cache
2315                 $cacheArray['const'][$constName] = $res;
2316         }
2317         //* DEBUG: */ var_dump($res);
2318
2319         // Return value
2320         return $res;
2321 }
2322
2323 // Check wether a session variable is set
2324 function isSessionVariableSet ($var) {
2325         //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):var={$var}<br />\n";
2326         return (isset($_SESSION[$var]));
2327 }
2328 // Returns wether the value of the session variable or NULL if not set
2329 function get_session ($var) {
2330         global $cacheArray;
2331
2332         // Default is not found! ;-)
2333         $value = null;
2334
2335         // Is the variable there or cached values?
2336         if (isset($cacheArray['session'][$var])) {
2337                 // Get cached value (skips a lot SQL_ESCAPE() calles!
2338                 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>): ".$var."-CACHE!<br />\n";
2339                 $value = $cacheArray['session'][$var];
2340         } elseif (isSessionVariableSet($var)) {
2341                 // Then  get it secured!
2342                 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>): ".$var."-RESOLVE!<br />\n";
2343                 $value = SQL_ESCAPE($_SESSION[$var]);
2344
2345                 // Cache the value
2346                 $cacheArray['session'][$var] = $value;
2347         } // END - if
2348
2349         // Return the value
2350         return $value;
2351 }
2352 // Send notification to admin
2353 function SEND_ADMIN_NOTIFICATION($subject, $templateName, $content=array(), $uid="0") {
2354         if (GET_EXT_VERSION("admins") >= "0.4.1") {
2355                 // Send new way
2356                 SEND_ADMIN_EMAILS_PRO($subject, $templateName, $content, $uid);
2357         } else {
2358                 // Send outdated way
2359                 $msg = LOAD_EMAIL_TEMPLATE($templateName, $content, $uid);
2360                 SEND_ADMIN_EMAILS($subject, $msg);
2361         }
2362 }
2363 // Destroy user session
2364 function destroy_user_session () {
2365         // Remove all user data from session
2366         return ((set_session("userid", "")) && (set_session("u_hash", "")) && (set_session("lifetime", "")));
2367 }
2368 // Merges an array together but only if both are arrays
2369 function merge_array ($array1, $array2) {
2370         // Are both an array?
2371         if ((is_array($array1)) && (is_array($array2))) {
2372                 // Merge all together
2373                 return array_merge($array1, $array2);
2374         } elseif (is_array($array1)) {
2375                 // Return left array
2376                 return $array1;
2377         }
2378
2379         // Something wired happened here...
2380         print(__FUNCTION__.":<pre>");
2381         debug_print_backtrace();
2382         die("</pre>");
2383 }
2384 // Debug message logger
2385 function DEBUG_LOG ($file, $line, $message, $force=true) {
2386         // Is debug mode enabled?
2387         if ((isBooleanConstantAndTrue('DEBUG_MODE')) || ($force)) {
2388                 // Log this message away
2389                 $fp = fopen(PATH."inc/cache/debug.log", 'a') or mxchange_die("Cannot write logfile debug.log!");
2390                 fwrite($fp, date("d.m.Y|H:i:s", time())."|".basename(__FILE__)."|".__LINE__."|".strip_tags($message)."\n");
2391                 fclose($fp);
2392         } // END - if
2393 }
2394 // Reads a directory with PHP files in and gets only files back
2395 function GET_DIR_AS_ARRAY ($baseDir, $prefix) {
2396         $INCs = array();
2397
2398         // Open directory
2399         $dirPointer = opendir($baseDir) or mxchange_die("Cannot read ".basename($baseDir)." path!");
2400
2401         // Read all entries
2402         while ($baseFile = readdir($dirPointer)) {
2403                 // Load file only if extension is active
2404                 // Make full path
2405                 $file = $baseDir.$baseFile;
2406
2407                 // Is this a valid reset file?
2408                 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):baseDir={$baseDir},prefix={$prefix},baseFile={$baseFile}<br />\n";
2409                 if ((FILE_READABLE($file)) && (substr($baseFile, 0, strlen($prefix)) == $prefix) && (substr($baseFile, -4, 4) == ".php")) {
2410                         // Remove both for extension name
2411                         $extName = substr($baseFile, strlen($prefix), -4);
2412
2413                         // Try to find it
2414                         $extId = GET_EXT_ID($extName);
2415
2416                         // Is the extension valid and active?
2417                         if (($extId > 0) && (EXT_IS_ACTIVE($extName))) {
2418                                 // Then add this file
2419                                 $INCs[] = $file;
2420                         } elseif ($extId == 0) {
2421                                 // Add non-extension files as well
2422                                 $INCs[] = $file;
2423                         }
2424                 } // END - if
2425         } // END - while
2426
2427         // Close directory
2428         closedir($dirPointer);
2429
2430         // Sort array
2431         asort($INCs);
2432
2433         // Return array with include files
2434         return $INCs;
2435 }
2436 // Load more reset scripts
2437 function RESET_ADD_INCLUDES () {
2438         global $_CONFIG;
2439
2440         // Is the reset set or old sql_patches?
2441         if ((!defined('__DAILY_RESET')) || (EXT_VERSION_IS_OLDER("sql_patches", "0.4.5"))) {
2442                 // Then abort here
2443                 return array();
2444         } // END - if
2445
2446         // Get more daily reset scripts
2447         $INC_POOL = GET_DIR_AS_ARRAY(PATH."inc/reset/", "reset_");
2448
2449         // Update database
2450         if (!defined('DEBUG_RESET')) UPDATE_CONFIG("last_update", time());
2451
2452         // Create current week mark
2453         $currWeek = date("W", time());
2454
2455         // Has it changed?
2456         if ($_CONFIG['last_week'] != $currWeek) {
2457                 // Include weekly reset scripts
2458                 $INC_POOL = array_merge($INC_POOL, GET_DIR_AS_ARRAY(PATH."inc/weekly/", "weekly_"));
2459
2460                 // Update config
2461                 if (!defined('DEBUG_WEEKLY')) UPDATE_CONFIG("last_week", $currWeek);
2462         } // END - if
2463
2464         // Create current month mark
2465         $currMonth = date("m", time());
2466
2467         // Has it changed?
2468         if ($_CONFIG['last_month'] != $currMonth) {
2469                 // Include monthly reset scripts
2470                 $INC_POOL = array_merge($INC_POOL, GET_DIR_AS_ARRAY(PATH."inc/monthly/", "monthly_"));
2471
2472                 // Update config
2473                 if (!defined('DEBUG_MONTHLY')) UPDATE_CONFIG("last_month", $currMonth);
2474         } // END - if
2475
2476         // Return array
2477         return $INC_POOL;
2478 }
2479 // Handle extra values
2480 function HANDLE_EXTRA_VALUES ($filterFunction, $value, $extraValue) {
2481         // Default is the value itself
2482         $ret = $value;
2483
2484         // Do we have a special filter function?
2485         if (!empty($filterFunction)) {
2486                 // Does the filter function exist?
2487                 if (function_exists($filterFunction)) {
2488                         // Do we have extra parameters here?
2489                         if (!empty($extraValue)) {
2490                                 // Put both parameters in one new array by default
2491                                 $args = array($value, $extraValue);
2492
2493                                 // If we have an array simply use it and pre-extend it with our value
2494                                 if (is_array($extraValue)) {
2495                                         // Make the new args array
2496                                         $args = array_merge(array($value), $extraValue);
2497                                 } // END - if
2498
2499                                 // Call the multi-parameter call-back
2500                                 $ret = call_user_func_array($filterFunction, $args);
2501                         } else {
2502                                 // One parameter call
2503                                 $ret = call_user_func($filterFunction, $value);
2504                         }
2505                 } // END - if
2506         } // END - if
2507
2508         // Return the value
2509         return $ret;
2510 }
2511 // Check if given FQFN is a readable file
2512 function FILE_READABLE($fqfn) {
2513         // Check all...
2514         return ((file_exists($fqfn)) && (is_file($fqfn)) && (is_readable($fqfn)));
2515 }
2516 // Converts timestamp selections into a timestamp
2517 function CONVERT_SELECTIONS_TO_TIMESTAMP(&$POST, &$DATA, &$id, &$skip) {
2518         // Init test variable
2519         $test2 = "";
2520
2521         // Get last three chars
2522         $test = substr($id, -3);
2523
2524         // Improved way of checking! :-)
2525         if (in_array($test, array("_ye", "_mo", "_we", "_da", "_ho", "_mi", "_se"))) {
2526                 // Found a multi-selection for timings?
2527                 $test = substr($id, 0, -3);
2528                 if ((isset($POST[$test."_ye"])) && (isset($POST[$test."_mo"])) && (isset($POST[$test."_we"])) && (isset($POST[$test."_da"])) && (isset($POST[$test."_ho"])) && (isset($POST[$test."_mi"])) && (isset($POST[$test."_se"])) && ($test != $test2)) {
2529                         // Generate timestamp
2530                         $POST[$test] = CREATE_TIMESTAMP_FROM_SELECTIONS($test, $POST);
2531                         $DATA[] = sprintf("%s='%s'", $test, $POST[$test]);
2532
2533                         // Remove data from array
2534                         foreach (array("ye", "mo", "we", "da", "ho", "mi", "se") as $rem) {
2535                                 unset($POST[$test."_".$rem]);
2536                         } // END - foreach
2537
2538                         // Skip adding
2539                         unset($id); $skip = true; $test2 = $test;
2540                 } // END - if
2541         } else {
2542                 // Process this entry
2543                 $skip = false; $test2 = "";
2544         }
2545 }
2546 // Reverts the german decimal comma into Computer decimal dot
2547 function REVERT_COMMA ($str) {
2548         // Default float is not a float... ;-)
2549         $float = false;
2550
2551         // Which language is selected?
2552         switch (GET_LANGUAGE()) {
2553                 case "de": // German language
2554                         // Remove german thousand dots first
2555                         $str = str_replace(".", "", $str);
2556
2557                         // Replace german commata with decimal dot and cast it
2558                         $float = (float)str_replace(",", ".", $str);
2559                         break;
2560
2561                 default: // US and so on
2562                         // Remove thousand dots first and cast
2563                         $float = (float)str_replace(",", "", $str);
2564                         break;
2565         }
2566
2567         // Return float
2568         return $float;
2569 }
2570 // Handle menu-depending failed logins and return the rendered content
2571 function HANDLE_LOGIN_FAILTURES ($accessLevel) {
2572         // Default output is empty ;-)
2573         $OUT = "";
2574
2575         // Is the session data set?
2576         if ((isSessionVariableSet('mxchange_'.$accessLevel.'_failtures')) && (isSessionVariableSet('mxchange_'.$accessLevel.'_last_fail'))) {
2577                 // Ignore zero values
2578                 if (get_session('mxchange_'.$accessLevel.'_failtures') > 0) {
2579                         // Non-guest has login failtures found, get both data and prepare it for template
2580                         //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):accessLevel={$accessLevel}<br />\n";
2581                         $content = array(
2582                                 'login_failtures' => get_session('mxchange_'.$accessLevel.'_failtures'),
2583                                 'last_failture'   => MAKE_DATETIME(get_session('mxchange_'.$accessLevel.'_last_fail'), "2")
2584                         );
2585
2586                         // Load template
2587                         $OUT = LOAD_TEMPLATE("login_failtures", true, $content);
2588                 } // END - if
2589
2590                 // Reset session data
2591                 set_session('mxchange_'.$accessLevel.'_failtures', "");
2592                 set_session('mxchange_'.$accessLevel.'_last_fail', "");
2593         } // END - if
2594
2595         // Return rendered content
2596         return $OUT;
2597 }
2598 // Rebuild cache
2599 function REBUILD_CACHE ($cache, $inc="") {
2600         global $cacheInstance, $_CONFIG, $CSS;
2601
2602         // Shall I remove the cache file?
2603         if ((EXT_IS_ACTIVE("cache")) && (is_object($cacheInstance))) {
2604                 // Rebuild cache
2605                 if ($cacheInstance->cache_file($cache)) {
2606                         // Destroy it
2607                         $cacheInstance->cache_destroy();
2608                 } // END - if
2609
2610                 // Include file given?
2611                 if (!empty($inc)) {
2612                         // Construct FQFN
2613                         $fqfn = sprintf("%sinc/loader/load_cache-%s.php", PATH, $inc);
2614
2615                         // Is the include there?
2616                         if (FILE_READABLE($fqfn)) {
2617                                 // And rebuild it from scratch
2618                                 require($fqfn);
2619                         } else {
2620                                 // Include not found!
2621                                 DEBUG_LOG(__FUNCTION__, __LINE__, "Include {$inc} not found. cache={$cache}");
2622                         }
2623                 } // END - if
2624         } // END - if
2625 }
2626 // Purge admin menu cache
2627 function CACHE_PURGE_ADMIN_MENU ($id=0, $action="", $what="", $str="") {
2628         global $_CONFIG, $cacheInstance;
2629
2630         // Is the cache extension enabled or no cache instance or admin menu cache disabled?
2631         if (!EXT_IS_ACTIVE("cache")) {
2632                 // Cache extension not active
2633                 return false;
2634         } elseif (!is_object($cacheInstance)) {
2635                 // No cache instance!
2636                 DEBUG_LOG(__FUNCTION__, __LINE__, " No cache instance found.");
2637                 return false;
2638         } elseif ((!isset($_CONFIG['cache_admin_menu'])) || ($_CONFIG['cache_admin_menu'] == "N")) {
2639                 // Caching disabled (currently experiemental!)
2640                 return false;
2641         }
2642
2643         // Experiemental feature!
2644         trigger_error("You have to delete the admin_*.cache files by yourself at this point.");
2645 }
2646 // Translates the "pool type" into human-readable
2647 function TRANSLATE_POOL_TYPE ($type) {
2648         // Default type is unknown
2649         $translated = sprintf(POOL_TYPE_UNKNOWN, $type);
2650
2651         // Generate constant
2652         $constName = sprintf("POOL_TYPE_%s", $type);
2653
2654         // Does it exist?
2655         if (defined($constName)) {
2656                 // Then use it
2657                 $translated = constant($constName);
2658         } // END - if
2659
2660         // Return "translation"
2661         return $translated;
2662 }
2663 // "Getter" for remote IP number
2664 function GET_REMOTE_ADDR () {
2665         // Get remote ip from environment
2666         $remoteAddr = getenv('REMOTE_ADDR');
2667
2668         // Is removeip installed?
2669         if (EXT_IS_ACTIVE("removeip")) {
2670                 // Then anonymize it
2671                 $remoteAddr = GET_ANONYMOUS_REMOTE_ADDR($remoteAddr);
2672         } // END - if
2673
2674         // Return it
2675         return $remoteAddr;
2676 }
2677 // "Getter" for remote hostname
2678 function GET_REMOTE_HOST () {
2679         // Get remote ip from environment
2680         $remoteHost = getenv('REMOTE_HOST');
2681
2682         // Is removeip installed?
2683         if (EXT_IS_ACTIVE("removeip")) {
2684                 // Then anonymize it
2685                 $remoteHost = GET_ANONYMOUS_REMOTE_HOST($remoteHost);
2686         } // END - if
2687
2688         // Return it
2689         return $remoteHost;
2690 }
2691 // "Getter" for user agent
2692 function GET_USER_AGENT () {
2693         // Get remote ip from environment
2694         $userAgent = getenv('HTTP_USER_AGENT');
2695
2696         // Is removeip installed?
2697         if (EXT_IS_ACTIVE("removeip")) {
2698                 // Then anonymize it
2699                 $userAgent = GET_ANONYMOUS_USER_AGENT($userAgent);
2700         } // END - if
2701
2702         // Return it
2703         return $userAgent;
2704 }
2705 // "Getter" for referer
2706 function GET_REFERER () {
2707         // Get remote ip from environment
2708         $referer = getenv('HTTP_REFERER');
2709
2710         // Is removeip installed?
2711         if (EXT_IS_ACTIVE("removeip")) {
2712                 // Then anonymize it
2713                 $referer = GET_ANONYMOUS_REFERER($referer);
2714         } // END - if
2715
2716         // Return it
2717         return $referer;
2718 }
2719
2720 // Adds a bonus mail to the queue
2721 // This is a high-level function!
2722 function ADD_NEW_BONUS_MAIL ($data, $mode="", $output=true) {
2723         // Use mode from data if not set and availble ;-)
2724         if ((empty($mode)) && (isset($data['mode']))) $mode = $data['mode'];
2725
2726         // Generate receiver list
2727         $RECEIVER = GENERATE_RECEIVER_LIST($data['cat'], $data['receiver'], $mode);
2728
2729         // Receivers added?
2730         if (!empty($RECEIVER)) {
2731                 // Add bonus mail to queue
2732                 ADD_BONUS_MAIL_TO_QUEUE(
2733                         $data['subject'],
2734                         $data['text'],
2735                         $RECEIVER,
2736                         $data['points'],
2737                         $data['seconds'],
2738                         $data['url'],
2739                         $data['cat'],
2740                         $mode,
2741                         $data['receiver']
2742                 );
2743
2744                 // Mail inserted into bonus pool
2745                 if ($output) LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_BONUS_SEND);
2746         } elseif ($output) {
2747                 // More entered than can be reached!
2748                 LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_MORE_SELECTED);
2749         } else {
2750                 // Debug log
2751                 DEBUG_LOG(__FUNCTION__, __LINE__, " cat={$data['cat']},receiver={$data['receiver']},data=".base64_encode(serialize($data))." More selected, than available!");
2752         }
2753 }
2754 // Determines referal id and sets it
2755 function DETERMINE_REFID () {
2756         global $_CONFIG, $CLICK, $_SERVER;
2757
2758         // Check if refid is set
2759         if ((!empty($_GET['user'])) && ($CLICK == 1) && (basename($_SERVER['PHP_SELF']) == "click.php")) {
2760                 // The variable user comes from the click-counter script click.php and we only accept this here
2761                 $GLOBALS['refid'] = bigintval($_GET['user']);
2762         } elseif (!empty($_POST['refid'])) {
2763                 // Get referal id from variable refid (so I hope this makes my script more compatible to other scripts)
2764                 $GLOBALS['refid'] = SQL_ESCAPE(strip_tags($_POST['refid']));
2765         } elseif (!empty($_GET['refid'])) {
2766                 // Get referal id from variable refid (so I hope this makes my script more compatible to other scripts)
2767                 $GLOBALS['refid'] = SQL_ESCAPE(strip_tags($_GET['refid']));
2768         } elseif (!empty($_GET['ref'])) {
2769                 // Set refid=ref (the referal link uses such variable)
2770                 $GLOBALS['refid'] = SQL_ESCAPE(strip_tags($_GET['ref']));
2771         } elseif ((isSessionVariableSet('refid')) && (get_session('refid') != 0)) {
2772                 // Set session refid als global
2773                 $GLOBALS['refid'] = bigintval(get_session('refid'));
2774         } elseif ((GET_EXT_VERSION("sql_patches") != "") && ($_CONFIG['def_refid'] > 0)) {
2775                 // Set default refid as refid in URL
2776                 $GLOBALS['refid'] = bigintval($_CONFIG['def_refid']);
2777         } elseif ((GET_EXT_VERSION("user") >= "0.3.4") && ($_CONFIG['select_user_zero_refid']) == "Y") {
2778                 // Select a random user which has confirmed enougth mails
2779                 $GLOBALS['refid'] = SELECT_RANDOM_REFID();
2780         } else {
2781                 // No default ID when sql_patches is not installed or none set
2782                 $GLOBALS['refid'] = 0;
2783         }
2784
2785         // Set cookie when default refid > 0
2786         if (!isSessionVariableSet('refid') || (!empty($GLOBALS['refid'])) || ((get_session('refid') == "0") && (isset($_CONFIG['def_refid'])) && ($_CONFIG['def_refid'] > 0))) {
2787                 // Set cookie
2788                 set_session('refid', $GLOBALS['refid']);
2789         } // END - if
2790 }
2791
2792 // Destroys the admin session
2793 function DESTROY_ADMIN_SESSION () {
2794         // Kill maybe existing session variables including array elements
2795         set_session('admin_login'       , "");
2796         set_session('admin_md5'         , "");
2797         set_session('admin_last'        , "");
2798         set_session('admin_to'          , "");
2799
2800         // Destroy session and return status
2801         return @session_destroy();
2802 }
2803
2804 // Checks if a given apache module is loaded
2805 function IF_APACHE_MODULE_LOADED ($apacheModule) {
2806         // Check it and return result
2807         return (((function_exists('apache_get_modules')) && (in_array($apacheModule, apache_get_modules()))) || (!function_exists('apache_get_modules')));
2808 }
2809
2810 //////////////////////////////////////////////////
2811 //                                              //
2812 // AUTOMATICALLY RE-GENERATED MISSING FUNCTIONS //
2813 //                                              //
2814 //////////////////////////////////////////////////
2815 //
2816 if (!function_exists('html_entity_decode')) {
2817         // Taken from documentation on www.php.net
2818         function html_entity_decode($string) {
2819                 $trans_tbl = get_html_translation_table(HTML_ENTITIES);
2820                 $trans_tbl = array_flip($trans_tbl);
2821                 return strtr($string, $trans_tbl);
2822         }
2823 } // END - if
2824
2825 //
2826 ?>