]> git.mxchange.org Git - mailer.git/blob - inc/libs/register_functions.php
mailer project continued:
[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 ((!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('pass1')) == 0) && (strlen(postRequestElement('pass2')) == 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('pass1', $randomPassword);
198                         setPostRequestElement('pass2', $randomPassword);
199                 } else {
200                         // Not allowed or no recent extension version
201                         setPostRequestElement('pass1', '!');
202                         setPostRequestElement('pass2', '!');
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('pass1')) || (!isPostRequestElementSet('pass2'))) || ((postRequestElement('pass1') != postRequestElement('pass2')) && (isPostRequestElementSet('pass1')) && (isPostRequestElementSet('pass2')))) {
212                 if ((postRequestElement('pass1') != postRequestElement('pass2')) && (isPostRequestElementSet('pass1')) && (isPostRequestElementSet('pass2'))) {
213                         // Both passwords did not match
214                         setPostRequestElement('pass1', '!');
215                         setPostRequestElement('pass2', '!');
216                         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'User did not enter same passwords.');
217                 } else {
218                         if (!isPostRequestElementSet('pass1')) {
219                                 // Password 1 is empty
220                                 setPostRequestElement('pass1', '!');
221                                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'User did not enter pass1.');
222                         } else {
223                                 // Password 2 is empty
224                                 setPostRequestElement('pass1', '');
225                         }
226                         if (!isPostRequestElementSet('pass2')) {
227                                 // Password 2 is empty
228                                 setPostRequestElement('pass2', '!');
229                                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'User did not enter pass2.');
230                         } else {
231                                 // Password 1 is empty
232                                 setPostRequestElement('pass2', '');
233                         }
234                 }
235                 $isOkay = false;
236         } // END - if
237
238         // Is the password long enouth?
239         if ((strlen(postRequestElement('pass1')) < 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));
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         );
296
297         // Run the pre-registration chain
298         $filterData = runFilterChain('pre_user_registration', $filterData);
299
300         // Did the initialization work?
301         if ($filterData['init_done'] === false) {
302                 // Something bad happened!
303                 displayMessage('{--PRE_USER_REGISTRATION_FAILED--}');
304
305                 // Stop here
306                 return false;
307         } // END - if
308
309         // Create user's account...
310         SQL_QUERY_ESC("INSERT INTO
311         `{?_MYSQL_PREFIX?}_user_data`
312 (
313         `gender`,
314         `surname`,
315         `family`,
316         `street_nr`,
317         %s,
318         `zip`,
319         `city`,
320         `email`,
321         `birth_day`,
322         `birth_month`,
323         `birth_year`,
324         `password`,
325         `max_mails`,
326         `receive_mails`,
327         `refid`,
328         `status`,
329         `user_hash`,
330         `REMOTE_ADDR`,
331         `joined`,
332         `last_update`,
333         `ref_payout`
334         " . $GLOBALS['register_sql_columns'] . "
335 ) VALUES (
336         '%s',
337         '%s',
338         '%s',
339         '%s',
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         '{%%pipe,detectRemoteAddr%%}',
354         UNIX_TIMESTAMP(),
355         UNIX_TIMESTAMP(),
356         {?ref_payout?}
357         " . $GLOBALS['register_sql_data'] . "
358 )",
359         array(
360                 $GLOBALS['register_country_row'],
361                 substr(postRequestElement('gender'), 0, 1),
362                 postRequestElement('surname'),
363                 postRequestElement('family'),
364                 postRequestElement('street_nr'),
365                 $GLOBALS['register_country_data'],
366                 bigintval(postRequestElement('zip')),
367                 postRequestElement('city'),
368                 postRequestElement('email'),
369                 bigintval(postRequestElement('day')),
370                 bigintval(postRequestElement('month')),
371                 bigintval(postRequestElement('year')),
372                 generateHash(postRequestElement('pass1')),
373                 bigintval(postRequestElement('max_mails')),
374                 bigintval(postRequestElement('max_mails')),
375                 convertZeroToNull(postRequestElement('refid')),
376                 postRequestElement('status'),
377                 $GLOBALS['register_confirm_hash']
378         ), __FUNCTION__, __LINE__);
379
380         // Get his userid
381         $filterData['register_insert_id'] = bigintval(SQL_INSERTID());
382
383         // Did this work?
384         if (!isValidUserId($filterData['register_insert_id'])) {
385                 // Something bad happened!
386                 displayMessage('{--USER_NOT_REGISTERED--}');
387
388                 // Stop here
389                 return false;
390         } // END - if
391
392         // Shall we reset random refid? Only possible with latest ext-user
393         if (isExtensionInstalledAndNewer('user', '0.3.4')) {
394                 // Reset all accounts, registration is done
395                 SQL_QUERY('UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `rand_confirmed`=0', __FUNCTION__, __LINE__);
396         } // END - if
397
398         // Update referral table
399         updateReferralCounter($filterData['register_insert_id']);
400
401         // Write his welcome-points
402         initReferralSystem();
403         addPointsThroughReferralSystem(
404                 // Subject
405                 'register_welcome',
406                 // New user's id
407                 $filterData['register_insert_id'],
408                 // Points
409                 getPointsRegister(),
410                 // Referral id (or NULL if none set)
411                 convertZeroToNull(postRequestElement('refid'))
412         );
413
414         // Write catgories
415         if (ifPostContainsSelections('cat')) {
416                 // Write all entries
417                 foreach (postRequestElement('cat') as $categoryId => $joined) {
418                         // "Join" this group?
419                         if ($joined == 'Y') {
420                                 // Insert category entry
421                                 SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_user_cats` (`userid`, `cat_id`) VALUES (%s, %s)",
422                                         array(
423                                                 $filterData['register_insert_id'],
424                                                 bigintval($categoryId)
425                                         ), __FUNCTION__, __LINE__);
426                         } // END - if
427                 } // END - foreach
428         } // END - if
429
430         // Registration phase is done here, so for tester accounts we end here
431         if (((getExtensionVersion('user') >= '0.5.0')) && (isTesterUserName(postRequestElement('surname'))) && (ifTesterAccountsAllowed())) {
432                 // All fine here
433                 return true;
434         } // END - if
435
436         // ... rewrite a zero referral id to the main title
437         if (!isValidUserId(postRequestElement('refid'))) {
438                 setPostRequestElement('refid', getMainTitle());
439         } // END - if
440
441         // Is ZIP code set?
442         if (isPostRequestElementSet('zip')) {
443                 // Prepare data array for the email template
444                 // Start with the gender...
445                 $content = array(
446                         'hash'     => $GLOBALS['register_confirm_hash'],
447                         'userid'   => $filterData['register_insert_id'],
448                         'gender'   => SQL_ESCAPE(postRequestElement('gender')),
449                         'surname'  => SQL_ESCAPE(postRequestElement('surname')),
450                         'family'   => SQL_ESCAPE(postRequestElement('family')),
451                         'email'    => SQL_ESCAPE(postRequestElement('email')),
452                         'street'   => SQL_ESCAPE(postRequestElement('street_nr')),
453                         'city'     => SQL_ESCAPE(postRequestElement('city')),
454                         'zip'      => bigintval(postRequestElement('zip')),
455                         'country'  => $GLOBALS['register_country_data'],
456                         'refid'    => SQL_ESCAPE(postRequestElement('refid')),
457                         'password' => SQL_ESCAPE(postRequestElement('pass1')),
458                 );
459         } else {
460                 // No ZIP code entered
461                 $content = array(
462                         'hash'     => $GLOBALS['register_confirm_hash'],
463                         'userid'   => $filterData['register_insert_id'],
464                         'gender'   => SQL_ESCAPE(postRequestElement('gender')),
465                         'surname'  => SQL_ESCAPE(postRequestElement('surname')),
466                         'family'   => SQL_ESCAPE(postRequestElement('family')),
467                         'email'    => SQL_ESCAPE(postRequestElement('email')),
468                         'street'   => SQL_ESCAPE(postRequestElement('street_nr')),
469                         'city'     => SQL_ESCAPE(postRequestElement('city')),
470                         'zip'      => '',
471                         'country'  => $GLOBALS['register_country_data'],
472                         'refid'    => SQL_ESCAPE(postRequestElement('refid')),
473                         'password' => SQL_ESCAPE(postRequestElement('pass1')),
474                 );
475         }
476
477         // Continue with birthday...
478         switch (getLanguage()) {
479                 case 'de':
480                         $content['birthday'] = bigintval(postRequestElement('day')) . '.' . bigintval(postRequestElement('month')) . '.' . bigintval(postRequestElement('year'));
481                         break;
482
483                 default:
484                         $content['birthday'] = bigintval(postRequestElement('month')) . '/' . bigintval(postRequestElement('day')) . '/' . bigintval(postRequestElement('year'));
485                         break;
486         } // END - switch
487
488         // Display information to the user that he got mail and send it away
489         $messageGuest = loadEmailTemplate('guest_register_done', $content, $filterData['register_insert_id'], false);
490
491         // Send mail to user (confirmation link!)
492         sendEmail($filterData['register_insert_id'], '{--GUEST_CONFIRM_LINK_SUBJECT--}', $messageGuest);
493
494         // Send mail to admin
495         sendAdminNotification('{--ADMIN_NEW_ACCOUNT_SUBJECT--}', 'admin_register_done', $content, $filterData['register_insert_id']);
496
497         // All fine
498         return true;
499 }
500
501 //-----------------------------------------------------------------------------
502 //                      Wrapper functions for ext-register
503 //-----------------------------------------------------------------------------
504
505 // Getter for 'display_refid'
506 function getDisplayRefid () {
507         // Is the cache entry set?
508         if (!isset($GLOBALS[__FUNCTION__])) {
509                 // No, so determine it
510                 $GLOBALS[__FUNCTION__] = getConfig('display_refid');
511         } // END - if
512
513         // Return cached entry
514         return $GLOBALS[__FUNCTION__];
515 }
516
517 // Checks whether 'display_refid' is "YES"
518 function isDisplayRefidEnabled () {
519         // Is the cache entry set?
520         if (!isset($GLOBALS[__FUNCTION__])) {
521                 // No, so determine it
522                 $GLOBALS[__FUNCTION__] = (getDisplayRefid() == 'Y');
523         } // END - if
524
525         // Return cached entry
526         return $GLOBALS[__FUNCTION__];
527 }
528
529 // Getter for 'ip_timeout'
530 function getIpTimeout () {
531         // Is the cache entry set?
532         if (!isset($GLOBALS[__FUNCTION__])) {
533                 // No, so determine it
534                 $GLOBALS[__FUNCTION__] = getConfig('ip_timeout');
535         } // END - if
536
537         // Return cached entry
538         return $GLOBALS[__FUNCTION__];
539 }
540
541 // Getter for 'register_default'
542 function getRegisterDefault () {
543         // Is the cache entry set?
544         if (!isset($GLOBALS[__FUNCTION__])) {
545                 // No, so determine it
546                 $GLOBALS[__FUNCTION__] = getConfig('register_default');
547         } // END - if
548
549         // Return cached entry
550         return $GLOBALS[__FUNCTION__];
551 }
552
553 // Checks whether 'register_default' is "YES"
554 function isRegisterDefaultEnabled () {
555         // Is the cache entry set?
556         if (!isset($GLOBALS[__FUNCTION__])) {
557                 // No, so determine it
558                 $GLOBALS[__FUNCTION__] = (getRegisterDefault() == 'Y');
559         } // END - if
560
561         // Return cached entry
562         return $GLOBALS[__FUNCTION__];
563 }
564
565 // Getter for 'register_generate_password_empty'
566 function getRegisterGeneratePasswordEmpty () {
567         // Is the cache entry set?
568         if (!isset($GLOBALS[__FUNCTION__])) {
569                 // No, so determine it
570                 $GLOBALS[__FUNCTION__] = getConfig('register_generate_password_empty');
571         } // END - if
572
573         // Return cached entry
574         return $GLOBALS[__FUNCTION__];
575 }
576
577 // Checks whether 'register_generate_password_empty' is "YES"
578 function isRegisterGeneratePasswordEmptyEnabled () {
579         // Is the cache entry set?
580         if (!isset($GLOBALS[__FUNCTION__])) {
581                 // No, so determine it
582                 $GLOBALS[__FUNCTION__] = (getRegisterGeneratePasswordEmpty() == 'Y');
583         } // END - if
584
585         // Return cached entry
586         return $GLOBALS[__FUNCTION__];
587 }
588
589 // ----------------------------------------------------------------------------
590 //                            Template helper functions
591 // ----------------------------------------------------------------------------
592
593 // Template helper for generating a category selection table for admin area with given configuration entry
594 function doTemplateAdminRegisterCategoryTable ($templateName, $clear = false, $configEntry) {
595         // Call the inner function
596         return registerGenerateCategoryTable('admin', $configEntry);
597 }
598
599 // [EOF]
600 ?>