Rewrote some code, added templates/functions:
[mailer.git] / inc / libs / register_functions.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 07/10/2004 *
4  * ===================                          Last change: 07/10/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : register_functions.php                           *
8  * -------------------------------------------------------------------- *
9  * Short description : Special functions for register extension         *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Spezielle Funktion fuer register-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 - 2013 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 // Checks whether all required registration fields are set
44 function ifRequiredRegisterFieldsAreSet (&$array) {
45         // By default all is fine
46         $ret = TRUE;
47         foreach ($array as $key => $value) {
48                 // Check all fields that must register
49                 $result = sqlQueryEscaped("SELECT `id` FROM `{?_MYSQL_PREFIX?}_must_register` WHERE `field_name`='%s' AND `field_required`='Y' LIMIT 1",
50                         array($key), __FUNCTION__, __LINE__);
51
52                 // Entry found?
53                 if (sqlNumRows($result) == 1) {
54                         // Check if extension country is not found (you have to enter the 2-chars long country code) or
55                         // if extensions is present check if country code was selected
56                         //         01              2         21    12             3         32    234     5      54    4               43    34                      4    4      5      5432    2      3                      3210
57                         $country = ((!isExtensionActive('country')) || ((isExtensionActive('country')) && (((empty($value)) && ($key == 'cntry')) || (($key == 'country_code') && (!empty($value)))) && (!empty($array['country_code']))));
58                         if ((empty($value)) && ($country === FALSE)) {
59                                 // Required field not set
60                                 $array[$key] = '!';
61                                 $ret = FALSE;
62                         } // END - if
63                 } // END - if
64
65                 // Free result
66                 sqlFreeResult($result);
67         } // END - foreach
68
69         // Return result
70         return $ret;
71 }
72
73 // Generates a 'category table' for the registration form
74 function registerGenerateCategoryTable ($mode, $configEntry = 'register_default') {
75         // Init output
76         $OUT = '';
77
78         /*
79          * Guests are mostly not interested in how many members has choosen an
80          * individual category.
81          */
82         $whereStatement = "WHERE `visible`='Y' ";
83
84         // Admins are allowed to see every category...
85         if (isAdmin()) {
86                 $whereStatement = '';
87         } // END - if
88
89         // Look for categories
90         $result = sqlQuery('SELECT
91         `id`,
92         `cat`,
93         `visible`
94 FROM
95         `{?_MYSQL_PREFIX?}_cats`
96 ' . $whereStatement . '
97 ORDER BY
98         `sort` ASC',
99                 __FUNCTION__, __LINE__);
100
101         if (!ifSqlHasZeroNums($result)) {
102                 // List alle visible modules (or all to the admin)
103                 $OUT .= '<table border="0" cellspacing="0" cellpadding="0" width="100%">';
104                 while ($content = sqlFetchArray($result)) {
105                         // Prepare array for the template
106                         $content['default_yes'] = '';
107                         $content['default_no']  = '';
108
109                         // Mark categories
110                         if ((postRequestElement('cat', $content['id']) == 'Y') || ((getConfig($configEntry) == 'Y') && (!isPostRequestElementSet('cat', $content['id'])))) {
111                                 $content['default_yes'] = ' checked="checked"';
112                         } else {
113                                 $content['default_no']  = ' checked="checked"';
114                         }
115
116                         // Load template and switch color
117                         $OUT .= loadTemplate('guest_cat_row', TRUE, $content);
118                 } // END - while
119                 $OUT .= '</table>';
120
121                 // Free memory
122                 sqlFreeResult($result);
123         } else {
124                 // No categories setted up so far...
125                 $OUT .= displayMessage('{--NO_CATEGORIES_VISIBLE--}', TRUE);
126         }
127
128         // Return generated HTML code
129         return $OUT;
130 }
131
132 // Outputs a 'failed message'
133 function registerOutputFailedMessage ($messageId, $extra='') {
134         if (empty($messageId)) {
135                 outputHtml('<div class="bad">' . $extra . '</div>');
136         } else {
137                 outputHtml('<div class="bad">{--' . $messageId . '--}' . $extra . '</div>');
138         }
139 }
140
141 // Checks whether the registration data is complete
142 function isRegistrationDataComplete () {
143         // Init elements
144         $GLOBALS['registration_ip_timeout']    = FALSE;
145         $GLOBALS['registration_weak_password'] = FALSE;
146         $GLOBALS['registration_selected_cats'] = '0';
147
148         // Default is okay
149         $isOkay = TRUE;
150         $isRandom = FALSE;
151
152         // First we only check the submitted data then we continue... :)
153         //
154         // Did he agree to the terms of usage?
155         if (postRequestElement('agree') != 'Y') {
156                 setPostRequestElement('agree', '!');
157                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'agree=N - User did not agree with terms of usage.');
158                 $isOkay = FALSE;
159         } // END - if
160
161         // Did he enter a valid email address? (we really don't care about
162         // that, he has to click on a confirmation link :P )
163         if ((!isAdmin()) && ((!isPostRequestElementSet('email')) || (!isEmailValid(postRequestElement('email'))))) {
164                 setPostRequestElement('email', '!');
165                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'User did not enter proper email address.');
166                 $isOkay = FALSE;
167         } // END - if
168
169         // And what about surname and family's name?
170         if (!isPostRequestElementSet('surname')) {
171                 setPostRequestElement('surname', '!');
172                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'User did not enter surname.');
173                 $isOkay = FALSE;
174         } // END - if
175         if (!isPostRequestElementSet('family')) {
176                 setPostRequestElement('family', '!');
177                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'User did not enter family name.');
178                 $isOkay = FALSE;
179         } // END - if
180
181         // Get temporary array for modification
182         $postArray = postRequestArray();
183
184         // Check for required fields
185         $isOkay = ($isOkay && ifRequiredRegisterFieldsAreSet($postArray));
186
187         // Set it back in request
188         setPostRequestArray($postArray);
189
190         // Are both passwords zero length?
191         if ((strlen(postRequestElement('password1')) == 0) && (strlen(postRequestElement('password2')) == 0) && ($isOkay === TRUE)) {
192                 // Is the extension 'register' newer or equal 0.5.5?
193                 if ((isExtensionInstalledAndNewer('register', '0.5.5')) && (isRegisterGeneratePasswordEmptyEnabled())) {
194                         // Generate a random password
195                         $randomPassword = generatePassword();
196                         $isRandom = TRUE;
197
198                         // Set it in both entries
199                         setPostRequestElement('password1', $randomPassword);
200                         setPostRequestElement('password2', $randomPassword);
201                 } else {
202                         // Not allowed or no recent extension version
203                         setPostRequestElement('password1', '!');
204                         setPostRequestElement('password2', '!');
205
206                         // ... which is both not okay
207                         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Random password generation not possible, isExtensionInstalledAndNewer(register, 0.5.5)=' . intval(isExtensionInstalledAndNewer('register', '0.5.5')) . ',isRegisterGeneratePasswordEmptyEnabled()=' . intval(isRegisterGeneratePasswordEmptyEnabled()));
208                         $isOkay = FALSE;
209                 }
210         } // END - if
211
212         // Did he enter his password twice?
213         if (((!isPostRequestElementSet('password1')) || (!isPostRequestElementSet('password2'))) || ((postRequestElement('password1') != postRequestElement('password2')) && (isPostRequestElementSet('password1')) && (isPostRequestElementSet('password2')))) {
214                 if ((postRequestElement('password1') != postRequestElement('password2')) && (isPostRequestElementSet('password1')) && (isPostRequestElementSet('password2'))) {
215                         // Both passwords did not match
216                         setPostRequestElement('password1', '!');
217                         setPostRequestElement('password2', '!');
218                         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'User did not enter same passwords.');
219                 } else {
220                         if (!isPostRequestElementSet('password1')) {
221                                 // Password 1 is empty
222                                 setPostRequestElement('password1', '!');
223                                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'User did not enter password1.');
224                         } else {
225                                 // Password 2 is empty
226                                 setPostRequestElement('password1', '');
227                         }
228                         if (!isPostRequestElementSet('password2')) {
229                                 // Password 2 is empty
230                                 setPostRequestElement('password2', '!');
231                                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'User did not enter password2.');
232                         } else {
233                                 // Password 1 is empty
234                                 setPostRequestElement('password2', '');
235                         }
236                 }
237                 $isOkay = FALSE;
238         } // END - if
239
240         // Is the password strong enough?
241         if (($isRandom === FALSE) && (!isStrongPassword(postRequestElement('password1')))) {
242                 $GLOBALS['registration_weak_password'] = TRUE;
243                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'User did enter a short password.');
244                 $isOkay = FALSE;
245         } // END - if
246
247         // Do this check only when no admin is logged in
248         if (ifPostContainsSelections('cat')) {
249                 // Only continue with array
250                 foreach (postRequestElement('cat') as $id => $answer) {
251                         // Is this category choosen?
252                         if ($answer == 'Y') {
253                                 $GLOBALS['registration_selected_cats']++;
254                         } // END - if
255                 } // END - foreach
256         } // END - if
257
258         // Enougth categories selected?
259         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'isOkay=' . intval($isOkay) . ',selected=' . $GLOBALS['registration_selected_cats'] . '/' . getLeastCats());
260         $isOkay = (($isOkay) && ($GLOBALS['registration_selected_cats'] >= getLeastCats()));
261
262         // Check if email is taken, if configured
263         if ((isExtensionInstalledAndNewer('other', '0.3.0')) && (isCheckDoubleEmailEnabled()) && (postRequestElement('email') != '!') && (isEmailTaken(postRequestElement('email'))) && (!isAdmin())) {
264                 // Is already used
265                 setPostRequestElement('email', '?');
266                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'User did enter a already used email address.');
267                 $isOkay = FALSE;
268         } // END - if
269
270         // Check for IP timeout?
271         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'isOkay=' . intval($isOkay));
272         if ((!isAdmin()) && (getIpTimeout() > 0)) {
273                 // Check his IP number
274                 $GLOBALS['registration_ip_timeout'] = (countSumTotalData(detectRemoteAddr()  , 'user_data', 'userid', 'REMOTE_ADDR', TRUE, ' AND ((UNIX_TIMESTAMP() - `joined`) < {?ip_timeout?} OR (UNIX_TIMESTAMP() - `last_update`) < {?ip_timeout?})') == 1);
275                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'isOkay=' . intval($isOkay).',timeout='.intval($GLOBALS['registration_ip_timeout']));
276                 $isOkay = (($isOkay) && (!$GLOBALS['registration_ip_timeout']));
277         } // END - if
278
279         // Return result
280         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'isOkay=' . intval($isOkay) . ' - EXIT!');
281         return $isOkay;
282 }
283
284 // Do the registration
285 function doUserRegistration () {
286         // Do not register an account on absent ext-user
287         if (!isExtensionInstalled('user')) {
288                 // Please report this
289                 reportBug(__FUNCTION__, __LINE__, 'Tried to register a user account without ext-user installed.');
290         } // END - if
291
292         // Init filter data array
293         $filterData = array(
294                 // Registration status is always FALSE by default
295                 'status' => FALSE,
296         );
297
298         // Run filter chain for user registration
299         $filterData = runFilterChain('user_registration', $filterData);
300
301         // Return status
302         return $filterData['status'];
303 }
304
305 // Generic user registration
306 function doGenericUserRegistration () {
307         // Init extra SQL data
308         initExtraRegistrationSql();
309
310         // Init filter data
311         $filterData = array(
312                 // Initialization not done by default
313                 'init_done'   => FALSE,
314                 'post_data'   => postRequestArray(),
315                 'blacklisted' => '',
316                 'message'     => '{--PRE_USER_REGISTRATION_FAILED--}',
317         );
318
319         // Run the pre-registration chain
320         $filterData = runFilterChain('pre_user_registration', $filterData);
321
322         // Did the initialization work?
323         if ($filterData['init_done'] === FALSE) {
324                 // Something bad happened!
325                 displayMessage($filterData['message']);
326
327                 // Stop here
328                 return FALSE;
329         } // END - if
330
331         // Create user's account...
332         sqlQueryEscaped("INSERT INTO
333         `{?_MYSQL_PREFIX?}_user_data`
334 (
335         `gender`,
336         `surname`,
337         `family`,
338         `street_nr`,
339         %s,
340         `zip`,
341         `city`,
342         `email`,
343         `birth_day`,
344         `birth_month`,
345         `birth_year`,
346         `password`,
347         `max_mails`,
348         `receive_mails`,
349         `refid`,
350         `status`,
351         `user_hash`,
352         `REMOTE_ADDR`,
353         `joined`,
354         `last_update`,
355         `ref_payout`
356         " . $GLOBALS['register_sql_columns'] . "
357 ) VALUES (
358         '%s',
359         '%s',
360         '%s',
361         '%s',
362         '%s',
363         %s,
364         '%s',
365         '%s',
366         %s,
367         %s,
368         %s,
369         '%s',
370         %s,
371         %s,
372         %s,
373         '%s',
374         '%s',
375         '{%%pipe,detectRemoteAddr%%}',
376         UNIX_TIMESTAMP(),
377         UNIX_TIMESTAMP(),
378         {?ref_payout?}
379         " . $GLOBALS['register_sql_data'] . "
380 )",
381         array(
382                 $GLOBALS['register_country_row'],
383                 substr(postRequestElement('gender'), 0, 1),
384                 postRequestElement('surname'),
385                 postRequestElement('family'),
386                 postRequestElement('street_nr'),
387                 $GLOBALS['register_country_data'],
388                 bigintval(postRequestElement('zip')),
389                 postRequestElement('city'),
390                 postRequestElement('email'),
391                 bigintval(postRequestElement('day')),
392                 bigintval(postRequestElement('month')),
393                 bigintval(postRequestElement('year')),
394                 generateHash(postRequestElement('password1')),
395                 bigintval(postRequestElement('max_mails')),
396                 bigintval(postRequestElement('max_mails')),
397                 convertZeroToNull(postRequestElement('refid')),
398                 postRequestElement('status'),
399                 $GLOBALS['register_confirm_hash']
400         ), __FUNCTION__, __LINE__);
401
402         // Get his userid
403         $filterData['register_insert_id'] = getSqlInsertId();
404
405         // Did this work?
406         if (!isValidId($filterData['register_insert_id'])) {
407                 // Something bad happened!
408                 displayMessage('{--USER_NOT_REGISTERED--}');
409
410                 // Stop here
411                 return FALSE;
412         } // END - if
413
414         // Shall we reset random refid? Only possible with latest ext-user
415         if (isExtensionInstalledAndNewer('user', '0.3.4')) {
416                 // Reset all accounts, registration is done
417                 sqlQuery('UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `rand_confirmed`=0', __FUNCTION__, __LINE__);
418         } // END - if
419
420         // Update referral table
421         updateReferralCounter($filterData['register_insert_id']);
422
423         // Write his welcome-points
424         initReferralSystem();
425         addPointsThroughReferralSystem(
426                 // Subject
427                 'register_welcome',
428                 // User's id number
429                 $filterData['register_insert_id'],
430                 // Points to add
431                 getPointsRegister(),
432                 // Referral id (or NULL if none set)
433                 convertZeroToNull(postRequestElement('refid'))
434         );
435
436         // Write catgories
437         if (ifPostContainsSelections('cat')) {
438                 // Init SQL
439                 $sql = 'INSERT INTO `{?_MYSQL_PREFIX?}_user_cats` (`userid`, `cat_id`) VALUES';
440
441                 // Write all entries
442                 foreach (postRequestElement('cat') as $categoryId => $joined) {
443                         // "Join" this group?
444                         if ($joined == 'Y') {
445                                 // Insert category entry
446                                 $sql .= ' (' . $filterData['register_insert_id'] . ', ' . bigintval($categoryId) . '),';
447                         } // END - if
448                 } // END - foreach
449
450                 // Run SQL without last commata
451                 sqlQuery(substr($sql, 0, -1), __FUNCTION__, __LINE__);
452         } // END - if
453
454         // Registration phase is done here, so for tester accounts we end here
455         if (((getExtensionVersion('user') >= '0.5.0')) && (isTesterUserName(postRequestElement('surname'))) && (ifTesterAccountsAllowed())) {
456                 // All fine here
457                 return TRUE;
458         } // END - if
459
460         // ... rewrite a zero referral id to the main title
461         if (!isValidId(postRequestElement('refid'))) {
462                 setPostRequestElement('refid', getMainTitle());
463         } // END - if
464
465         // Is ZIP code set?
466         if (isPostRequestElementSet('zip')) {
467                 // Prepare data array for the email template
468                 $content = array(
469                         'hash'     => $GLOBALS['register_confirm_hash'],
470                         'userid'   => $filterData['register_insert_id'],
471                         'gender'   => sqlEscapeString(postRequestElement('gender')),
472                         'surname'  => sqlEscapeString(postRequestElement('surname')),
473                         'family'   => sqlEscapeString(postRequestElement('family')),
474                         'email'    => sqlEscapeString(postRequestElement('email')),
475                         'street'   => sqlEscapeString(postRequestElement('street_nr')),
476                         'city'     => sqlEscapeString(postRequestElement('city')),
477                         'zip'      => bigintval(postRequestElement('zip')),
478                         'country'  => $GLOBALS['register_country_data'],
479                         'refid'    => sqlEscapeString(postRequestElement('refid')),
480                         'password' => sqlEscapeString(postRequestElement('password1')),
481                 );
482         } else {
483                 // No ZIP code entered
484                 $content = array(
485                         'hash'     => $GLOBALS['register_confirm_hash'],
486                         'userid'   => $filterData['register_insert_id'],
487                         'gender'   => sqlEscapeString(postRequestElement('gender')),
488                         'surname'  => sqlEscapeString(postRequestElement('surname')),
489                         'family'   => sqlEscapeString(postRequestElement('family')),
490                         'email'    => sqlEscapeString(postRequestElement('email')),
491                         'street'   => sqlEscapeString(postRequestElement('street_nr')),
492                         'city'     => sqlEscapeString(postRequestElement('city')),
493                         'zip'      => '',
494                         'country'  => $GLOBALS['register_country_data'],
495                         'refid'    => sqlEscapeString(postRequestElement('refid')),
496                         'password' => sqlEscapeString(postRequestElement('password1')),
497                 );
498         }
499
500         // Continue with birthday...
501         switch (getLanguage()) {
502                 case 'de':
503                         $content['birthday'] = bigintval(postRequestElement('day')) . '.' . bigintval(postRequestElement('month')) . '.' . bigintval(postRequestElement('year'));
504                         break;
505
506                 default:
507                         $content['birthday'] = bigintval(postRequestElement('month')) . '/' . bigintval(postRequestElement('day')) . '/' . bigintval(postRequestElement('year'));
508                         break;
509         } // END - switch
510
511         // Display information to the user that he got mail and send it away
512         $messageGuest = loadEmailTemplate('guest_register_done', $content, $filterData['register_insert_id'], FALSE);
513
514         // Send mail to user (confirmation link!)
515         sendEmail($filterData['register_insert_id'], '{--GUEST_CONFIRM_LINK_SUBJECT--}', $messageGuest);
516
517         // Send mail to admin
518         sendAdminNotification('{--ADMIN_NEW_ACCOUNT_SUBJECT--}', 'admin_register_done', $content, $filterData['register_insert_id']);
519
520         // All fine
521         return TRUE;
522 }
523
524 // Initialize extra registration SQL
525 function initExtraRegistrationSql () {
526         $GLOBALS['register_sql_columns'] = '';
527         $GLOBALS['register_sql_data']    = '';
528 }
529
530 // Add extra column for registration SQL
531 function addExtraRegistrationColumns ($column) {
532         // Add column
533         $GLOBALS['register_sql_columns'] .= $column;
534 }
535
536 // Add extra data for registration SQL
537 function addExtraRegistrationData ($data) {
538         // Add column
539         $GLOBALS['register_sql_data'] .= $data;
540 }
541
542 //-----------------------------------------------------------------------------
543 //                      Wrapper functions for ext-register
544 //-----------------------------------------------------------------------------
545
546 // Getter for 'display_refid'
547 function getDisplayRefid () {
548         // Is the cache entry set?
549         if (!isset($GLOBALS[__FUNCTION__])) {
550                 // No, so determine it
551                 $GLOBALS[__FUNCTION__] = getConfig('display_refid');
552         } // END - if
553
554         // Return cached entry
555         return $GLOBALS[__FUNCTION__];
556 }
557
558 // Checks whether 'display_refid' is "Y"
559 function isDisplayRefidEnabled () {
560         // Is the cache entry set?
561         if (!isset($GLOBALS[__FUNCTION__])) {
562                 // No, so determine it
563                 $GLOBALS[__FUNCTION__] = (getDisplayRefid() == 'Y');
564         } // END - if
565
566         // Return cached entry
567         return $GLOBALS[__FUNCTION__];
568 }
569
570 // Getter for 'ip_timeout'
571 function getIpTimeout () {
572         // Is the cache entry set?
573         if (!isset($GLOBALS[__FUNCTION__])) {
574                 // No, so determine it
575                 $GLOBALS[__FUNCTION__] = getConfig('ip_timeout');
576         } // END - if
577
578         // Return cached entry
579         return $GLOBALS[__FUNCTION__];
580 }
581
582 // Getter for 'register_default'
583 function getRegisterDefault () {
584         // Is the cache entry set?
585         if (!isset($GLOBALS[__FUNCTION__])) {
586                 // No, so determine it
587                 $GLOBALS[__FUNCTION__] = getConfig('register_default');
588         } // END - if
589
590         // Return cached entry
591         return $GLOBALS[__FUNCTION__];
592 }
593
594 // Checks whether 'register_default' is "YES"
595 function isRegisterDefaultEnabled () {
596         // Is the cache entry set?
597         if (!isset($GLOBALS[__FUNCTION__])) {
598                 // No, so determine it
599                 $GLOBALS[__FUNCTION__] = (getRegisterDefault() == 'Y');
600         } // END - if
601
602         // Return cached entry
603         return $GLOBALS[__FUNCTION__];
604 }
605
606 // Getter for 'register_generate_password_empty'
607 function getRegisterGeneratePasswordEmpty () {
608         // Is the cache entry set?
609         if (!isset($GLOBALS[__FUNCTION__])) {
610                 // No, so determine it
611                 $GLOBALS[__FUNCTION__] = getConfig('register_generate_password_empty');
612         } // END - if
613
614         // Return cached entry
615         return $GLOBALS[__FUNCTION__];
616 }
617
618 // Checks whether 'register_generate_password_empty' is "YES"
619 function isRegisterGeneratePasswordEmptyEnabled () {
620         // Is the cache entry set?
621         if (!isset($GLOBALS[__FUNCTION__])) {
622                 // No, so determine it
623                 $GLOBALS[__FUNCTION__] = (getRegisterGeneratePasswordEmpty() == 'Y');
624         } // END - if
625
626         // Return cached entry
627         return $GLOBALS[__FUNCTION__];
628 }
629
630 // Getter for 'default_registration_provider'
631 function getDefaultRegistrationProvider () {
632         // Is the cache entry set?
633         if (!isset($GLOBALS[__FUNCTION__])) {
634                 // No, so determine it
635                 $GLOBALS[__FUNCTION__] = getConfig('default_registration_provider');
636         } // END - if
637
638         // Return cached entry
639         return $GLOBALS[__FUNCTION__];
640 }
641
642 // "Getter" for least_cats
643 function getLeastCats () {
644         // Is there cache?
645         if (!isset($GLOBALS[__FUNCTION__])) {
646                 // Determine it
647                 $GLOBALS[__FUNCTION__] = getConfig('least_cats');
648         } // END - if
649
650         // Return cache
651         return $GLOBALS[__FUNCTION__];
652 }
653
654 // ----------------------------------------------------------------------------
655 //                            Template helper functions
656 // ----------------------------------------------------------------------------
657
658 // Template helper for generating a category selection table for admin area with given configuration entry
659 function doTemplateAdminRegisterCategoryTable ($templateName, $clear = FALSE, $configEntry) {
660         // Call the inner function
661         return registerGenerateCategoryTable('admin', $configEntry);
662 }
663
664 // Template helper for generating a list of all activated user registration provider
665 function doTemplateGuestRegistrationList ($templateName, $clear = FALSE) {
666         // Init output
667         $content = '';
668
669         // Default is only activated provider
670         $addSql = " AND `provider_is_active`='Y'";
671
672         // Is admin logged-in?
673         if (isAdmin()) {
674                 // Then show all
675                 $addSql = '';
676         } // END - if
677
678         // Search for all
679         $result = sqlQuery("SELECT
680         `provider_name`,
681         `provider_extension`
682 FROM
683         `{?_MYSQL_PREFIX?}_user_register_provider`
684 WHERE
685         `provider_extension` != 'register'
686         " . $addSql . "
687 ORDER BY
688         `provider_name` ASC", __FUNCTION__, __LINE__);
689
690         // Are there entries?
691         if (sqlNumRows($result) > 0) {
692                 // Loop through all
693                 $row = '';
694                 while ($content = sqlFetchArray($result)) {
695                         // Load row template
696                         $row .= loadTemplate('guest_registration_provider_row', TRUE, $content);
697                 } // END - while
698
699                 // Load main template
700                 $content = loadTemplate('guest_registration_provider', TRUE, $row);
701         } else {
702                 // Nothing found
703                 $content = returnMessage('{--GUEST_EXTRA_REGISTRATION_PROVIDER_404--}');
704         }
705
706         // Free result
707         sqlFreeResult($result);
708
709         // Return the generated content
710         return $content;
711 }
712
713 // [EOF]
714 ?>