X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-config_points.php;h=3ef48975ae67b96791e23fad8a030e22c7739790;hb=0533bba499e23b91209b91f40737058a36f40ffe;hp=abae1058a99cb1b1e3477d5ee4564e150204087f;hpb=6914ebaaae909093df86d010e4c754a43d1a1aed;p=mailer.git diff --git a/inc/modules/admin/what-config_points.php b/inc/modules/admin/what-config_points.php index abae1058a9..3ef48975ae 100644 --- a/inc/modules/admin/what-config_points.php +++ b/inc/modules/admin/what-config_points.php @@ -14,11 +14,9 @@ * $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 * + * Copyright (c) 2009 - 2011 by Mailer Developer Team * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -43,7 +41,7 @@ if ((!defined('__SECURITY')) || (!isAdmin())) { } // END - if // Add description as navigation point -addMenuDescription('admin', __FILE__); +addYouAreHereLink('admin', __FILE__); // Init variables $message = ''; @@ -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__); @@ -164,7 +162,7 @@ WHERE // Shall we display a message? if (!empty($message)) { // When do so... - loadTemplate('admin_settings_saved', false, $message); + displayMessage($message); } // END - if } elseif (getRequestParameter('sub') == 'settings') { // Setup some settings like direct pay and so on @@ -185,7 +183,7 @@ WHERE loadTemplate('admin_config_point_settings', false, $content); } elseif (getRequestParameter('sub') == 'ref') { // 12 3 32 2 3321 - if ((isFormSent('del')) && (ifPostContainsSelections())) { + if ((isFormSent('delete')) && (ifPostContainsSelections())) { // Delete entries $OUT = ''; foreach (postRequestParameter('sel') as $id => $value) { @@ -195,11 +193,11 @@ WHERE SQL_FREERESULT($result); // Load row template and switch color - $OUT .= loadTemplate('admin_del_reflevel_row', true, $content); + $OUT .= loadTemplate('admin_delete_reflevel_row', true, $content); } // END - foreach // Load main template - loadTemplate('admin_del_reflevel', false, $OUT); + loadTemplate('admin_delete_reflevel', false, $OUT); } elseif ((isFormSent('edit')) && (ifPostContainsSelections())) { // Edit entries $OUT = ''; @@ -210,11 +208,11 @@ WHERE SQL_FREERESULT($result); // Load row template and switch color - $OUT .= loadTemplate('form_submit_reflevel_row', true, $content); + $OUT .= loadTemplate('admin_edit_reflevel_row', true, $content); } // END - foreach // Load main template - loadTemplate('form_submit_reflevel', 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,9 +222,6 @@ 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_list_reflevel_row', true, $content); } // END - while