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