2c9c46a57aa0d8d21b2b7122dfa30e7c28a875e4
[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 - 2012 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 = SQL_QUERY_ESC("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 (SQL_NUMROWS($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                 SQL_FREERESULT($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 = SQL_QUERY('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 (!SQL_HASZERONUMS($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 = SQL_FETCHARRAY($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                 SQL_FREERESULT($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_short_password'] = FALSE;
146         $GLOBALS['registration_selected_cats']  = '0';
147
148         // Default is okay
149         $isOkay = TRUE;
150
151         // First we only check the submitted data then we continue... :)
152         //
153         // Did he agree to the terms of usage?
154         if (postRequestElement('agree') != 'Y') {
155                 setPostRequestElement('agree', '!');
156                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'agree=N - User did not agree with terms of usage.');
157                 $isOkay = FALSE;
158         } // END - if
159
160         // Did he enter a valid email address? (we really don't care about
161         // that, he has to click on a confirmation link :P )
162         if ((!isAdmin()) && ((!isPostRequestElementSet('email')) || (!isEmailValid(postRequestElement('email'))))) {
163                 setPostRequestElement('email', '!');
164                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'User did not enter proper email address.');
165                 $isOkay = FALSE;
166         } // END - if
167
168         // And what about surname and family's name?
169         if (!isPostRequestElementSet('surname')) {
170                 setPostRequestElement('surname', '!');
171                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'User did not enter surname.');
172                 $isOkay = FALSE;
173         } // END - if
174         if (!isPostRequestElementSet('family')) {
175                 setPostRequestElement('family', '!');
176                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'User did not enter family name.');
177                 $isOkay = FALSE;
178         } // END - if
179
180         // Get temporary array for modification
181         $postArray = postRequestArray();
182
183         // Check for required fields
184         $isOkay = ($isOkay && ifRequiredRegisterFieldsAreSet($postArray));
185
186         // Set it back in request
187         setPostRequestArray($postArray);
188
189         // Are both passwords zero length?
190         if ((strlen(postRequestElement('password1')) == 0) && (strlen(postRequestElement('password2')) == 0) && ($isOkay === TRUE)) {
191                 // Is the extension 'register' newer or equal 0.5.5?
192                 if ((isExtensionInstalledAndNewer('register', '0.5.5')) && (isRegisterGeneratePasswordEmptyEnabled())) {
193                         // Generate a random password
194                         $randomPassword = generatePassword();
195
196                         // Set it in both entries
197                         setPostRequestElement('password1', $randomPassword);
198                         setPostRequestElement('password2', $randomPassword);
199                 } else {
200                         // Not allowed or no recent extension version
201                         setPostRequestElement('password1', '!');
202                         setPostRequestElement('password2', '!');
203
204                         // ... which is both not okay
205                         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Random password generation not possible, isExtensionInstalledAndNewer(register, 0.5.5)=' . intval(isExtensionInstalledAndNewer('register', '0.5.5')) . ',isRegisterGeneratePasswordEmptyEnabled()=' . intval(isRegisterGeneratePasswordEmptyEnabled()));
206                         $isOkay = FALSE;
207                 }
208         } // END - if
209
210         // Did he enter his password twice?
211         if (((!isPostRequestElementSet('password1')) || (!isPostRequestElementSet('password2'))) || ((postRequestElement('password1') != postRequestElement('password2')) && (isPostRequestElementSet('password1')) && (isPostRequestElementSet('password2')))) {
212                 if ((postRequestElement('password1') != postRequestElement('password2')) && (isPostRequestElementSet('password1')) && (isPostRequestElementSet('password2'))) {
213                         // Both passwords did not match
214                         setPostRequestElement('password1', '!');
215                         setPostRequestElement('password2', '!');
216                         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'User did not enter same passwords.');
217                 } else {
218                         if (!isPostRequestElementSet('password1')) {
219                                 // Password 1 is empty
220                                 setPostRequestElement('password1', '!');
221                                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'User did not enter password1.');
222                         } else {
223                                 // Password 2 is empty
224                                 setPostRequestElement('password1', '');
225                         }
226                         if (!isPostRequestElementSet('password2')) {
227                                 // Password 2 is empty
228                                 setPostRequestElement('password2', '!');
229                                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'User did not enter password2.');
230                         } else {
231                                 // Password 1 is empty
232                                 setPostRequestElement('password2', '');
233                         }
234                 }
235                 $isOkay = FALSE;
236         } // END - if
237
238         // Is the password long enouth?
239         if ((strlen(postRequestElement('password1')) < getPassLen()) && ($isOkay === TRUE)) {
240                 $GLOBALS['registration_short_password'] = TRUE;
241                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'User did enter a short password.');
242                 $isOkay = FALSE;
243         } // END - if
244
245         // Do this check only when no admin is logged in
246         if (ifPostContainsSelections('cat')) {
247                 // Only continue with array
248                 foreach (postRequestElement('cat') as $id => $answer) {
249                         // Is this category choosen?
250                         if ($answer == 'Y') {
251                                 $GLOBALS['registration_selected_cats']++;
252                         } // END - if
253                 } // END - foreach
254         } // END - if
255
256         // Enougth categories selected?
257         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'isOkay=' . intval($isOkay) . ',selected=' . $GLOBALS['registration_selected_cats'] . '/' . getLeastCats());
258         $isOkay = (($isOkay) && ($GLOBALS['registration_selected_cats'] >= getLeastCats()));
259
260         if ((postRequestElement('email') != '!') && (isCheckDoubleEmailEnabled())) {
261                 // Does the email address already exists in our database?
262                 if ((isEmailTaken(postRequestElement('email'))) && (!isAdmin())) {
263                         setPostRequestElement('email', '?');
264                         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'User did enter a already used email address.');
265                         $isOkay = FALSE;
266                 } // END - if
267         } // END - if
268
269         // Check for IP timeout?
270         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'isOkay=' . intval($isOkay));
271         if ((!isAdmin()) && (getIpTimeout() > 0)) {
272                 // Check his IP number
273                 $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);
274                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'isOkay=' . intval($isOkay).',timeout='.intval($GLOBALS['registration_ip_timeout']));
275                 $isOkay = (($isOkay) && (!$GLOBALS['registration_ip_timeout']));
276         } // END - if
277
278         // Return result
279         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'isOkay=' . intval($isOkay) . ' - EXIT!');
280         return $isOkay;
281 }
282
283 // Do the registration
284 function doUserRegistration () {
285         // Do not register an account on absent ext-user
286         if (!isExtensionInstalled('user')) {
287                 // Please report this
288                 reportBug(__FUNCTION__, __LINE__, 'Tried to register a user account without ext-user installed.');
289         } // END - if
290
291         // Init filter data
292         $filterData = array(
293                 // Initialization not done by default
294                 'init_done' => FALSE,
295                 'post_data' => postRequestArray(),
296         );
297
298         // Init extra SQL data
299         initExtraRegistrationSql();
300
301         // Run the pre-registration chain
302         $filterData = runFilterChain('pre_user_registration', $filterData);
303
304         // Did the initialization work?
305         if ($filterData['init_done'] === FALSE) {
306                 // Something bad happened!
307                 displayMessage('{--PRE_USER_REGISTRATION_FAILED--}');
308
309                 // Stop here
310                 return FALSE;
311         } // END - if
312
313         // Create user's account...
314         SQL_QUERY_ESC("INSERT INTO
315         `{?_MYSQL_PREFIX?}_user_data`
316 (
317         `gender`,
318         `surname`,
319         `family`,
320         `street_nr`,
321         %s,
322         `zip`,
323         `city`,
324         `email`,
325         `birth_day`,
326         `birth_month`,
327         `birth_year`,
328         `password`,
329         `max_mails`,
330         `receive_mails`,
331         `refid`,
332         `status`,
333         `user_hash`,
334         `REMOTE_ADDR`,
335         `joined`,
336         `last_update`,
337         `ref_payout`
338         " . $GLOBALS['register_sql_columns'] . "
339 ) VALUES (
340         '%s',
341         '%s',
342         '%s',
343         '%s',
344         '%s',
345         %s,
346         '%s',
347         '%s',
348         %s,
349         %s,
350         %s,
351         '%s',
352         %s,
353         %s,
354         %s,
355         '%s',
356         '%s',
357         '{%%pipe,detectRemoteAddr%%}',
358         UNIX_TIMESTAMP(),
359         UNIX_TIMESTAMP(),
360         {?ref_payout?}
361         " . $GLOBALS['register_sql_data'] . "
362 )",
363         array(
364                 $GLOBALS['register_country_row'],
365                 substr(postRequestElement('gender'), 0, 1),
366                 postRequestElement('surname'),
367                 postRequestElement('family'),
368                 postRequestElement('street_nr'),
369                 $GLOBALS['register_country_data'],
370                 bigintval(postRequestElement('zip')),
371                 postRequestElement('city'),
372                 postRequestElement('email'),
373                 bigintval(postRequestElement('day')),
374                 bigintval(postRequestElement('month')),
375                 bigintval(postRequestElement('year')),
376                 generateHash(postRequestElement('password1')),
377                 bigintval(postRequestElement('max_mails')),
378                 bigintval(postRequestElement('max_mails')),
379                 convertZeroToNull(postRequestElement('refid')),
380                 postRequestElement('status'),
381                 $GLOBALS['register_confirm_hash']
382         ), __FUNCTION__, __LINE__);
383
384         // Get his userid
385         $filterData['register_insert_id'] = bigintval(SQL_INSERTID());
386
387         // Did this work?
388         if (!isValidId($filterData['register_insert_id'])) {
389                 // Something bad happened!
390                 displayMessage('{--USER_NOT_REGISTERED--}');
391
392                 // Stop here
393                 return FALSE;
394         } // END - if
395
396         // Shall we reset random refid? Only possible with latest ext-user
397         if (isExtensionInstalledAndNewer('user', '0.3.4')) {
398                 // Reset all accounts, registration is done
399                 SQL_QUERY('UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `rand_confirmed`=0', __FUNCTION__, __LINE__);
400         } // END - if
401
402         // Update referral table
403         updateReferralCounter($filterData['register_insert_id']);
404
405         // Write his welcome-points
406         initReferralSystem();
407         addPointsThroughReferralSystem(
408                 // Subject
409                 'register_welcome',
410                 // User's id number
411                 $filterData['register_insert_id'],
412                 // Points to add
413                 getPointsRegister(),
414                 // Referral id (or NULL if none set)
415                 convertZeroToNull(postRequestElement('refid'))
416         );
417
418         // Write catgories
419         if (ifPostContainsSelections('cat')) {
420                 // Init SQL
421                 $sql = 'INSERT INTO `{?_MYSQL_PREFIX?}_user_cats` (`userid`, `cat_id`) VALUES';
422
423                 // Write all entries
424                 foreach (postRequestElement('cat') as $categoryId => $joined) {
425                         // "Join" this group?
426                         if ($joined == 'Y') {
427                                 // Insert category entry
428                                 $sql .= ' (' . $filterData['register_insert_id'] . ', ' . bigintval($categoryId) . '),';
429                         } // END - if
430                 } // END - foreach
431
432                 // Run SQL without last commata
433                 SQL_QUERY(substr($sql, 0, -1), __FUNCTION__, __LINE__);
434         } // END - if
435
436         // Registration phase is done here, so for tester accounts we end here
437         if (((getExtensionVersion('user') >= '0.5.0')) && (isTesterUserName(postRequestElement('surname'))) && (ifTesterAccountsAllowed())) {
438                 // All fine here
439                 return TRUE;
440         } // END - if
441
442         // ... rewrite a zero referral id to the main title
443         if (!isValidId(postRequestElement('refid'))) {
444                 setPostRequestElement('refid', getMainTitle());
445         } // END - if
446
447         // Is ZIP code set?
448         if (isPostRequestElementSet('zip')) {
449                 // Prepare data array for the email template
450                 $content = array(
451                         'hash'     => $GLOBALS['register_confirm_hash'],
452                         'userid'   => $filterData['register_insert_id'],
453                         'gender'   => SQL_ESCAPE(postRequestElement('gender')),
454                         'surname'  => SQL_ESCAPE(postRequestElement('surname')),
455                         'family'   => SQL_ESCAPE(postRequestElement('family')),
456                         'email'    => SQL_ESCAPE(postRequestElement('email')),
457                         'street'   => SQL_ESCAPE(postRequestElement('street_nr')),
458                         'city'     => SQL_ESCAPE(postRequestElement('city')),
459                         'zip'      => bigintval(postRequestElement('zip')),
460                         'country'  => $GLOBALS['register_country_data'],
461                         'refid'    => SQL_ESCAPE(postRequestElement('refid')),
462                         'password' => SQL_ESCAPE(postRequestElement('password1')),
463                 );
464         } else {
465                 // No ZIP code entered
466                 $content = array(
467                         'hash'     => $GLOBALS['register_confirm_hash'],
468                         'userid'   => $filterData['register_insert_id'],
469                         'gender'   => SQL_ESCAPE(postRequestElement('gender')),
470                         'surname'  => SQL_ESCAPE(postRequestElement('surname')),
471                         'family'   => SQL_ESCAPE(postRequestElement('family')),
472                         'email'    => SQL_ESCAPE(postRequestElement('email')),
473                         'street'   => SQL_ESCAPE(postRequestElement('street_nr')),
474                         'city'     => SQL_ESCAPE(postRequestElement('city')),
475                         'zip'      => '',
476                         'country'  => $GLOBALS['register_country_data'],
477                         'refid'    => SQL_ESCAPE(postRequestElement('refid')),
478                         'password' => SQL_ESCAPE(postRequestElement('password1')),
479                 );
480         }
481
482         // Continue with birthday...
483         switch (getLanguage()) {
484                 case 'de':
485                         $content['birthday'] = bigintval(postRequestElement('day')) . '.' . bigintval(postRequestElement('month')) . '.' . bigintval(postRequestElement('year'));
486                         break;
487
488                 default:
489                         $content['birthday'] = bigintval(postRequestElement('month')) . '/' . bigintval(postRequestElement('day')) . '/' . bigintval(postRequestElement('year'));
490                         break;
491         } // END - switch
492
493         // Display information to the user that he got mail and send it away
494         $messageGuest = loadEmailTemplate('guest_register_done', $content, $filterData['register_insert_id'], FALSE);
495
496         // Send mail to user (confirmation link!)
497         sendEmail($filterData['register_insert_id'], '{--GUEST_CONFIRM_LINK_SUBJECT--}', $messageGuest);
498
499         // Send mail to admin
500         sendAdminNotification('{--ADMIN_NEW_ACCOUNT_SUBJECT--}', 'admin_register_done', $content, $filterData['register_insert_id']);
501
502         // All fine
503         return TRUE;
504 }
505
506 // Initialize extra registration SQL
507 function initExtraRegistrationSql () {
508         $GLOBALS['register_sql_columns'] = '';
509         $GLOBALS['register_sql_data']    = '';
510 }
511
512 // Add extra column for registration SQL
513 function addExtraRegistrationColumns ($column) {
514         // Add column
515         $GLOBALS['register_sql_columns'] .= $column;
516 }
517
518 // Add extra data for registration SQL
519 function addExtraRegistrationData ($data) {
520         // Add column
521         $GLOBALS['register_sql_data'] .= $data;
522 }
523
524 //-----------------------------------------------------------------------------
525 //                      Wrapper functions for ext-register
526 //-----------------------------------------------------------------------------
527
528 // Getter for 'display_refid'
529 function getDisplayRefid () {
530         // Is the cache entry set?
531         if (!isset($GLOBALS[__FUNCTION__])) {
532                 // No, so determine it
533                 $GLOBALS[__FUNCTION__] = getConfig('display_refid');
534         } // END - if
535
536         // Return cached entry
537         return $GLOBALS[__FUNCTION__];
538 }
539
540 // Checks whether 'display_refid' is "YES"
541 function isDisplayRefidEnabled () {
542         // Is the cache entry set?
543         if (!isset($GLOBALS[__FUNCTION__])) {
544                 // No, so determine it
545                 $GLOBALS[__FUNCTION__] = (getDisplayRefid() == 'Y');
546         } // END - if
547
548         // Return cached entry
549         return $GLOBALS[__FUNCTION__];
550 }
551
552 // Getter for 'ip_timeout'
553 function getIpTimeout () {
554         // Is the cache entry set?
555         if (!isset($GLOBALS[__FUNCTION__])) {
556                 // No, so determine it
557                 $GLOBALS[__FUNCTION__] = getConfig('ip_timeout');
558         } // END - if
559
560         // Return cached entry
561         return $GLOBALS[__FUNCTION__];
562 }
563
564 // Getter for 'register_default'
565 function getRegisterDefault () {
566         // Is the cache entry set?
567         if (!isset($GLOBALS[__FUNCTION__])) {
568                 // No, so determine it
569                 $GLOBALS[__FUNCTION__] = getConfig('register_default');
570         } // END - if
571
572         // Return cached entry
573         return $GLOBALS[__FUNCTION__];
574 }
575
576 // Checks whether 'register_default' is "YES"
577 function isRegisterDefaultEnabled () {
578         // Is the cache entry set?
579         if (!isset($GLOBALS[__FUNCTION__])) {
580                 // No, so determine it
581                 $GLOBALS[__FUNCTION__] = (getRegisterDefault() == 'Y');
582         } // END - if
583
584         // Return cached entry
585         return $GLOBALS[__FUNCTION__];
586 }
587
588 // Getter for 'register_generate_password_empty'
589 function getRegisterGeneratePasswordEmpty () {
590         // Is the cache entry set?
591         if (!isset($GLOBALS[__FUNCTION__])) {
592                 // No, so determine it
593                 $GLOBALS[__FUNCTION__] = getConfig('register_generate_password_empty');
594         } // END - if
595
596         // Return cached entry
597         return $GLOBALS[__FUNCTION__];
598 }
599
600 // Checks whether 'register_generate_password_empty' is "YES"
601 function isRegisterGeneratePasswordEmptyEnabled () {
602         // Is the cache entry set?
603         if (!isset($GLOBALS[__FUNCTION__])) {
604                 // No, so determine it
605                 $GLOBALS[__FUNCTION__] = (getRegisterGeneratePasswordEmpty() == 'Y');
606         } // END - if
607
608         // Return cached entry
609         return $GLOBALS[__FUNCTION__];
610 }
611
612 // ----------------------------------------------------------------------------
613 //                            Template helper functions
614 // ----------------------------------------------------------------------------
615
616 // Template helper for generating a category selection table for admin area with given configuration entry
617 function doTemplateAdminRegisterCategoryTable ($templateName, $clear = FALSE, $configEntry) {
618         // Call the inner function
619         return registerGenerateCategoryTable('admin', $configEntry);
620 }
621
622 // [EOF]
623 ?>