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