]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-list_rallyes.php
New naming convention applied to many functions, see #118 for details
[mailer.git] / inc / modules / admin / what-list_rallyes.php
index 4ac5ba448b0e5a80d5189f24b0f61cfd12b49d88..8f9e81d5fd3b3277160818b87d0ea30732b4d0f5 100644 (file)
@@ -58,11 +58,11 @@ if (REQUEST_ISSET_GET(('rallye'))) {
                switch (REQUEST_GET('activate'))
                {
                case "1": // Activate
-                       ADD_SQL("UPDATE `{!_MYSQL_PREFIX!}_rallye_data` SET is_active='Y' WHERE id=%s AND is_active='N' LIMIT 1");
+                       ADD_SQL("UPDATE `{!_MYSQL_PREFIX!}_rallye_data` SET is_active='Y' WHERE `id`=%s AND is_active='N' LIMIT 1");
                        break;
 
-               case "0": // Deactivate
-                       ADD_SQL("UPDATE `{!_MYSQL_PREFIX!}_rallye_data` SET is_active='N' WHERE id=%s AND is_active='Y' LIMIT 1");
+               case '0': // Deactivate
+                       ADD_SQL("UPDATE `{!_MYSQL_PREFIX!}_rallye_data` SET is_active='N' WHERE `id`=%s AND is_active='Y' LIMIT 1");
                        break;
                }
        } elseif (REQUEST_ISSET_GET(('notify'))) {
@@ -70,11 +70,11 @@ if (REQUEST_ISSET_GET(('rallye'))) {
                switch (REQUEST_GET('notify'))
                {
                case "1": // Activate
-                       ADD_SQL("UPDATE `{!_MYSQL_PREFIX!}_rallye_data` SET send_notify='Y' WHERE id=%s AND send_notify='N' LIMIT 1");
+                       ADD_SQL("UPDATE `{!_MYSQL_PREFIX!}_rallye_data` SET send_notify='Y' WHERE `id`=%s AND send_notify='N' LIMIT 1");
                        break;
 
-               case "0": // Deactivate
-                       ADD_SQL("UPDATE `{!_MYSQL_PREFIX!}_rallye_data` SET send_notify='N' WHERE id=%s AND send_notify='Y' LIMIT 1");
+               case '0': // Deactivate
+                       ADD_SQL("UPDATE `{!_MYSQL_PREFIX!}_rallye_data` SET send_notify='N' WHERE `id`=%s AND send_notify='Y' LIMIT 1");
                        break;
                }
        } elseif (REQUEST_ISSET_GET(('auto'))) {
@@ -82,11 +82,11 @@ if (REQUEST_ISSET_GET(('rallye'))) {
                switch (REQUEST_GET('auto'))
                {
                case "1": // Activate
-                       ADD_SQL("UPDATE `{!_MYSQL_PREFIX!}_rallye_data` SET auto_add_new_user='Y' WHERE id=%s AND auto_add_new_user='N' LIMIT 1");
+                       ADD_SQL("UPDATE `{!_MYSQL_PREFIX!}_rallye_data` SET auto_add_new_user='Y' WHERE `id`=%s AND auto_add_new_user='N' LIMIT 1");
                        break;
 
-               case "0": // Deactivate
-                       ADD_SQL("UPDATE `{!_MYSQL_PREFIX!}_rallye_data` SET auto_add_new_user='N' WHERE id=%s AND auto_add_new_user='Y' LIMIT 1");
+               case '0': // Deactivate
+                       ADD_SQL("UPDATE `{!_MYSQL_PREFIX!}_rallye_data` SET auto_add_new_user='N' WHERE `id`=%s AND auto_add_new_user='Y' LIMIT 1");
                        break;
                }
        }
@@ -95,7 +95,7 @@ if (REQUEST_ISSET_GET(('rallye'))) {
        runFilterChain('run_sqls');
 } elseif (REQUEST_ISSET_POST('remove')) {
        // Delete rallyes
-       $SEL = SELECTION_COUNT(REQUEST_POST('sel'));
+       $SEL = countPostSelection();
        if ($SEL > 0) {
                // Init SQLs
                INIT_SQLS();
@@ -103,7 +103,7 @@ if (REQUEST_ISSET_GET(('rallye'))) {
                // Delete selected rallyes and all it's data
                foreach (REQUEST_POST('sel') as $id => $selected) {
                        // Remove selected rallye entirely...
-                       ADD_SQL(SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{!_MYSQL_PREFIX!}_rallye_data` WHERE id=%s LIMIT 1",
+                       ADD_SQL(SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{!_MYSQL_PREFIX!}_rallye_data` WHERE `id`=%s LIMIT 1",
                                array(bigintval($id)), __FILE__, __LINE__, false));
                        ADD_SQL(SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{!_MYSQL_PREFIX!}_rallye_prices` WHERE rallye_id=%s",
                                array(bigintval($id)), __FILE__, __LINE__, false));
@@ -122,7 +122,7 @@ if (REQUEST_ISSET_GET(('rallye'))) {
        }
 } elseif (REQUEST_ISSET_POST('change')) {
        // Change rallye
-       $SEL = SELECTION_COUNT(REQUEST_POST('title'));
+       $SEL = countSelection(REQUEST_POST('title'));
        if ($SEL > 0) {
                // Init SQLs
                INIT_SQLS();
@@ -145,7 +145,7 @@ start_time='%s',
 end_time='%s',
 min_users='%s',
 min_prices='%s'
-WHERE id='".$id."' LIMIT 1",
+WHERE `id`='".$id."' LIMIT 1",
                                array(
                                        $title,
                                        REQUEST_POST('descr', $id),
@@ -168,7 +168,7 @@ WHERE id='".$id."' LIMIT 1",
 
 if (REQUEST_ISSET_POST('edit')) {
        // Check for selections
-       $SEL = SELECTION_COUNT(REQUEST_POST('sel'));
+       $SEL = countPostSelection();
        if ($SEL > 0) {
                // Make all selected and deactivated rallyes editable
                $OUT = ''; $SW = 2;
@@ -186,28 +186,28 @@ LIMIT 1",
                        SQL_FREERESULT($result);
 
                        // Starting day
-                       $content['s_sec']   = ADD_SELECTION("sec"  , date("s", $content['start_time']), "start", $id);
-                       $content['s_min']   = ADD_SELECTION("min"  , date("i", $content['start_time']), "start", $id);
-                       $content['s_hour']  = ADD_SELECTION("hour" , date("G", $content['start_time']), "start", $id);
-                       $content['s_day']   = ADD_SELECTION("day"  , date("d", $content['start_time']), "start", $id);
-                       $content['s_month'] = ADD_SELECTION("month", date("m", $content['start_time']), "start", $id);
-                       $content['s_year']  = ADD_SELECTION("year" , date('Y', $content['start_time']), "start", $id);
+                       $content['s_sec']   = ADD_SELECTION('sec'  , date('s', $content['start_time']), 'start', $id);
+                       $content['s_min']   = ADD_SELECTION('min'  , date('i', $content['start_time']), 'start', $id);
+                       $content['s_hour']  = ADD_SELECTION('hour' , date('G', $content['start_time']), 'start', $id);
+                       $content['s_day']   = ADD_SELECTION('day'  , date('d', $content['start_time']), 'start', $id);
+                       $content['s_month'] = ADD_SELECTION('month', date('m', $content['start_time']), 'start', $id);
+                       $content['s_year']  = ADD_SELECTION('year' , date('Y', $content['start_time']), 'start', $id);
 
                        // Ending day
-                       $content['e_sec']   = ADD_SELECTION("sec"  , date("s", $content['end_time'])  , "end"  , $id);
-                       $content['e_min']   = ADD_SELECTION("min"  , date("i", $content['end_time'])  , "end"  , $id);
-                       $content['e_hour']  = ADD_SELECTION("hour" , date("G", $content['end_time'])  , "end"  , $id);
-                       $content['e_day']   = ADD_SELECTION("day"  , date("d", $content['end_time'])  , "end"  , $id);
-                       $content['e_month'] = ADD_SELECTION("month", date("m", $content['end_time'])  , "end"  , $id);
-                       $content['e_year']  = ADD_SELECTION("year" , date('Y', $content['end_time'])  , "end"  , $id);
+                       $content['e_sec']   = ADD_SELECTION('sec'  , date('s', $content['end_time'])  , 'end'  , $id);
+                       $content['e_min']   = ADD_SELECTION('min'  , date('i', $content['end_time'])  , 'end'  , $id);
+                       $content['e_hour']  = ADD_SELECTION('hour' , date('G', $content['end_time'])  , 'end'  , $id);
+                       $content['e_day']   = ADD_SELECTION('day'  , date('d', $content['end_time'])  , 'end'  , $id);
+                       $content['e_month'] = ADD_SELECTION('month', date('m', $content['end_time'])  , 'end'  , $id);
+                       $content['e_year']  = ADD_SELECTION('year' , date('Y', $content['end_time'])  , 'end'  , $id);
 
                        // Remember other values
-                       $content['templ']      = RALLYE_TEMPLATE_SELECTION("templ[".$id."]", $content['template']);
+                       $content['templ']      = RALLYE_TEMPLATE_SELECTION('templ['.$id.']', $content['template']);
                        $content['sw']         = $SW;
                        $content['id']         = $id;
 
                        // Output row
-                       $OUT .= LOAD_TEMPLATE("admin_edit_rallyes_row", true, $content);
+                       $OUT .= LOAD_TEMPLATE('admin_edit_rallyes_row', true, $content);
 
                        // Color switching
                        $SW = 3 - $SW;
@@ -217,14 +217,14 @@ LIMIT 1",
                define('__RALLYE_ROWS', $OUT);
 
                // Load final template
-               LOAD_TEMPLATE("admin_edit_rallyes");
+               LOAD_TEMPLATE('admin_edit_rallyes');
        } else {
                // Nothing selected to edit
-               LOAD_TEMPLATE('admin_settings_saved', false, LOAD_TEMPLATE("admin_list_rallye_noselect", true));
+               LOAD_TEMPLATE('admin_settings_saved', false, LOAD_TEMPLATE('admin_list_rallye_noselect', true));
        }
-} elseif ((REQUEST_GET('sub') == "users") && (REQUEST_GET('rallye') > 0)) {
+} elseif ((REQUEST_GET('sub') == 'users') && (REQUEST_GET('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",
+       $result = SQL_QUERY_ESC("SELECT userid, refs, curr_points FROM `{!_MYSQL_PREFIX!}_rallye_users` WHERE rallye_id=%s ORDER BY `userid` ASC",
                array(bigintval(REQUEST_GET('rallye'))), __FILE__, __LINE__);
        if (SQL_NUMROWS($result) > 0) {
                $OUT = ''; $SW = 2;
@@ -242,9 +242,9 @@ LIMIT 1",
                        if (($content['curr_points'] > 0) && ($cnt > 0)) { $bl = "<strong>"; $br = "</strong>"; }
                        if (($content['refs'] > 0) || ($cnt > 0)) {
                                // Insert link to referal list
-                               //* DEBUG: */ echo "-".$content['userid']."/".$cnt."/".$content['refs']."-<br />";
-                               $cnt = ADMIN_USER_PROFILE_LINK($content['userid'], $cnt, "list_refs");
-                               $content['refs'] = ADMIN_USER_PROFILE_LINK($content['userid'], $content['refs'], "list_refs");
+                               //* DEBUG: */ echo '-'.$content['userid'].'/'.$cnt.'/'.$content['refs']."-<br />";
+                               $cnt = generateUserProfileLink($content['userid'], $cnt, "list_refs");
+                               $content['refs'] = generateUserProfileLink($content['userid'], $content['refs'], "list_refs");
                        } // END - if
 
                        // Get user points
@@ -260,11 +260,11 @@ LIMIT 1",
                                'bold_r'  => $br ,
                                'old'     => $content['refs'],
                                'cnt'     => $cnt,
-                               'opoints' => TRANSLATE_COMMA($points - $content['curr_points']),
+                               'opoints' => translateComma($points - $content['curr_points']),
                        );
 
                        // Load row template and switch color
-                       $OUT .= LOAD_TEMPLATE("admin_list_rallye_usr_row", true, $content);
+                       $OUT .= LOAD_TEMPLATE('admin_list_rallye_usr_row', true, $content);
                        $SW = 3 - $SW;
                } // END - while
 
@@ -273,7 +273,7 @@ LIMIT 1",
                define('__RALLYE_USER_ROWS', $OUT);
 
                // Load template
-               LOAD_TEMPLATE("admin_list_rallye_usr");
+               LOAD_TEMPLATE('admin_list_rallye_usr');
        } else {
                // No entries found?
                LOAD_TEMPLATE('admin_settings_saved', false, getMessage('RALLYE_ADMIN_USERS_404'));
@@ -289,7 +289,7 @@ ORDER BY start_time DESC",
                $OUT = ''; $SW = 2;
                while ($content = SQL_FETCHARRAY($result)) {
                        // Load admin login
-                       $content['alogin'] = GET_ADMIN_LOGIN($content['admin_id']);
+                       $content['alogin'] = getAdminLogin($content['admin_id']);
 
                        // Count joined userids
                        $joined = GET_TOTAL_DATA($content['id'], "rallye_users", "id", "rallye_id", true);
@@ -301,7 +301,7 @@ ORDER BY start_time DESC",
                        } // END - if
 
                        // Alter some variables
-                       if (empty($content['alogin']))   $content['alogin']    = "???";
+                       if (empty($content['alogin']))   $content['alogin']    = '???';
                        if (empty($content['template'])) $content['template']  = '---';
                        if (empty($content['descr']))    $content['descr']     = '---';
 
@@ -310,20 +310,20 @@ ORDER BY start_time DESC",
                        $content = array(
                                'select'     => "<input type=\"checkbox\" name=\"sel[".$content['id']."]\" class=\"admin_normal\" value=\"1\" />",
                                'aid'        => $content['admin_id'],
-                               'email_link' => CREATE_EMAIL_LINK($content['admin_id']),
+                               'email_link' => generateMemberEmailLink($content['admin_id']),
                                'alogin'     => $content['alogin'],
                                'id'         => $content['id'],
                                'sw'         => $SW,
                                'title'      => $content['title'],
                                'template'   => $content['template'],
                                'joined'     => $joined,
-                               'start_date' => MAKE_DATETIME($content['start_time'], "2"),
-                               'end_date'   => MAKE_DATETIME($content['end_time']  , "2"),
-                               'active_lnk' => TRANSLATE_YESNO($content['is_active']),
-                               'notify_lnk' => TRANSLATE_YESNO($content['send_notify']),
-                               'auto_lnk'   => TRANSLATE_YESNO($content['auto_add_new_user']),
-                               'notified'   => TRANSLATE_YESNO($content['notified']),
-                               'prices_cnt' => TRANSLATE_COMMA(GET_TOTAL_DATA($content['id'], "rallye_prices", "id", "rallye_id", true)),
+                               'start_date' => generateDateTime($content['start_time'], '2'),
+                               'end_date'   => generateDateTime($content['end_time']  , '2'),
+                               'active_lnk' => translateYesNo($content['is_active']),
+                               'notify_lnk' => translateYesNo($content['send_notify']),
+                               'auto_lnk'   => translateYesNo($content['auto_add_new_user']),
+                               'notified'   => translateYesNo($content['notified']),
+                               'prices_cnt' => translateComma(GET_TOTAL_DATA($content['id'], 'rallye_prices', 'id', 'rallye_id', true)),
                                'descr'      => COMPILE_CODE($content['descr']),
                                'min_users'  => $content['min_users'],
                                'min_prices' => $content['min_prices'],
@@ -341,7 +341,7 @@ ORDER BY start_time DESC",
 
                        case 'N':
                                $content['active_title'] = getMessage('RALLYE_ACTIVATE_NOW');
-                               $content['active'] = "1";
+                               $content['active'] = '1';
                                break;
                        }
 
@@ -355,7 +355,7 @@ ORDER BY start_time DESC",
 
                        case 'N':
                                $content['notify_title'] = getMessage('RALLYE_START_NOTIFY_NOW');
-                               $content['notify'] = "1";
+                               $content['notify'] = '1';
                                break;
                        }
 
@@ -369,12 +369,12 @@ ORDER BY start_time DESC",
 
                        case 'N':
                                $content['auto_title'] = getMessage('RALLYE_START_AUTO_ADD_NOW');
-                               $content['auto'] = "1";
+                               $content['auto'] = '1';
                                break;
                        }
 
                        // Output row
-                       $OUT .= LOAD_TEMPLATE("admin_list_rallyes_row", true, $content);
+                       $OUT .= LOAD_TEMPLATE('admin_list_rallyes_row', true, $content);
                        $SW = 3 - $SW;
                }
 
@@ -383,7 +383,7 @@ ORDER BY start_time DESC",
                define('__RALLYE_ROWS', $OUT);
 
                // Load template
-               LOAD_TEMPLATE("admin_list_rallyes");
+               LOAD_TEMPLATE('admin_list_rallyes');
        } else {
                // No rallyes setup so far
                LOAD_TEMPLATE('admin_settings_saved', false, getMessage('RALLYE_NO_RALLYES_SETUP'));