Extension ext-earning introduced (unfinished), renamings:
[mailer.git] / inc / modules / guest / what-sponsor_reg.php
index ee9d1494dd37a6a0d7a4eb42de967629b3ce2c63..06319fc276076ef96e76e93b83875123c5fa5bc2 100644 (file)
@@ -56,145 +56,145 @@ if (isFormSent()) {
        // Check submitted form data
        //
        // 1. Salutation / Surname / family name
-       if (!isPostRequestParameterSet('gender')) {
+       if (!isPostRequestElementSet('gender')) {
                // Surname is empty
                $formErrors[] = '{--SPONSOR_NO_GENDER_SELECTED--}';
        } // END - if
 
-       if (!isPostRequestParameterSet('surname')) {
+       if (!isPostRequestElementSet('surname')) {
                // Surname is empty
-               $formErrors[] = '{--SPONSOR_SURNAME_IS_EMPTY--}';
+               $formErrors[] = '{--SPONSOR_SURNAME_EMPTY--}';
        } // END - if
 
-       if (!isPostRequestParameterSet('family')) {
+       if (!isPostRequestElementSet('family')) {
                // Surname is empty
-               $formErrors[] = '{--SPONSOR_FAMILY_IS_EMPTY--}';
+               $formErrors[] = '{--SPONSOR_FAMILY_EMPTY--}';
        } // END - if
 
        // 2. Company name
        // 012                          3         32    23                         4           43    3                         4          4321    12                         3         32    2                          3           3210
-       if (((!isPostRequestParameterSet('company')) && ((isPostRequestParameterSet('tax_ident')) || (isPostRequestParameterSet('position')))) || ((isPostRequestParameterSet('company')) && (!isPostRequestParameterSet('tax_ident')))) {
-               if (!isPostRequestParameterSet('company')) {
+       if (((!isPostRequestElementSet('company')) && ((isPostRequestElementSet('tax_ident')) || (isPostRequestElementSet('position')))) || ((isPostRequestElementSet('company')) && (!isPostRequestElementSet('tax_ident')))) {
+               if (!isPostRequestElementSet('company')) {
                        // Company name is empty
-                       $formErrors[] = '{--SPONSOR_COMPANY_IS_EMPTY--}';
-               } elseif (!isPostRequestParameterSet('tax_ident')) {
+                       $formErrors[] = '{--SPONSOR_COMPANY_EMPTY--}';
+               } elseif (!isPostRequestElementSet('tax_ident')) {
                        // Tax ident number name is empty
-                       $formErrors[] = '{--SPONSOR_TAX_IDENT_IS_EMPTY--}';
+                       $formErrors[] = '{--SPONSOR_TAX_IDENT_EMPTY--}';
                }
 
-               if (!isPostRequestParameterSet('position')) {
+               if (!isPostRequestElementSet('position')) {
                        // Not fatal but not nice: position in company is empty
-                       $formErrors[] = '{--SPONSOR_POSITION_IS_EMPTY--}';
+                       $formErrors[] = '{--SPONSOR_POSITION_EMPTY--}';
                } // END - if
        } // END - if
 
        // 3. Street and number
-       if (!isPostRequestParameterSet('street_nr1')) {
+       if (!isPostRequestElementSet('street_nr1')) {
                // Street name and house number are empty
-               $formErrors[] = '{--SPONSOR_STREET_NR1_IS_EMPTY--}';
-       } elseif ((isPostRequestParameterSet('street_nr2')) && (!isPostRequestParameterSet('street_nr1'))) {
+               $formErrors[] = '{--SPONSOR_STREET_NR1_EMPTY--}';
+       } elseif ((isPostRequestElementSet('street_nr2')) && (!isPostRequestElementSet('street_nr1'))) {
                // 1st line for street is empty, but 2nd line not
-               $formErrors[] = '{--SPONSOR_STREET_NR1_IS_EMPTY_2_NOT--}';
+               $formErrors[] = '{--SPONSOR_STREET_NR1_EMPTY_2_NOT--}';
        }
 
        // 4. Country code
-       if (!isPostRequestParameterSet('country')) {
+       if (!isPostRequestElementSet('country')) {
                // Country code is empty
-               $formErrors[] = '{--kSPONSOR_COUNTRY_IS_EMPTY--}';
-       } elseif (strlen(postRequestParameter('country')) != 2) {
+               $formErrors[] = '{--kSPONSOR_COUNTRY_EMPTY--}';
+       } elseif (strlen(postRequestElement('country')) != 2) {
                // Country code is invalid
                $formErrors[] = '{--SPONSOR_COUNTRY_IS_INVALID--}';
        }
 
        // 3. ZIP code
-       if (!isPostRequestParameterSet('zip')) {
+       if (!isPostRequestElementSet('zip')) {
                // ZIP code is empty
-               $formErrors[] = '{--SPONSOR_ZIP_IS_EMPTY--}';
-       } elseif (bigintval(postRequestParameter('zip')) != postRequestParameter('zip')) {
+               $formErrors[] = '{--SPONSOR_ZIP_EMPTY--}';
+       } elseif (bigintval(postRequestElement('zip')) != postRequestElement('zip')) {
                // ZIP is invalid
                $formErrors[] = '{--SPONSOR_ZIP_IS_INVALID--}';
-               setPostRequestParameter('zip', '');
+               setPostRequestElement('zip', '');
        }
 
        // 4. City
-       if (!isPostRequestParameterSet('city')) {
+       if (!isPostRequestElementSet('city')) {
                // City is empty
-               $formErrors[] = '{--SPONSOR_CITY_IS_EMPTY--}';
+               $formErrors[] = '{--SPONSOR_CITY_EMPTY--}';
        } // END - if
 
        // 5. Phone number
-       if (!isPostRequestParameterSet('phone')) {
+       if (!isPostRequestElementSet('phone')) {
                // City is empty
-               $formErrors[] = '{--SPONSOR_PHONE_IS_EMPTY--}';
+               $formErrors[] = '{--SPONSOR_PHONE_EMPTY--}';
        } // END - if
 
        // 6. Homepage URL
-       if (!isPostRequestParameterSet('url')) {
+       if (!isPostRequestElementSet('url')) {
                // Homepage URL is empty
-               $formErrors[] = '{--SPONSOR_URL_IS_EMPTY--}';
-       } elseif (!isUrlValid(postRequestParameter('url'))) {
+               $formErrors[] = '{--SPONSOR_URL_EMPTY--}';
+       } elseif (!isUrlValid(postRequestElement('url'))) {
                // Homepage URL is invalid
                $formErrors[] = '{--SPONSOR_URL_IS_INVALID--}';
-               setPostRequestParameter('url', '');
+               setPostRequestElement('url', '');
        }
 
        // 7. Light validation of email address
-       if ((!isPostRequestParameterSet('email')) || (postRequestParameter('email') == '@')) {
+       if ((!isPostRequestElementSet('email')) || (postRequestElement('email') == '@')) {
                // Email is invalid/empty
                $formErrors[] = '{--SPONSOR_EMAIL_IS_INVALID--}';
-       } elseif (isSponsorRegisteredWithEmail(postRequestParameter('email'))) {
+       } elseif (isSponsorRegisteredWithEmail(postRequestElement('email'))) {
                // Email already found in database!
                $formErrors[] = '{--SPONSOR_EMAIL_IS_ALREADY_REGISTERED--}';
-               setPostRequestParameter('email', '');
+               setPostRequestElement('email', '');
        }
 
        // 8. Pay type selected?
-       if (!isPostRequestParameterSet('pay_type')) {
+       if (!isPostRequestElementSet('pay_type')) {
                // Not pay type selected
                $formErrors[] = '{--SPONSOR_NO_PAYTYPE_SELECTED--}';
        } // END - if
 
        // 9. Interval of mails
-       if (!isPostRequestParameterSet('warning_interval')) {
+       if (!isPostRequestElementSet('warning_interval')) {
                // No warning interval selected
                $formErrors[] = '{--SPONSOR_NO_WARNING_INTERVAL_SELECTED--}';
        } // END - if
 
        // 10. Mail notifications disabled/enabled
-       if (!isPostRequestParameterSet('receive_warnings')) {
+       if (!isPostRequestElementSet('receive_warnings')) {
                // Option not selected!
                $formErrors[] = '{--SPONSOR_NO_RECEIVE_WARNINGS_SELECTED--}';
        } // END - if
 
        // Did he enter his password twice?
-       if (((!isPostRequestParameterSet('pass1')) || (!isPostRequestParameterSet('pass2'))) || ((postRequestParameter('pass1') != postRequestParameter('pass2')) && (isPostRequestParameterSet('pass1')) && (isPostRequestParameterSet('pass2')))) {
-               if ((postRequestParameter('pass1') != postRequestParameter('pass2')) && (isPostRequestParameterSet('pass1')) && (isPostRequestParameterSet('pass2'))) {
+       if (((!isPostRequestElementSet('pass1')) || (!isPostRequestElementSet('pass2'))) || ((postRequestElement('pass1') != postRequestElement('pass2')) && (isPostRequestElementSet('pass1')) && (isPostRequestElementSet('pass2')))) {
+               if ((postRequestElement('pass1') != postRequestElement('pass2')) && (isPostRequestElementSet('pass1')) && (isPostRequestElementSet('pass2'))) {
                        // Passwords missmatch
                        $formErrors[] = '{--SPONSOR_PASSWORDS_MISMATCH--}';
                } else {
-                       if (!isPostRequestParameterSet('pass1')) {
+                       if (!isPostRequestElementSet('pass1')) {
                                // Password 1 is empty
                                $formErrors[] = '{--SPONSOR_PASSWORD1_EMPTY--}';
                        }
 
-                       if (!isPostRequestParameterSet('pass2')) {
+                       if (!isPostRequestElementSet('pass2')) {
                                // Password 2 is empty
                                $formErrors[] = '{--SPONSOR_PASSWORD2_EMPTY--}';
                        }
                }
-       } elseif (strlen(postRequestParameter('pass1')) < getPassLen()) {
+       } elseif (strlen(postRequestElement('pass1')) < getPassLen()) {
                // Password is to short!
                $formErrors[] = '{--SPONSOR_PASSWORD_TOO_SHORT--}';
        }
 
        // Check if he has accepted the terms&conditions
-       if (!isPostRequestParameterSet('terms')) {
+       if (!isPostRequestElementSet('terms')) {
                // Homepage URL is empty
                $formErrors[] = '{--SPONSOR_TERMS_NOT_ACCEPTED--}';
        } // END - if
 
        // If there is something wrong/missing stop registration
-       if (count($formErrors) > 0) unsetPostRequestParameter('ok');
+       if (count($formErrors) > 0) unsetPostRequestElement('ok');
 } // END - if
 
 if ((isFormSent()) && (count($formErrors) == 0)) {
@@ -205,24 +205,26 @@ if ((isFormSent()) && (count($formErrors) == 0)) {
        );
 
        // Calulate points
-       $result = SQL_QUERY_ESC("SELECT
-       (`pay_rate` * `pay_min_count`) AS `points`,`pay_min_count`,`pay_currency`
+       $result = SQL_QUERY_ESC('SELECT
+       (`pay_rate` * `pay_min_count`) AS `points`,
+       `pay_min_count`,
+       `pay_currency`
 FROM
        `{?_MYSQL_PREFIX?}_sponsor_paytypes`
 WHERE
        `id`=%s
-LIMIT 1",
-               array(postRequestParameter('pay_type')), __FILE__, __LINE__);
+LIMIT 1',
+               array(postRequestElement('pay_type')), __FILE__, __LINE__);
        list($points, $pay, $curr) = SQL_FETCHROW($result);
 
        // Free memory
        SQL_FREERESULT($result);
 
        // Add points to array
-       postRequestParameter('points_amount', $points);
-       postRequestParameter('points_used'  , '0.00000');
-       postRequestParameter('last_payment' , $pay);
-       postRequestParameter('last_currency', $curr);
+       postRequestElement('points_amount', $points);
+       postRequestElement('points_used'  , '0.00000');
+       postRequestElement('last_payment' , $pay);
+       postRequestElement('last_currency', $curr);
 
        // Register sponsor but never ever update here!
        $message = doProcessSponsorFormRequest($messageArray);
@@ -260,7 +262,7 @@ ORDER BY
                if (count($formErrors) > 0) {
                        // Some found... :-(
                        foreach (array('company','position','tax_ident','surname','family','street_nr1','street_nr2','country','zip','city','phone','fax','cell','email','url') as $entry) {
-                               $content[$entry]    = postRequestParameter($entry);
+                               $content[$entry]    = postRequestElement($entry);
                        } // END - foreach
 
                        // Init receive selection
@@ -268,7 +270,7 @@ ORDER BY
                        $content['receive_warnings_n'] = '';
 
                        // Check for receive_warnings
-                       $content['receive_warnings_' . strtolower(postRequestParameter('receive_warnings'))] = ' selected="selected"';
+                       $content['receive_warnings_' . strtolower(postRequestElement('receive_warnings'))] = ' selected="selected"';
                        $OUT = '';
 
                        // Errors found?
@@ -288,9 +290,9 @@ ORDER BY
                        $content['refid'] = 0;
 
                        // Is the referal id valid?
-                       if ((isPostRequestParameterSet('refid')) && (isValidUserId(postRequestParameter('refid')))) {
+                       if ((isPostRequestElementSet('refid')) && (isValidUserId(postRequestElement('refid')))) {
                                // Transfer referal id
-                               $content['refid'] = bigintval(postRequestParameter('refid'));
+                               $content['refid'] = bigintval(postRequestElement('refid'));
                        } // END - if
                } // END - if
 
@@ -298,7 +300,7 @@ ORDER BY
                loadTemplate('guest_sponsor_reg', false, $content);
        } else {
                // Nothing added so far
-               displayMessage('{--SPONSOR_PAYMENT_LIST_IS_EMPTY--}');
+               displayMessage('{--SPONSOR_PAYMENT_LIST_EMPTY--}');
        }
 
        // Free memory