X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-list_rallyes.php;h=89ff23fd70a0c01b8c9a92d0fda8758c3f90d12e;hb=f5ebd83b36f343022977241bd9b570051ece4b0f;hp=f495c7a778fa366f9f821872ac19f50335a43574;hpb=b8a6f8012aa3509d8e0f8fd078e044f20e80707a;p=mailer.git diff --git a/inc/modules/admin/what-list_rallyes.php b/inc/modules/admin/what-list_rallyes.php index f495c7a778..89ff23fd70 100644 --- a/inc/modules/admin/what-list_rallyes.php +++ b/inc/modules/admin/what-list_rallyes.php @@ -48,52 +48,52 @@ addMenuDescription('admin', __FILE__); $message = ''; // Quick actions on a rallye -if (isGetRequestElementSet('rallye')) { +if (isGetRequestParameterSet('rallye')) { // Init SQL queries initSqls(); - if (isGetRequestElementSet('activate')) { + if (isGetRequestParameterSet('activate')) { // Activate / deactivate - switch (getRequestElement('activate')) { + switch (getRequestParameter('activate')) { case '1': // Activate addSql(SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_rallye_data` SET `is_active`='Y' WHERE `id`=%s AND `is_active`='N' LIMIT 1", - array(bigintval(getRequestElement('rallye'))), __FILE__, __LINE__, false) + array(bigintval(getRequestParameter('rallye'))), __FILE__, __LINE__, false) ); break; case '0': // Deactivate addSql(SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_rallye_data` SET `is_active`='N' WHERE `id`=%s AND `is_active`='Y' LIMIT 1", - array(bigintval(getRequestElement('rallye'))), __FILE__, __LINE__, false) + array(bigintval(getRequestParameter('rallye'))), __FILE__, __LINE__, false) ); break; } // END - switch - } elseif (isGetRequestElementSet('notify')) { + } elseif (isGetRequestParameterSet('notify')) { // Automatic notification - switch (getRequestElement('notify')) { + switch (getRequestParameter('notify')) { case '1': // Activate addSql(SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_rallye_data` SET `send_notify`='Y' WHERE `id`=%s AND `send_notify`='N' LIMIT 1", - array(bigintval(getRequestElement('rallye'))), __FILE__, __LINE__, false) + array(bigintval(getRequestParameter('rallye'))), __FILE__, __LINE__, false) ); break; case '0': // Deactivate addSql(SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_rallye_data` SET `send_notify`='N' WHERE `id`=%s AND `send_notify`='Y' LIMIT 1", - array(bigintval(getRequestElement('rallye'))), __FILE__, __LINE__, false) + array(bigintval(getRequestParameter('rallye'))), __FILE__, __LINE__, false) ); break; } // END - switch - } elseif (isGetRequestElementSet('auto')) { + } elseif (isGetRequestParameterSet('auto')) { // Automatic adding of new members - switch (getRequestElement('auto')) { + switch (getRequestParameter('auto')) { case '1': // Activate addSql(SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_rallye_data` SET `auto_add_new_user`='Y' WHERE `id`=%s AND `auto_add_new_user`='N' LIMIT 1", - array(bigintval(getRequestElement('rallye'))), __FILE__, __LINE__, false) + array(bigintval(getRequestParameter('rallye'))), __FILE__, __LINE__, false) ); break; case '0': // Deactivate addSql(SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_rallye_data` SET `auto_add_new_user`='N' WHERE `id`=%s AND `auto_add_new_user`='Y' LIMIT 1", - array(bigintval(getRequestElement('rallye'))), __FILE__, __LINE__, false) + array(bigintval(getRequestParameter('rallye'))), __FILE__, __LINE__, false) ); break; } // END - switch @@ -101,14 +101,14 @@ if (isGetRequestElementSet('rallye')) { // Run SQL command runFilterChain('run_sqls'); -} elseif (isPostRequestElementSet('remove')) { +} elseif (isPostRequestParameterSet('remove')) { // Delete rallyes if (countPostSelection() > 0) { // Init SQLs initSqls(); // Delete selected rallyes and all it's data - foreach (postRequestElement('sel') as $id => $selected) { + foreach (postRequestParameter('sel') as $id => $selected) { // Remove selected rallye entirely... addSql(SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_rallye_data` WHERE `id`=%s LIMIT 1", array(bigintval($id)), __FILE__, __LINE__, false)); @@ -127,20 +127,20 @@ if (isGetRequestElementSet('rallye')) { // No rallye selected to delete! $message = getMessage('RALLYE_DELETE_NOTHING_SELECTED'); } -} elseif (isPostRequestElementSet('change')) { +} elseif (isPostRequestParameterSet('change')) { // Change rallye - if (countSelection(postRequestElement('title')) > 0) { + if (countSelection(postRequestParameter('title')) > 0) { // Init SQLs initSqls(); // Change selected rallyes and all it's data - foreach (postRequestElement('title') as $id => $title) { + foreach (postRequestParameter('title') as $id => $title) { // Secure id number $id = bigintval($id); // Generate timestamps - $START = mktime(postRequestElement('start_hour', $id), postRequestElement('start_min', $id), postRequestElement('start_sec', $id), postRequestElement('start_month', $id), postRequestElement('start_day', $id), postRequestElement('start_year', $id)); - $END = mktime(postRequestElement('end_hour', $id) , postRequestElement('end_min', $id) , postRequestElement('end_sec', $id) , postRequestElement('end_month', $id) , postRequestElement('end_day', $id) , postRequestElement('end_year', $id) ); + $START = mktime(postRequestParameter('start_hour', $id), postRequestParameter('start_min', $id), postRequestParameter('start_sec', $id), postRequestParameter('start_month', $id), postRequestParameter('start_day', $id), postRequestParameter('start_year', $id)); + $END = mktime(postRequestParameter('end_hour', $id) , postRequestParameter('end_min', $id) , postRequestParameter('end_sec', $id) , postRequestParameter('end_month', $id) , postRequestParameter('end_day', $id) , postRequestParameter('end_year', $id) ); // Update entry addSql(SQL_QUERY_ESC("UPDATE @@ -158,12 +158,12 @@ WHERE LIMIT 1", array( $title, - postRequestElement('descr', $id), - postRequestElement('templ', $id), + postRequestParameter('descr', $id), + postRequestParameter('templ', $id), bigintval($START), bigintval($END), - bigintval(postRequestElement('min_users', $id)), - bigintval(postRequestElement('min_prices', $id)), + bigintval(postRequestParameter('min_users', $id)), + bigintval(postRequestParameter('min_prices', $id)), $id ), __FILE__, __LINE__, false)); } @@ -176,12 +176,12 @@ LIMIT 1", } } -if (isPostRequestElementSet('edit')) { +if (isPostRequestParameterSet('edit')) { // Check for selections if (countPostSelection() > 0) { // Make all selected and deactivated rallyes editable $OUT = ''; $SW = 2; - foreach (postRequestElement('sel') as $id => $selected) { + foreach (postRequestParameter('sel') as $id => $selected) { // Load rallye basic data $result = SQL_QUERY_ESC("SELECT `title`, `descr`, `template`, `start_time`, `end_time`, `min_users`, `min_prices` @@ -231,13 +231,13 @@ LIMIT 1", // Nothing selected to edit loadTemplate('admin_settings_saved', false, loadTemplate('admin_list_rallye_noselect', true)); } -} elseif ((getRequestElement('sub') == 'users') && (getRequestElement('rallye') > 0)) { +} elseif ((getRequestParameter('sub') == 'users') && (getRequestParameter('rallye') > 0)) { // List users and their refs before start and current $result = SQL_QUERY_ESC("SELECT `userid`, `refs`, `curr_points` FROM `{?_MYSQL_PREFIX?}_rallye_users` WHERE `rallye_id`=%s ORDER BY `userid` ASC", - array(bigintval(getRequestElement('rallye'))), __FILE__, __LINE__); + array(bigintval(getRequestParameter('rallye'))), __FILE__, __LINE__); if (SQL_NUMROWS($result) > 0) { $OUT = ''; $SW = 2; - $content['rallye'] = getRequestElement('rallye'); + $content['rallye'] = getRequestParameter('rallye'); while ($row = SQL_FETCHARRAY($result)) { // Check for referal count $cnt = getReferalRallyeRefsCount($row['userid'], $row['refs']); @@ -272,7 +272,7 @@ LIMIT 1", // Remember rows $content['rows'] = $OUT; - $content['rallye'] = getRequestElement('rallye'); + $content['rallye'] = getRequestParameter('rallye'); // Free memory SQL_FREERESULT($result); @@ -306,7 +306,7 @@ ORDER BY // Did some users joined this rallye? if ($joined > 0) { // List joined users - $joined = "".$joined.""; + $joined = '' . $joined . ''; } // END - if // Alter some variables @@ -316,7 +316,7 @@ ORDER BY // Transfer data into array for the template $row = array( - 'select' => "", + 'select' => '', 'admin_id' => $data['admin_id'], 'admin_link' => generateAdminLink($data['admin_id']), 'login' => $data['login'], @@ -341,7 +341,7 @@ ORDER BY switch ($data['is_active']) { case 'Y': // Rallye is active so do not edit it! - $row['select'] = "
".$row['id']."
"; + $row['select'] = '
' . $row['id'] . '
'; $row['active_title'] = getMessage('RALLYE_DEACTIVATE_NOW'); $row['active'] = '0'; break;