]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-config_points.php
Naming convention applied on language strings, check added to wrapper:
[mailer.git] / inc / modules / admin / what-config_points.php
index 4126c7efa9f9a23e0d53f8783d040342288744a0..30b0a9703b47697ffc1614b711ff1c4d7716653d 100644 (file)
@@ -40,7 +40,7 @@
 // Some security stuff...
 if ((!defined('__SECURITY')) || (!isAdmin())) {
        die();
-}
+} // END - if
 
 // Add description as navigation point
 addMenuDescription('admin', __FILE__);
@@ -97,7 +97,7 @@ if (isFormSent()) {
                                                SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_refdepths` SET `level`=%s, `percents`=%s WHERE `id`=%s LIMIT 1",
                                                        array(bigintval($value), convertCommaToDot(postRequestParameter('percents', $id)), $id), __FILE__, __LINE__);
                                        }
-                                       $message = '{--REF_DEPTHS_SAVED--}';
+                                       $message = '{--ADMIN_REFERAL_DEPTHS_SAVED--}';
                                        break;
 
                                case 'del':
@@ -105,7 +105,7 @@ if (isFormSent()) {
                                                SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_refdepths` WHERE `id`=%s LIMIT 1",
                                                array(bigintval($id)), __FILE__, __LINE__);
                                        }
-                                       $message = '{--REF_DEPTHS_DELETED--}';
+                                       $message = '{--ADMIN_REFERAL_DEPTHS_DELETED--}';
                                        break;
                        }
 
@@ -134,7 +134,7 @@ WHERE
                                addSql("UPDATE `{?_MYSQL_PREFIX?}_user_points` SET `locked_points`=0 WHERE `locked_points` > 0");
                        }
                        break;
-       } // END - if
+       } // END - switch
 
        if ((isSqlsValid()) && (isSqlsValid())) {
                if (strpos($GLOBALS['sqls'][0], 'INSERT') > -1) {
@@ -165,7 +165,7 @@ WHERE
        if (!empty($message)) {
                // When do so...
                loadTemplate('admin_settings_saved', false, $message);
-       }
+       } // END - if
 } elseif (getRequestParameter('sub') == 'settings') {
        // Setup some settings like direct pay and so on
        // Including new add-mode for one-time referal bonus
@@ -178,14 +178,14 @@ WHERE
        // One-time referal bonus add-mode
        foreach (array('reg_points_mode_ref','reg_points_mode_direct') as $entry) {
                $content[$entry] = '';
-       } // END - if
+       } // END - foreach
        $content['reg_points_mode_' . strtolower(getConfig('reg_points_mode'))] = ' checked="checked"';
 
        // Load template
        loadTemplate('admin_config_point_settings', false, $content);
 } elseif (getRequestParameter('sub') == 'ref') {
-       // 12                  3     32    2                  3     32    2               3            4     43    21
-       if ((isFormSent('del')) && (isPostRequestParameterSet('sel')) && (ifPostContainsSelections())) {
+       // 12          3     32    2                        3321
+       if ((isFormSent('del')) && (ifPostContainsSelections())) {
                // Delete entries
                $OUT = '';
                foreach (postRequestParameter('sel') as $id => $value) {
@@ -195,12 +195,12 @@ WHERE
                        SQL_FREERESULT($result);
 
                        // Load row template and switch color
-                       $OUT .= loadTemplate('admin_points_del_row', true, $content);
+                       $OUT .= loadTemplate('admin_del_reflevel_row', true, $content);
                } // END - foreach
 
                // Load main template
-               loadTemplate('admin_points_del', false, $OUT);
-       } elseif ((isFormSent('edit')) && (isPostRequestParameterSet('sel')) && (ifPostContainsSelections())) {
+               loadTemplate('admin_del_reflevel', false, $OUT);
+       } elseif ((isFormSent('edit')) && (ifPostContainsSelections())) {
                // Edit entries
                $OUT = '';
                foreach (postRequestParameter('sel') as $id => $value) {
@@ -210,11 +210,11 @@ WHERE
                        SQL_FREERESULT($result);
 
                        // Load row template and switch color
-                       $OUT .= loadTemplate('admin_points_edit_row', true, $content);
+                       $OUT .= loadTemplate('admin_edit_reflevel_row', true, $content);
                } // END - foreach
 
                // Load main template
-               loadTemplate('admin_points_edit', false, $OUT);
+               loadTemplate('admin_edit_reflevel', false, $OUT);
        } else {
                // Referal levels
                $result = SQL_QUERY("SELECT `id`, `level`, `percents` FROM `{?_MYSQL_PREFIX?}_refdepths` ORDER BY `level` ASC", __FILE__, __LINE__);
@@ -228,14 +228,14 @@ WHERE
                                $content['percents'] = translateComma($content['percents']);
 
                                // Load row template and switch color
-                               $OUT .= loadTemplate('admin_points_row', true, $content);
+                               $OUT .= loadTemplate('admin_list_reflevel_row', true, $content);
                        } // END - while
 
                        // Free memory
                        SQL_FREERESULT($result);
 
                        // Load main template
-                       loadTemplate('admin_points', false, $OUT);
+                       loadTemplate('admin_list_reflevel', false, $OUT);
                }
 
                // Form for adding new referal levels