]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-config_points.php
More wrapper functions used, removed bigintval() which caused a lot trouble
[mailer.git] / inc / modules / admin / what-config_points.php
index 8f6056b541beee2744218db9318b15fce5bddead..1ec4d829b17dd7dac809ed7999e09905c8ebae92 100644 (file)
@@ -14,8 +14,6 @@
  * $Date::                                                            $ *
  * $Tag:: 0.2.1-FINAL                                                 $ *
  * $Author::                                                          $ *
- * Needs to be in all Files and every File needs "svn propset           *
- * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
  * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
@@ -40,7 +38,7 @@
 // Some security stuff...
 if ((!defined('__SECURITY')) || (!isAdmin())) {
        die();
-}
+} // END - if
 
 // Add description as navigation point
 addMenuDescription('admin', __FILE__);
@@ -100,7 +98,7 @@ if (isFormSent()) {
                                        $message = '{--ADMIN_REFERAL_DEPTHS_SAVED--}';
                                        break;
 
-                               case 'del':
+                               case 'delete':
                                        foreach (postRequestParameter('id') as $id => $value) {
                                                SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_refdepths` WHERE `id`=%s LIMIT 1",
                                                array(bigintval($id)), __FILE__, __LINE__);
@@ -134,7 +132,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) {
@@ -154,7 +152,7 @@ WHERE
                        rebuildCache('config', 'config');
                } else {
                        // Prepare failed-message
-                       $message = '<span class="admin_failed">{--SETTINGS_NOT_SAVED--}</span>';
+                       $message = '<span class="notice">{--SETTINGS_NOT_SAVED--}</span>';
                }
 
                // Remove SQL queries
@@ -165,7 +163,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 +176,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('delete')) && (ifPostContainsSelections())) {
                // Delete entries
                $OUT = '';
                foreach (postRequestParameter('sel') as $id => $value) {
@@ -195,12 +193,12 @@ WHERE
                        SQL_FREERESULT($result);
 
                        // Load row template and switch color
-                       $OUT .= loadTemplate('admin_del_points_row', true, $content);
+                       $OUT .= loadTemplate('admin_delete_reflevel_row', true, $content);
                } // END - foreach
 
                // Load main template
-               loadTemplate('admin_del_points', false, $OUT);
-       } elseif ((isFormSent('edit')) && (isPostRequestParameterSet('sel')) && (ifPostContainsSelections())) {
+               loadTemplate('admin_delete_reflevel', false, $OUT);
+       } elseif ((isFormSent('edit')) && (ifPostContainsSelections())) {
                // Edit entries
                $OUT = '';
                foreach (postRequestParameter('sel') as $id => $value) {
@@ -210,11 +208,11 @@ WHERE
                        SQL_FREERESULT($result);
 
                        // Load row template and switch color
-                       $OUT .= loadTemplate('admin_edit_points_row', true, $content);
+                       $OUT .= loadTemplate('admin_edit_reflevel_row', true, $content);
                } // END - foreach
 
                // Load main template
-               loadTemplate('admin_edit_points', 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__);
@@ -224,18 +222,15 @@ WHERE
 
                        // List already existing categories for editing
                        while ($content = SQL_FETCHARRAY($result)) {
-                               // Prepare data for the row template
-                               $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