c2baa161c6c29abf2bb5fbbc114267336c96d2b9
[mailer.git] / inc / libs / user_functions.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 07/16/2004 *
4  * ===================                          Last change: 10/27/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : user_functions.php                               *
8  * -------------------------------------------------------------------- *
9  * Short description : Special functions for user extension             *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Spezielle Funktionen fuer die user-Erweiterung   *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * -------------------------------------------------------------------- *
18  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
19  * Copyright (c) 2009 - 2015 by Mailer Developer Team                   *
20  * For more information visit: http://mxchange.org                      *
21  *                                                                      *
22  * This program is free software; you can redistribute it and/or modify *
23  * it under the terms of the GNU General Public License as published by *
24  * the Free Software Foundation; either version 2 of the License, or    *
25  * (at your option) any later version.                                  *
26  *                                                                      *
27  * This program is distributed in the hope that it will be useful,      *
28  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
29  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
30  * GNU General Public License for more details.                         *
31  *                                                                      *
32  * You should have received a copy of the GNU General Public License    *
33  * along with this program; if not, write to the Free Software          *
34  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
35  * MA  02110-1301  USA                                                  *
36  ************************************************************************/
37
38 // Some security stuff...
39 if (!defined('__SECURITY')) {
40         die();
41 } // END - if
42
43 // Add links for selecting some users
44 function addAlphabeticalSorting ($sortby) {
45         $add = '';
46         foreach (array('page', 'offset', 'do', 'status') as $param) {
47                 if (isGetRequestElementSet($param)) {
48                         $add .= '&amp;' . $param . '=' . getRequestElement($param);
49                 } // END - if
50         } // END - foreach
51
52         // Creates the list of letters and makes them a link.
53         $alphabet = 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,');
54         $num = count($alphabet) - 1;
55
56         // Add all letter links
57         $OUT = '';
58         while (list($counter, $ltr) = each($alphabet)) {
59                 if (getRequestElement('letter') == $ltr) {
60                         // Current letter is letter from URL
61                         $OUT .= '<strong>' . $ltr . '</strong>';
62                 } else {
63                         // Output link to letter
64                         $OUT .= '<a href="{%url=modules.php?module=admin&amp;what=' . getWhat() . '&amp;letter=' . $ltr . '&amp;sortby=' . $sortby . $add . '%}">' . $ltr . '</a>';
65                 }
66
67                 if ((($counter / getUserAlpha()) == round($counter / getUserAlpha())) && ($counter > 0)) {
68                         $OUT .= ']<br />[';
69                 } elseif ($counter != $num) {
70                         $OUT .= '|';
71                 }
72         } // END - while
73
74         // Prepare content
75         $content = array (
76                 'alpha_selection' => $OUT,
77         );
78
79         // Load template
80         $OUT = loadTemplate('admin_list_user_alpha', TRUE, $content);
81
82         // Return generated code
83         return $OUT;
84 }
85
86 // Add links for sorting
87 function addSortLinks ($letter, $sortby) {
88         $OUT = '';
89         if (!isGetRequestElementSet('offset')) setGetRequestElement('offset', 0);
90         if (!isGetRequestElementSet('page'))   setGetRequestElement('page'  , 0);
91
92         // Add page and offset
93         $add = '&amp;page=' . getRequestElement('page') . '&amp;offset=' . getRequestElement('offset');
94
95         // Add status/ mode
96         foreach (array('do','status') as $param) {
97                 if (isGetRequestElementSet($param)) {
98                         $add .= '&amp;' . $param . '=' . getRequestElement($param);
99                 } // END - if
100         } // END - foreach
101
102         // Makes order by links..
103         if ($letter == 'front') {
104                 $letter = '';
105         } // END - if
106
107         // Prepare array with all possible sorters
108         $list = array(
109                 'userid'      => '{--_USERID--}',
110                 'family'      => '{--FAMILY--}',
111                 'email'       => '{--EMAIL--}',
112                 'REMOTE_ADDR' => '{--REMOTE_IP--}'
113         );
114
115         // Add nickname if extension is installed
116         if (isExtensionActive('nickname')) {
117                 $list['nickname'] = '{--NICKNAME--}';
118         } // END - if
119
120         foreach ($list as $sort => $title) {
121                 if ($sortby == $sort) {
122                         $OUT .= '<strong>' . $title . '</strong>|';
123                 } else {
124                         $OUT .= '<a href="{%url=modules.php?module=admin&amp;what=list_user&amp;letter=' . $letter . '&amp;sortby=' . $sort . $add . '%}">' . $title . '</a>|';
125                 }
126         } // END - foreach
127
128         // Add output
129         $content['list'] = substr($OUT, 0, -1);
130
131         // Load template
132         $OUT = loadTemplate('admin_list_user_sort', TRUE, $content);
133
134         // Return code
135         return $OUT;
136 }
137
138 // Add page navigation
139 function addPageNavigation ($numPages) {
140         // Start with empty content
141         $OUT = '';
142
143         // Create only the navigation if page count > 1
144         if ($numPages > 1) {
145                 // Create navigation links for every page
146                 for ($page = 1; $page <= $numPages; $page++) {
147                         if (($page == getRequestElement('page')) || ((!isGetRequestElementSet('page')) && ($page == 1))) {
148                                 $OUT .= '<strong>-';
149                         } else {
150                                 if (!isGetRequestElementSet('letter')) setGetRequestElement('letter', '');
151                                 if (!isGetRequestElementSet('sortby')) setGetRequestElement('sortby', 'userid');
152
153                                 // Base link
154                                 $OUT .= '<a href="{%url=modules.php?module=admin&amp;what=' . getWhat();
155
156                                 // Add status/mode
157                                 foreach (array('do','status') as $param) {
158                                         if (isGetRequestElementSet($param)) {
159                                                 $OUT .= '&amp;' . $param . '=' . getRequestElement($param);
160                                         } // END - if
161                                 } // END - foreach
162
163                                 // Letter and so on
164                                 $OUT .= '&amp;letter=' . getRequestElement('letter') . '&amp;sortby=' . getRequestElement('sortby') . '&amp;page=' . $page . '&amp;offset=' . getUserLimit() . '%}">';
165                         }
166
167                         $OUT .= $page;
168
169                         if (($page == getRequestElement('page')) || ((!isGetRequestElementSet('page')) && ($page == 1))) {
170                                 $OUT .= '-</strong>';
171                         } else  {
172                                 $OUT .= '</a>';
173                         }
174
175                         if ($page < $numPages) {
176                                 $OUT .= '|';
177                         } // END - if
178                 } // END - for
179
180                 // Add list output
181                 $content['list'] = $OUT;
182
183                 // Load template
184                 $OUT = loadTemplate('admin_list_user_pagenav', TRUE, $content);
185         } // END - if
186
187         // Return code
188         return $OUT;
189 }
190
191 // Create email link to user's account
192 function generateUserEmailLink ($email, $mod = 'admin') {
193         // Show contact link only if user is confirmed by default
194         $locked = " AND `status`='CONFIRMED'";
195
196         // But admins shall always see it
197         if (isAdmin()) {
198                 $locked = '';
199         } // END - if
200
201         // Search for the email address
202         $result = sqlQueryEscaped("SELECT
203         `userid`
204 FROM
205         `{?_MYSQL_PREFIX?}_user_data`
206 WHERE
207         '%s' REGEXP `email`
208         " . $locked . "
209 LIMIT 1",
210                 array($email), __FUNCTION__, __LINE__);
211
212         // Is there an entry?
213         if (sqlNumRows($result) == 1) {
214                 // Load userid
215                 list($userid) = sqlFetchRow($result);
216
217                 // Rewrite email address to contact link
218                 $email = '{%url=modules.php?module=' . $mod . '&amp;what=user_contct&amp;userid=' . bigintval($userid) . '%}';
219         } // END - if
220
221         // Free memory
222         sqlFreeResult($result);
223
224         // Return rewritten (?) email address
225         return $email;
226 }
227
228 // Selects a random user id as the new referral id if they have at least X confirmed mails in this run
229 function determineRandomReferralId () {
230         // Default is zero refid
231         $refid = NULL;
232
233         // Is the extension version fine?
234         if ((isRandomReferralIdEnabled()) && (isExtensionInstalledAndNewer('user', '0.3.4'))) {
235                 // Get all user ids
236                 $totalUsers = countSumTotalData('CONFIRMED', 'user_data', 'userid', 'status', TRUE, runFilterChain('user_exclusion_sql', ' AND `rand_confirmed` >= {?user_min_confirmed?}'));
237
238                 // Is there at least one?
239                 if ($totalUsers > 0) {
240                         // Then choose random userid
241                         $randUserid = mt_rand(0, ($totalUsers - 1));
242
243                         // Look for random user
244                         $result = sqlQueryEscaped("SELECT `userid` FROM `{?_MYSQL_PREFIX?}_user_data` " . runFilterChain('user_exclusion_sql', "WHERE `status`='CONFIRMED'") . ' AND `rand_confirmed` >= {?user_min_confirmed?} ORDER BY `rand_confirmed` DESC LIMIT %s, 1',
245                                 array($randUserid), __FUNCTION__, __LINE__);
246
247                         // Is there one entry there?
248                         if (sqlNumRows($result) == 1) {
249                                 // Use that userid as new referral id
250                                 list($refid) = sqlFetchRow($result);
251
252                                 // Debug message
253                                 /* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'refid=' . $refid . ' - choosen!');
254                         } // END - if
255
256                         // Free result
257                         sqlFreeResult($result);
258                 } // END - if
259         } // END - if
260
261         // Return result
262         return $refid;
263 }
264
265 // Do the user login
266 function doUserLogin ($userid, $passwd, $successUrl = '', $errorUrl = 'modules.php?module=index&amp;what=login&amp;login=') {
267         // Init variables
268         $dmy = '';
269         $add = '';
270         $errorCode = '0';
271         $ext = '';
272         $isFound = FALSE;
273
274         // Init array
275         $content = array(
276                 'password'    => '',
277                 'userid'      => '',
278                 'last_online' => 0,
279                 'last_login'  => 0,
280                 'hash'        => ''
281         );
282
283         // Check login data
284         if ((isExtensionActive('nickname')) && (isNicknameUsed($userid))) {
285                 // Nickname entered
286                 $isFound = fetchUserData($userid, 'nickname');
287         } elseif (isNicknameUsed($userid)) {
288                 // No nickname installed
289                 $errorCode = getCode('EXTENSION_PROBLEM');
290                 $ext = 'nickname';
291         } else {
292                 // Direct userid entered
293                 $isFound = fetchUserData($userid);
294         }
295
296         // No error found?
297         if (($errorCode == '0') && ($isFound === TRUE)) {
298                 // Get user data array and set userid (e.g. important if we login with nickname)
299                 $content = getUserDataArray();
300                 if (!empty($content['userid'])) {
301                         $userid = bigintval($content['userid']);
302                 } // END - if
303         } // END - if
304
305         // Debug message
306         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'userid=' . $userid . ',isValidUserData()=' . intval(isValidUserData()) . ',userStatus=' . getUserData('status') . ',errorCode=' . $errorCode . ',ext=' . $ext . ',isFound=' . intval($isFound));
307
308         // Is there an entry?
309         if (($errorCode == '0') && (isValidUserData()) && (getUserData('status') == 'CONFIRMED') && (!empty($content['userid']))) {
310                 // Check for old MD5 passwords
311                 if ((strlen(getUserData('password')) == 32) && (md5($passwd) == getUserData('password'))) {
312                         // Just set the hash to the password from DB... :)
313                         $content['hash'] = getUserData('password');
314                 } else {
315                         // Hash password with improved way for comparsion
316                         $content['hash'] = generateHash($passwd, substr(getUserData('password'), 0, -40));
317                 }
318
319                 // Does the password match the hash?
320                 if ($content['hash'] == getUserData('password')) {
321                         // New hashed password found so let's generate a new one
322                         $content['hash'] = generateHash($passwd);
323
324                         // ... and update database
325                         // @TODO Make this filter working: $ADDON = runFilterChain('post_login_update', $content);
326                         sqlQueryEscaped("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `password`='%s' WHERE `userid`=%s AND `status`='CONFIRMED' LIMIT 1",
327                                 array($content['hash'], $userid), __FUNCTION__, __LINE__);
328
329                         // No login bonus by default
330                         $GLOBALS['bonus_payed'] = FALSE;
331
332                         // Is bonus up-to-date?
333                         if (isExtensionInstalledAndNewer('bonus', '0.2.2')) {
334                                 // Probe for last online timemark
335                                 $probe = time() -  getUserData('last_online');
336                                 if (getUserData('last_login') > 0) {
337                                         // Use timestamp from last login
338                                         $probe = time() - getUserData('last_login');
339                                 } // END - if
340
341                                 // Is the timeout reached?
342                                 if ($probe >= getLoginTimeout()) {
343                                         // Add login bonus to user's account
344                                         $add = ',`login_bonus`=`login_bonus`+{?login_bonus?}';
345                                         $GLOBALS['bonus_payed'] = TRUE;
346
347                                         // Subtract login bonus from userid's account or jackpot
348                                         if ((isExtensionInstalledAndNewer('bonus', '0.3.5')) && (getBonusMode() != 'ADD')) {
349                                                 handleBonusPoints('login_bonus', $userid);
350                                         } // END - if
351                                 } // END - if
352                         } // END - if
353
354                         // @TODO Make this filter working: $url = runFilterChain('do_login', array('content' => $content, 'addon' => $ADDON));
355
356                         // Set member id
357                         setMemberId($userid);
358
359                         // Try to set session data (which shall normally always work!)
360                         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'userid=' . $userid . ',hash=' . $content['hash'] . '(' . strlen($content['hash']) . ')');
361                         if ((setSession('userid', $userid )) && (setSession('u_hash', encodeHashForCookie($content['hash'])))) {
362                                 // Update database records
363                                 sqlQueryEscaped("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `total_logins`=`total_logins`+1" . $add . " WHERE `userid`=%s LIMIT 1",
364                                         array($userid), __FUNCTION__, __LINE__);
365                                 if (!ifSqlHasZeroAffectedRows()) {
366                                         // Is a success URL set?
367                                         if (empty($successUrl)) {
368                                                 // Procedure to checking for login data
369                                                 if (($GLOBALS['bonus_payed'] === TRUE) && (isExtensionActive('bonus'))) {
370                                                         // Bonus added (just displaying!)
371                                                         $url = 'modules.php?module=chk_login&amp;do=bonus';
372                                                 } else {
373                                                         // Bonus not added
374                                                         $url = 'modules.php?module=chk_login&amp;do=login';
375                                                 }
376                                         } else {
377                                                 // Use this URL
378                                                 $url = $successUrl;
379                                         }
380                                 } else {
381                                         // Cannot update counter!
382                                         $errorCode = getCode('CNTR_FAILED');
383                                 }
384                         } else {
385                                 // Cookies not setable!
386                                 $errorCode = getCode('COOKIES_DISABLED');
387                         }
388                 } elseif (isExtensionInstalledAndNewer('sql_patches', '0.6.1')) {
389                         // Update failure counter
390                         sqlQueryEscaped("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `login_failures`=`login_failures`+1,`last_failure`=NOW() WHERE `userid`=%s LIMIT 1",
391                                 array($userid), __FUNCTION__, __LINE__);
392
393                         // Wrong password!
394                         $errorCode = getCode('WRONG_PASS');
395                 }
396         } elseif ((isValidUserData()) && (getUserData('status') != 'CONFIRMED')) {
397                 // Create an error code from given status
398                 $errorCode = generateErrorCodeFromUserStatus(getUserData('status'));
399
400                 // Set userid in session
401                 setSession('userid', getUserData('userid'));
402         } elseif (!isValidUserData()) {
403                 // User id not found
404                 $errorCode = getCode('WRONG_ID');
405         } else {
406                 // Unknown error
407                 $errorCode = getCode('UNKNOWN_ERROR');
408         }
409
410         // Error code provided?
411         if ($errorCode > 0) {
412                 // Then reconstruct the URL
413                 $url = $errorUrl . $errorCode;
414
415                 // Extension set? Then add it as well.
416                 if (!empty($ext)) {
417                         $url .= '&amp;ext=' . $ext;
418                 } // END - if
419         } // END - if
420
421         // Return URL
422         return $url;
423 }
424
425 // Try to send a new password for the given user account
426 function doNewUserPassword ($email, $userid) {
427         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'email=' . $email . ',userid=' . $userid . ' - ENTERED!');
428         // Init found-status and error
429         $errorCode = '';
430         $accountFound = FALSE;
431
432         // Probe userid/nickname
433         if (!empty($email)) {
434                 // Email entered
435                 $accountFound = fetchUserData($email, 'email');
436         } elseif ((isExtensionActive('nickname')) && (isNicknameOrUserid($userid))) {
437                 // Nickname entered
438                 $accountFound = fetchUserData($userid, 'nickname');
439         } elseif ((isValidId($userid)) && (empty($email))) {
440                 // Direct userid entered
441                 $accountFound = fetchUserData($userid);
442         } elseif (isDebugModeEnabled()) {
443                 // Userid not set!
444                 logDebugMessage(__FUNCTION__, __LINE__, 'userid=' . $userid . ',email=' . $email . ': Important variables are empty.');
445         }
446
447         // Any entry found?
448         if ($accountFound === TRUE) {
449                 // Is the account confirmed
450                 if (getUserData('status') == 'CONFIRMED') {
451                         // Generate new password
452                         $newPassword = generatePassword();
453
454                         // Update database
455                         sqlQueryEscaped("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `password`='%s' WHERE `userid`=%s LIMIT 1",
456                                 array(
457                                         generateHash($newPassword),
458                                         getUserData('userid')
459                                 ), __FUNCTION__, __LINE__);
460
461                         // Prepare data and message for email
462                         $message = loadEmailTemplate('guest_new_password',
463                                 array(
464                                         'new_pass' => $newPassword,
465                                         'nickname' => $userid
466                                 ), getUserData('userid'));
467
468                         // ... and send it away
469                         sendEmail(bigintval(getUserData('userid')), '{--GUEST_NEW_PASSWORD_SUBJECT--}', $message);
470
471                         // Output note to user
472                         displayMessage('{--GUEST_NEW_PASSWORD_SEND--}');
473                 } else {
474                         // Account is locked or unconfirmed
475                         $errorCode = generateErrorCodeFromUserStatus(getUserData('status'));
476
477                         // Load URL
478                         redirectToUrl('modules.php?module=index&amp;what=login&amp;login=' . $errorCode);
479                 }
480         } else {
481                 // Id or email is wrong
482                 displayMessage('<span class="bad">{--GUEST_WRONG_ID_EMAIL--}</span>');
483         }
484
485         // Return the error code
486         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'email=' . $email . ',userid=' . $userid . ',errorCode=' . $errorCode . ' - EXIT!');
487         return $errorCode;
488 }
489
490 // Get timestamp for given stats type and data
491 function getEpocheTimeFromUserStats ($statsType, $statsData, $userid = NULL) {
492         // Default timestamp is zero
493         $data['inserted'] = '0';
494
495         // User id set?
496         if ((isMemberIdSet()) && (is_null($userid))) {
497                 $userid = getMemberId();
498         } // END - if
499
500         // Is the extension installed and updated?
501         if ((!isExtensionActive('sql_patches')) || (isExtensionInstalledAndOlder('sql_patches', '0.5.6'))) {
502                 // Return zero here
503                 return $data['inserted'];
504         } // END - if
505
506         // Try to find the entry
507         $result = sqlQueryEscaped("SELECT
508         UNIX_TIMESTAMP(`inserted`) AS `inserted`
509 FROM
510         `{?_MYSQL_PREFIX?}_user_stats_data`
511 WHERE
512         `userid`=%s AND
513         `stats_type`='%s' AND
514         `stats_data`='%s'
515 LIMIT 1",
516                 array(
517                         bigintval($userid),
518                         $statsType,
519                         $statsData
520                 ), __FUNCTION__, __LINE__);
521
522         // Is the entry there?
523         if (sqlNumRows($result) == 1) {
524                 // Get this stamp
525                 $data = sqlFetchArray($result);
526         } // END - if
527
528         // Free result
529         sqlFreeResult($result);
530
531         // Return stamp
532         return $data['inserted'];
533 }
534
535 // Inserts user stats
536 function insertUserStatsRecord ($userid, $statsType, $statsData) {
537         // Is the extension installed and updated?
538         if ((!isExtensionActive('sql_patches')) || (isExtensionInstalledAndOlder('sql_patches', '0.5.6'))) {
539                 // Return zero here
540                 return FALSE;
541         } // END - if
542
543         // Default is not working
544         $return = FALSE;
545
546         // Does it exist?
547         if ((!getEpocheTimeFromUserStats($statsType, $statsData, $userid)) && (!is_array($statsData))) {
548                 // Then insert it!
549                 sqlQueryEscaped("INSERT INTO `{?_MYSQL_PREFIX?}_user_stats_data` (`userid`, `stats_type`, `stats_data`) VALUES (%s,'%s','%s')",
550                         array(
551                                 bigintval($userid),
552                                 $statsType,
553                                 $statsData
554                         ), __FUNCTION__, __LINE__);
555
556                 // Does it have worked?
557                 $return = (!ifSqlHasZeroAffectedRows());
558         } elseif (is_array($statsData)) {
559                 // Invalid data!
560                 logDebugMessage(__FUNCTION__, __LINE__, 'userid=' . $userid . ',type=' . $statsType . ',data=' . gettype($statsData) . ': Invalid statistics data type!');
561         }
562
563         // Return status
564         return $return;
565 }
566
567 // Confirms a user account
568 function doConfirmUserAccount ($hash) {
569         // Init content
570         $content = array(
571                 'message' => '{--GUEST_CONFIRMED_FAILED--}',
572                 'userid'  => 0,
573         );
574
575         // Initialize the user id
576         $userid = NULL;
577
578         // Search for an unconfirmed or confirmed account
579         $result = sqlQueryEscaped("SELECT `userid`, `refid` FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `user_hash`='%s' AND (`status`='UNCONFIRMED' OR `status`='CONFIRMED') LIMIT 1",
580                 array($hash), __FILE__, __LINE__);
581
582         // One result should be found
583         if (ifSqlHasZeroNums($result)) {
584                 // Nothing found or tried to confirm twice?
585                 displayMessage('{--GUEST_CONFIRMED_TWICE--}');
586                 return;
587         } // END - if
588
589         // Okay, the user want's to confirm now so we load some data
590         list($userid, $refid) = sqlFetchRow($result);
591
592         // Fetch user data
593         if (!fetchUserData($userid)) {
594                 // Not found, should not happen
595                 reportBug(__FILE__, __LINE__, 'User account ' . $userid . ' not found.');
596         } // END - if
597
598         // Load all data and add points
599         $content = getUserDataArray();
600
601         // Unlock his account (but only when it is on UNCONFIRMED!)
602         sqlQueryEscaped("UPDATE
603         `{?_MYSQL_PREFIX?}_user_data`
604 SET
605         `status`='CONFIRMED',
606         `user_hash`=NULL
607 WHERE
608         `user_hash`='%s' AND
609         `status`='UNCONFIRMED'
610 LIMIT 1",
611                 array($hash), __FILE__, __LINE__);
612
613         // Was it updated?
614         if (ifSqlHasZeroAffectedRows()) {
615                 // Nobody was found unter this hash key... or our new member want's to confirm twice?
616                 displayMessage('{--GUEST_CONFIRMED_TWICE--}');
617                 return;
618         } // END - if
619
620         // Load email template
621         $message = loadEmailTemplate('guest_user_confirmed', $content, bigintval($userid));
622
623         // And send him right away the confirmation mail
624         sendEmail($userid, '{--GUEST_THANX_CONFIRM--}', $message);
625
626         // Maybe he got "referraled"?
627         if ((isValidId($refid)) && ($refid != $userid)) {
628                 // Select the referral userid
629                 if (fetchUserData($refid)) {
630                         // Update ref counter...
631                         updateReferralCounter($refid);
632
633                         // If version matches add ref bonus to refid's account
634                         if ((isExtensionInstalledAndNewer('bonus', '0.4.4')) && (isBonusRallyeActive())) {
635                                 // Add points (directly only!)
636                                 sqlQueryEscaped("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `bonus_ref`=`bonus_ref`+{?bonus_ref?} WHERE `userid`=%s LIMIT 1",
637                                         array(bigintval($refid)), __FILE__, __LINE__);
638
639                                 // Subtract points from system
640                                 handleBonusPoints(getBonusRef(), $refid);
641                         } // END - if
642
643                         // Add one-time referral bonus over referral system or directly
644                         initReferralSystem();
645                         addPointsThroughReferralSystem('referral_bonus', $refid, getPointsRef(), bigintval($userid));
646                 } // END - if
647         } // END - if
648
649         // @TODO Rewrite this to 2 filters as a possible redirect must always come last
650         if (isExtensionActive('rallye')) {
651                 // Add user to rallye (or not?)
652                 addUserToReferralRallye(bigintval($userid));
653         } // END - if
654
655         // Account confirmed!
656         if (isExtensionActive('lead')) {
657                 // Set special lead cookie
658                 setSession('lead_userid', bigintval($userid));
659
660                 // Lead-Code mode enabled
661                 redirectToUrl('lead-confirm.php');
662         } else {
663                 // Regular confirmation
664                 $content['message'] = '{--GUEST_CONFIRMED_DONE--}';
665                 $content['userid']  = bigintval($userid);
666         }
667
668         // Load template
669         displayMessage($content['message']);
670 }
671
672 // Does resend the user's confirmation link for given email address
673 function doResendUserConfirmationLink ($email) {
674         // Email address not registered is default message
675         $message = '{--EMAIL_404--}';
676
677         // Confirmation link requested
678         if (fetchUserData($email, 'email')) {
679                 // Email address found
680                 $content = getUserDataArray();
681
682                 // Is the account unconfirmed?
683                 if ($content['status'] == 'UNCONFIRMED') {
684                         // Load email template
685                         $message = loadEmailTemplate('guest_request_confirm', array(), $content['userid']);
686
687                         // Send email
688                         sendEmail($content['userid'], '{--GUEST_REQUEST_CONFIRM_LINK_SUBJECT--}', $message);
689                 } // END - if
690
691                 // Create message based on the status
692                 $message = getConfirmationMessageFromUserStatus($content['status']);
693         } // END - if
694
695         // Output message
696         displayMessage($message);
697 }
698
699 // Get a message (somewhat translation) from user status for confirmation link.
700 // This is different to translateUserStatus() in text messages.
701 function getConfirmationMessageFromUserStatus ($status) {
702         // Default is 'UNKNOWN'
703         $message = '{%message,GUEST_LOGIN_ID_UNKNOWN_STATUS=' . $status . '%}';
704
705         // Which status is it?
706         switch ($status) {
707                 case 'UNCONFIRMED': // Account is unconfirmed
708                         // And set message
709                         $message = '{--GUEST_CONFIRM_LINK_SENT--}';
710                         break;
711
712                 case 'CONFIRMED': // Account already confirmed
713                         $message = '{--GUEST_LOGIN_ID_CONFIRMED--}';
714                         break;
715
716                 case 'LOCKED': // Account is locked
717                         $message = '{--GUEST_LOGIN_ID_LOCKED--}';
718                         break;
719
720                 default: // This should not happen
721                         reportBug(__FUNCTION__, __LINE__, 'Unknown user status ' . $status . ' detected.');
722                         break;
723         } // END - switch
724
725         // Return message
726         return $message;
727 }
728
729 // "Getter" for total tester accounts
730 function getTotalTesterUsers () {
731         // Is there cache?
732         if (!isset($GLOBALS[__FUNCTION__])) {
733                 // Determine it
734                 $GLOBALS[__FUNCTION__] = countSumTotalData('', 'user_data', 'userid', '', TRUE, runFilterChain('user_inclusion_sql'));
735         } // END - if
736
737         // Return cache
738         return $GLOBALS[__FUNCTION__];
739 }
740
741 // Checks whether the admin is allowed to create more tester accounts
742 function isNewUserTesterAllowed () {
743         // By default only admins are allowed
744         if (!isAdmin()) {
745                 // This should not happen and must be fixed
746                 reportBug(__FUNCTION__, __LINE__, 'isAdmin()=false - Not allowed.');
747         } // END - if
748
749         // Are more tester accounts allowed?
750         $isAllowed = (getTotalTesterUsers() < bigintval(getTesterUserMaximum() + 1));
751
752         // Return result
753         return $isAllowed;
754 }
755
756 // "Getter" for next free tester account number
757 function getNextFreeTesterUserNumber () {
758         // Get current total amount because we start with zero
759         $nextTester = getTotalTesterUsers();
760
761         // Prepend zeros
762         $nextTester = padLeftZero($nextTester, 6);
763
764         // Return it
765         return $nextTester;
766 }
767
768 // Wrapper function to return a selection box for tester user default referral id
769 function addTesterUserDefaultRefidSelectionBox ($fieldName = 'tester_user_default_refid') {
770         // Return it
771         return addMemberSelectionBox(getConfig('tester_user_default_refid'), FALSE, TRUE, TRUE, $fieldName, " WHERE `surname` LIKE '{?tester_user_surname_prefix?}%'");
772 }
773
774 // Checks whether given surname is a test user name
775 function isTesterUserName ($surname) {
776         // Determine it
777         return (substr($surname, 0, strlen(getTesterUserSurnamePrefix())) == getTesterUserSurnamePrefix());
778 }
779
780 // Creates a tester account from given POST data
781 function createTesterUserAccount () {
782         // Add generated surname
783         setPostRequestElement('surname', (getTesterUserSurnamePrefix() . getNextFreeTesterUserNumber()));
784
785         // Is the registration data complete?
786         if (!isRegistrationDataComplete()) {
787                 // Then abort here
788                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'isRegistrationDataComplete()=false, please check if you e.g. have selected the required minimum of categories.');
789                 return FALSE;
790         } // END - if
791
792         // Do registration
793         $isCreated = doUserRegistration();
794
795         // Remove cache to force recalculation of total tester accounts
796         unset($GLOBALS['getTotalTesterUsers']);
797
798         // Return status
799         return $isCreated;
800 }
801
802 // Checks whether the given sub id is fused by current member
803 function isMemberSubIdFree ($subId) {
804         // Only do this for logged-in members
805         assert(isMember());
806
807         // Check it
808         $isFree = (countSumTotalData(getMemberId(), 'user_subids', 'id', 'userid', TRUE, sprintf(" AND `subid`='%s'", $subId)) == 0);
809
810         // Return result
811         return $isFree;
812 }
813
814 // Checks whether the sub id is valid
815 function isValidSubId ($subId) {
816         // First convert any spaces/dashes to underscores
817         $subId = str_replace(' ', '_', str_replace('-', '_', $subId));
818
819         // Then filter out any unwanted characters
820         $subIdTest = preg_replace('/([^a-zA-Z0-9_])/', '', $subId);
821
822         // Is it valid?
823         return ($subId == $subIdTest);
824 } // END - if
825
826 // Prepares found sub id for updating in database
827 function prepareFoundSubId ($subId) {
828         // Then check if it is valid and available
829         if ((!isValidSubId($subId)) || (isMemberSubIdFree($subId))) {
830                 // Is not free or invalid
831                 $subId = FALSE;
832         } // END - if
833
834         // Return prepared sub id
835         return $subId;
836 }
837
838 // Validates sub id and returns FALSE if not valid
839 function validateSubId ($subId) {
840         // Then check if it is valid and available
841         if (!isValidSubId($subId)) {
842                 // Is not free or invalid
843                 $subId = FALSE;
844         } // END - if
845
846         // Return prepared sub id
847         return $subId;
848 }
849
850 // Prepares given sub id for inserting into database
851 function prepareSubId ($subId) {
852         // Then check if it is valid and available
853         if ((!isValidSubId($subId)) || (!isMemberSubIdFree($subId))) {
854                 // Is not free or invalid
855                 $subId = FALSE;
856         } // END - if
857
858         // Return prepared sub id
859         return $subId;
860 }
861
862 // Check whether given sub *id* is assigned to current member
863 function isUserSubIdAssignedToMember ($subId, $userid = NULL) {
864         // Is there cache?
865         if (!isset($GLOBALS[__FUNCTION__][$subId][$userid])) {
866                 // Determine it
867                 $GLOBALS[__FUNCTION__][$subId][$userid] = (
868                         (
869                                 // Is a userid set or current set?
870                                 (isValidId($userid)) || (isMember())
871                         ) && (
872                                 // .. and it assigned with subid's id?
873                                 countSumTotalData(
874                                         (isValidId($userid) ? $userid : getMemberId()),
875                                                 'user_subids',
876                                                 'id',
877                                                 'userid',
878                                                 TRUE,
879                                                 sprintf(' AND `id`=%s', bigintval($subId))
880                                 ) == 1
881                         )
882                 );
883         } // END - if
884
885         // Return cache
886         return $GLOBALS[__FUNCTION__][$subId][$userid];
887 }
888
889 // Getter for subid from given id number
890 function getSubId ($id) {
891         // Is there cache?
892         if (!isset($GLOBALS[__FUNCTION__][$id])) {
893                 // Check database for record
894                 $result = sqlQueryEscaped("SELECT `subid` FROM `{?_MYSQL_PREFIX?}_user_subids` WHERE `id`=%s LIMIT 1",
895                         array(bigintval($id)), __FUNCTION__, __LINE__);
896
897                 // Is there an entry?
898                 if (sqlNumRows($result) == 1) {
899                         // Load it
900                         list($GLOBALS[__FUNCTION__][$id]) = sqlFetchRow($result);
901                 } // END - if
902
903                 // Free result
904                 sqlFreeResult($result);
905         } // END - if
906
907         // Return cache
908         return $GLOBALS[__FUNCTION__][$id];
909 }
910
911 // "Getter for total count of current user's sub ids
912 function getTotalMemberSubIds () {
913         // Only do this for logged-in members
914         assert(isMember());
915
916         // Is there cache?
917         if (!isset($GLOBALS[__FUNCTION__])) {
918                 // Determine it
919                 $GLOBALS[__FUNCTION__] = countSumTotalData(getMemberId(), 'user_subids', 'id', 'userid', TRUE);
920         } // END - if
921
922         // Return cache
923         return $GLOBALS[__FUNCTION__];
924 }
925
926 // Displays generic user registration form
927 function doDisplayGenericUserRegistrationForm () {
928         // Do this only if form is sent
929         if (isFormSent()) {
930                 if (postRequestElement('agree') == '!') {
931                         registerOutputFailedMessage('HAVE_TO_AGREE');
932                 } // END - if
933
934                 if (postRequestElement('email') == '!') {
935                         registerOutputFailedMessage('ENTER_EMAIL');
936                         setPostRequestElement('email', '');
937                 } elseif (postRequestElement('email') == '?') {
938                         registerOutputFailedMessage('GUEST_EMAIL_IS_ALREADY_REGISTERED');
939                         setPostRequestElement('email', '');
940                 }
941
942                 if (postRequestElement('surname') == '!') {
943                         registerOutputFailedMessage('ENTER_SURNAME');
944                         setPostRequestElement('surname', '');
945                 } // END - if
946
947                 if (postRequestElement('family') == '!') {
948                         registerOutputFailedMessage('ENTER_FAMILY');
949                         setPostRequestElement('family', '');
950                 } // END - if
951
952                 if ((postRequestElement('password1') == '!') && (postRequestElement('password2') == '!')) {
953                         registerOutputFailedMessage('ENTER_BOTH_PASSWORDS');
954                 } elseif (postRequestElement('password1') == '!') {
955                         registerOutputFailedMessage('ENTER_PASSWORD1');
956                 } elseif (postRequestElement('password2') == '!') {
957                         registerOutputFailedMessage('ENTER_PASSWORD2');
958                 }
959
960                 if ((isset($GLOBALS['registration_weak_password'])) && ($GLOBALS['registration_weak_password'] === TRUE)) {
961                         registerOutputFailedMessage('GUEST_WEAK_PASSWORD');
962                 } // END - if
963
964                 if ((isset($GLOBALS['registration_ip_timeout'])) && ($GLOBALS['registration_ip_timeout'] === TRUE)) {
965                         registerOutputFailedMessage('REMOTE_ADDR_TIMEOUT');
966                 } // END - if
967
968                 if ((!empty($GLOBALS['registration_selected_cats'])) && ($GLOBALS['registration_selected_cats'] < getLeastCats())) {
969                         registerOutputFailedMessage('', '{--CHOOSE_MORE_CATEGORIES--}');
970                 } // END - if
971         } // END - if
972
973         // Generate birthday selection
974         $content['birthday_selection'] = generateDayMonthYearSelectionBox(postRequestElement('day'),postRequestElement('month'),postRequestElement('year'));
975
976         // ZIP codes are numerical values
977         $content['zip'] = '';
978         if ((isPostRequestElementSet('zip')) && (isValidNumber(postRequestElement('zip')))) {
979                 $content['zip'] = bigintval(postRequestElement('zip'));
980         } // END - if
981
982         // Other values
983         foreach (array('gender', 'surname', 'family', 'street_nr', 'city', 'email') as $entry) {
984                 $content[$entry] = sqlEscapeString(postRequestElement($entry));
985         } // END - foreach
986
987         // Set must-fillout fields
988         $content = runFilterChain('register_must_fillout', $content);
989
990         // Display registration form
991         loadTemplate('guest_register', FALSE, $content);
992 }
993
994 //-----------------------------------------------------------------------------
995 //                                EL code functions
996 //-----------------------------------------------------------------------------
997
998 // Expression call-back function for fetching user data
999 function doExpressionUser ($data) {
1000         // Use current userid by default
1001         $functionName = 'getMemberId()';
1002
1003         // User-related data, so is there a userid?
1004         if (!empty($data['matches'][4][$data['key']])) {
1005                 // Is there a userid or $userid?
1006                 if (substr($data['matches'][4][$data['key']], 0, 1) == '$') {
1007                         // Use dynamic call
1008                         $functionName = "getFetchedUserData('userid', " . $data['matches'][4][$data['key']] . ", '" . $data['callback'] . "')";
1009                 } elseif (!empty($data['matches'][4][$data['key']])) {
1010                         // Is there a number or a dollar sign in front of it?
1011                         if (preg_replace('/[^0123456789]/', '', $data['matches'][4][$data['key']]) != $data['matches'][4][$data['key']]) {
1012                                 // Possible database column, so get it again
1013                                 $data['matches'][4][$data['key']] = "getFetchedUserData('userid', getMemberId(), '" . $data['matches'][4][$data['key']] . "')";
1014                         } // END - if
1015
1016                         // Fix all together
1017                         $functionName = "getFetchedUserData('userid', " . $data['matches'][4][$data['key']] . ", '" . $data['callback'] . "')";
1018                 }
1019         } elseif ((!empty($data['callback'])) && (isValidUserData())) {
1020                 // "Call-back" alias column for current logged in user's data
1021                 $functionName = "getUserData('" . $data['callback'] . "')";
1022         }
1023
1024         // Is there another function to run (e.g. translations)
1025         if (!empty($data['extra_func'])) {
1026                 // Surround the original function call with it
1027                 $functionName = $data['extra_func'] . '(' . $functionName . ')';
1028         } // END - if
1029         //* NOISY-DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'functionName=' . $functionName);
1030
1031         // Generate replacer
1032         $replacer = '{DQUOTE} . ' . $functionName . ' . {DQUOTE}';
1033
1034         // Now replace the code
1035         $code = replaceExpressionCode($data, $replacer);
1036
1037         // Return replaced code
1038         return $code;
1039 }
1040
1041 //-----------------------------------------------------------------------------
1042 //                             Template helper functions
1043 //-----------------------------------------------------------------------------
1044
1045 // Template call-back function for list_user admin function
1046 function doTemplateAdminListUserTitle ($template, $clear = FALSE) {
1047         // Init title with "all accounts"
1048         $code = '{--ADMIN_LIST_ALL_ACCOUNTS--}';
1049
1050         // Is there a 'status' or 'do' set?
1051         if (isGetRequestElementSet('status')) {
1052                 // Set title according to the 'status'
1053                 $code = sprintf("{--ADMIN_LIST_STATUS_%s_ACCOUNTS--}", strtoupper(getRequestElement('status')));
1054         } elseif (isGetRequestElementSet('do')) {
1055                 // Set title according to 'do'
1056                 $code = sprintf("{--ADMIN_LIST_DO_%s_ACCOUNTS--}", strtoupper(getRequestElement('do')));
1057         }
1058
1059         // Return the code
1060         return $code;
1061 }
1062
1063 // Template call-back function for displaying "username"
1064 function doTemplateDisplayUsername ($template, $clear = FALSE, $userid = NULL) {
1065         // Is a userid set?
1066         if (!isValidId($userid)) {
1067                 // Please don't call this without a valid userid
1068                 reportBug(__FUNCTION__, __LINE__, 'template=' . $template . ',clear=' . intval($clear) . ',userid[' . gettype($userid) . ']=' . intval($userid) . ' - Invalid userid provided.');
1069         } // END - if
1070
1071         // Is there cache?
1072         if (!isset($GLOBALS[__FUNCTION__][$userid])) {
1073                 // Generate code
1074                 $GLOBALS[__FUNCTION__][$userid] = $userid . ' ({%user,nickname,fixEmptyContentToDashes=' . $userid . '%})';
1075         } // END - if
1076
1077         // Return cache
1078         return $GLOBALS[__FUNCTION__][$userid];
1079 }
1080
1081 // ----------------------------------------------------------------------------
1082 //                             XML call-back functions
1083 // ----------------------------------------------------------------------------
1084
1085 // For 'doing' add subid, the column-index is required
1086 function addXmlSpecialMemberAddDoUserSubid () {
1087         // So set it all here
1088         $GLOBALS['__COLUMN_INDEX']['doXmlCallbackFunction']  = 'column';
1089         $GLOBALS['__XML_ARGUMENTS']['doXmlCallbackFunction']['column_index'] = 'column';
1090 }
1091
1092 // ----------------------------------------------------------------------------
1093 //                 Wrapper functions for configuration entries
1094 // ----------------------------------------------------------------------------
1095
1096 // Getter for user_alpha
1097 function getUserAlpha () {
1098         // Is there cache?
1099         if (!isset($GLOBALS[__FUNCTION__])) {
1100                 // Determine it
1101                 $GLOBALS[__FUNCTION__] = getConfig('user_alpha');
1102         } // END - if
1103
1104         // Return cache
1105         return $GLOBALS[__FUNCTION__];
1106 }
1107
1108 // Getter for user_limit
1109 function getUserLimit () {
1110         // Is there cache?
1111         if (!isset($GLOBALS[__FUNCTION__])) {
1112                 // Determine it
1113                 $GLOBALS[__FUNCTION__] = getConfig('user_limit');
1114         } // END - if
1115
1116         // Return cache
1117         return $GLOBALS[__FUNCTION__];
1118 }
1119
1120 // Getter for tester_user_surname_prefix
1121 function getTesterUserSurnamePrefix () {
1122         // Is there cache?
1123         if (!isset($GLOBALS[__FUNCTION__])) {
1124                 // Determine it
1125                 $GLOBALS[__FUNCTION__] = getConfig('tester_user_surname_prefix');
1126         } // END - if
1127
1128         // Return cache
1129         return $GLOBALS[__FUNCTION__];
1130 }
1131
1132 // Getter for tester_user_maximum
1133 function getTesterUserMaximum () {
1134         // Is there cache?
1135         if (!isset($GLOBALS[__FUNCTION__])) {
1136                 // Determine it
1137                 $GLOBALS[__FUNCTION__] = getConfig('tester_user_maximum');
1138         } // END - if
1139
1140         // Return cache
1141         return $GLOBALS[__FUNCTION__];
1142 }
1143
1144 // Getter for tester_user_check_cat
1145 function getTesterUserCheckCat () {
1146         // Is there cache?
1147         if (!isset($GLOBALS[__FUNCTION__])) {
1148                 // Determine it
1149                 $GLOBALS[__FUNCTION__] = getConfig('tester_user_check_cat');
1150         } // END - if
1151
1152         // Return cache
1153         return $GLOBALS[__FUNCTION__];
1154 }
1155
1156 // Getter for tester_user_gender
1157 function getTesterUserGender () {
1158         // Is there cache?
1159         if (!isset($GLOBALS[__FUNCTION__])) {
1160                 // Determine it
1161                 $GLOBALS[__FUNCTION__] = getConfig('tester_user_gender');
1162         } // END - if
1163
1164         // Return cache
1165         return $GLOBALS[__FUNCTION__];
1166 }
1167
1168 // Getter for tester_user_family
1169 function getTesterUserFamily () {
1170         // Is there cache?
1171         if (!isset($GLOBALS[__FUNCTION__])) {
1172                 // Determine it
1173                 $GLOBALS[__FUNCTION__] = getConfig('tester_user_family');
1174         } // END - if
1175
1176         // Return cache
1177         return $GLOBALS[__FUNCTION__];
1178 }
1179
1180 // Getter for tester_user_password
1181 function getTesterUserPassword () {
1182         // Is there cache?
1183         if (!isset($GLOBALS[__FUNCTION__])) {
1184                 // Determine it
1185                 $GLOBALS[__FUNCTION__] = getConfig('tester_user_password');
1186         } // END - if
1187
1188         // Return cache
1189         return $GLOBALS[__FUNCTION__];
1190 }
1191
1192 // Getter for tester_user_street_nr
1193 function getTesterUserStreetNr () {
1194         // Is there cache?
1195         if (!isset($GLOBALS[__FUNCTION__])) {
1196                 // Determine it
1197                 $GLOBALS[__FUNCTION__] = getConfig('tester_user_street_nr');
1198         } // END - if
1199
1200         // Return cache
1201         return $GLOBALS[__FUNCTION__];
1202 }
1203
1204 // Getter for tester_user_zip
1205 function getTesterUserZip () {
1206         // Is there cache?
1207         if (!isset($GLOBALS[__FUNCTION__])) {
1208                 // Determine it
1209                 $GLOBALS[__FUNCTION__] = getConfig('tester_user_zip');
1210         } // END - if
1211
1212         // Return cache
1213         return $GLOBALS[__FUNCTION__];
1214 }
1215
1216 // Getter for tester_user_city
1217 function getTesterUserCity () {
1218         // Is there cache?
1219         if (!isset($GLOBALS[__FUNCTION__])) {
1220                 // Determine it
1221                 $GLOBALS[__FUNCTION__] = getConfig('tester_user_city');
1222         } // END - if
1223
1224         // Return cache
1225         return $GLOBALS[__FUNCTION__];
1226 }
1227
1228 // Getter for tester_user_email
1229 function getTesterUserEmail () {
1230         // Is there cache?
1231         if (!isset($GLOBALS[__FUNCTION__])) {
1232                 // Determine it
1233                 $GLOBALS[__FUNCTION__] = getConfig('tester_user_email');
1234         } // END - if
1235
1236         // Return cache
1237         return $GLOBALS[__FUNCTION__];
1238 }
1239
1240 // Getter for 'ap_subids' config entry
1241 function getApSubids () {
1242         // Is there cache?
1243         if (!isset($GLOBALS[__FUNCTION__])) {
1244                 // Determine it
1245                 $GLOBALS[__FUNCTION__] = getConfig('ap_subids');
1246         } // END - if
1247
1248         // Return cache
1249         return $GLOBALS[__FUNCTION__];
1250 }
1251
1252 // Determines whether 'ap_subids' is set to 'Y'
1253 function isApSubidsEnabled () {
1254         // Is there cache?
1255         if (!isset($GLOBALS[__FUNCTION__])) {
1256                 // Determine it
1257                 $GLOBALS[__FUNCTION__] = (getApSubids() == 'Y');
1258         } // END - if
1259
1260         // Return cache
1261         return $GLOBALS[__FUNCTION__];
1262 }
1263
1264 // Getter for 'ap_subids_since' config entry
1265 function getApSubidsSince () {
1266         // Is there cache?
1267         if (!isset($GLOBALS[__FUNCTION__])) {
1268                 // Determine it
1269                 $GLOBALS[__FUNCTION__] = getConfig('ap_subids_since');
1270         } // END - if
1271
1272         // Return cache
1273         return $GLOBALS[__FUNCTION__];
1274 }
1275
1276 // Getter for 'select_user_zero_refid' config entry
1277 function getSelectUserZeroRefid () {
1278         // Is there cache?
1279         if (!isset($GLOBALS[__FUNCTION__])) {
1280                 // Determine it
1281                 $GLOBALS[__FUNCTION__] = getConfig('select_user_zero_refid');
1282         } // END - if
1283
1284         // Return cache
1285         return $GLOBALS[__FUNCTION__];
1286 }
1287
1288 // [EOF]
1289 ?>