A lot CSS classes rewritten, please update all your themes.
[mailer.git] / inc / modules / admin / what-list_rallyes.php
index 205d3c2139a6aaad6a355e25f2d37723be094e78..e55c5bbd3b1a44bd8b854ce07c97f3e69b828c7d 100644 (file)
@@ -104,7 +104,7 @@ if (isGetRequestParameterSet('rallye')) {
        runFilterChain('run_sqls');
 } elseif (isFormSent('remove')) {
        // Delete rallyes
        runFilterChain('run_sqls');
 } elseif (isFormSent('remove')) {
        // Delete rallyes
-       if (countPostSelection() > 0) {
+       if (ifPostContainsSelections()) {
                // Init SQLs
                initSqls();
 
                // Init SQLs
                initSqls();
 
@@ -123,14 +123,14 @@ if (isGetRequestParameterSet('rallye')) {
                runFilterChain('run_sqls');
 
                // Output message
                runFilterChain('run_sqls');
 
                // Output message
-               $message = getMessage('RALLYE_DELETED');
+               $message = '{--RALLYE_DELETED--}';
        } else {
                // No rallye selected to delete!
        } else {
                // No rallye selected to delete!
-               $message = getMessage('RALLYE_DELETE_NOTHING_SELECTED');
+               $message = '{--RALLYE_DELETE_NOTHING_SELECTED--}';
        }
 } elseif (isFormSent('change')) {
        // Change rallye
        }
 } elseif (isFormSent('change')) {
        // Change rallye
-       if (countSelection(postRequestParameter('title')) > 0) {
+       if (ifPostContainsSelections('title')) {
                // Init SQLs
                initSqls();
 
                // Init SQLs
                initSqls();
 
@@ -173,15 +173,15 @@ LIMIT 1",
                runFilterChain('run_sqls');
 
                // Output message
                runFilterChain('run_sqls');
 
                // Output message
-               $message = getMessage('RALLYE_CHANGED');
+               $message = '{--RALLYE_CHANGED--}';
        }
 }
 
 if (isFormSent('edit')) {
        // Check for selections
        }
 }
 
 if (isFormSent('edit')) {
        // Check for selections
-       if (countPostSelection() > 0) {
+       if (ifPostContainsSelections()) {
                // Make all selected and deactivated rallyes editable
                // Make all selected and deactivated rallyes editable
-               $OUT = ''; $SW = 2;
+               $OUT = '';
                foreach (postRequestParameter('sel') as $id => $selected) {
                        // Load rallye basic data
                        $result = SQL_QUERY_ESC("SELECT
                foreach (postRequestParameter('sel') as $id => $selected) {
                        // Load rallye basic data
                        $result = SQL_QUERY_ESC("SELECT
@@ -199,35 +199,31 @@ LIMIT 1",
                        SQL_FREERESULT($result);
 
                        // Starting day
                        SQL_FREERESULT($result);
 
                        // Starting day
-                       $content['s_sec']   = addSelectionBox('sec'  , date('s', $content['start_time']), 'start', $id);
-                       $content['s_min']   = addSelectionBox('min'  , date('i', $content['start_time']), 'start', $id);
-                       $content['s_hour']  = addSelectionBox('hour' , date('G', $content['start_time']), 'start', $id);
-                       $content['s_day']   = addSelectionBox('day'  , date('d', $content['start_time']), 'start', $id);
-                       $content['s_month'] = addSelectionBox('month', date('m', $content['start_time']), 'start', $id);
-                       $content['s_year']  = addSelectionBox('year' , date('Y', $content['start_time']), 'start', $id);
+                       $content['s_sec']   = addSelectionBox('sec'  , getSecond($content['start_time'])   , 'start', $id);
+                       $content['s_min']   = addSelectionBox('min'  , getMinute($content['start_time'])   , 'start', $id);
+                       $content['s_hour']  = addSelectionBox('hour' , getShortHour($content['start_time']), 'start', $id);
+                       $content['s_day']   = addSelectionBox('day'  , getDay($content['start_time'])      , 'start', $id);
+                       $content['s_month'] = addSelectionBox('month', getMonth($content['start_time'])    , 'start', $id);
+                       $content['s_year']  = addSelectionBox('year' , getYear($content['start_time'])     , 'start', $id);
 
                        // Ending day
 
                        // Ending day
-                       $content['e_sec']   = addSelectionBox('sec'  , date('s', $content['end_time'])  , 'end'  , $id);
-                       $content['e_min']   = addSelectionBox('min'  , date('i', $content['end_time'])  , 'end'  , $id);
-                       $content['e_hour']  = addSelectionBox('hour' , date('G', $content['end_time'])  , 'end'  , $id);
-                       $content['e_day']   = addSelectionBox('day'  , date('d', $content['end_time'])  , 'end'  , $id);
-                       $content['e_month'] = addSelectionBox('month', date('m', $content['end_time'])  , 'end'  , $id);
-                       $content['e_year']  = addSelectionBox('year' , date('Y', $content['end_time'])  , 'end'  , $id);
+                       $content['e_sec']   = addSelectionBox('sec'  , getSecond($content['end_time'])     , 'end'  , $id);
+                       $content['e_min']   = addSelectionBox('min'  , getMinute($content['end_time'])     , 'end'  , $id);
+                       $content['e_hour']  = addSelectionBox('hour' , getShortHour($content['end_time'])  , 'end'  , $id);
+                       $content['e_day']   = addSelectionBox('day'  , getDay($content['end_time'])        , 'end'  , $id);
+                       $content['e_month'] = addSelectionBox('month', getMonth($content['end_time'])      , 'end'  , $id);
+                       $content['e_year']  = addSelectionBox('year' , getYear($content['end_time'])       , 'end'  , $id);
 
                        // Remember other values
                        $content['templ']      = addReferalRallyeTemplateSelection('templ['.$id.']', $content['template']);
 
                        // Remember other values
                        $content['templ']      = addReferalRallyeTemplateSelection('templ['.$id.']', $content['template']);
-                       $content['sw']         = $SW;
                        $content['id']         = $id;
 
                        // Output row
                        $content['id']         = $id;
 
                        // Output row
-                       $OUT .= loadTemplate('admin_edit_rallyes_row', true, $content);
-
-                       // Color switching
-                       $SW = 3 - $SW;
+                       $OUT .= loadTemplate('form_submit_rallyes_row', true, $content);
                } // END - foreach
 
                // Load final template
                } // END - foreach
 
                // Load final template
-               loadTemplate('admin_edit_rallyes', false, $OUT);
+               loadTemplate('form_submit_rallyes', false, $OUT);
        } else {
                // Nothing selected to edit
                loadTemplate('admin_settings_saved', false, '{--RALLYE_NO_RALLYES_SELECTED--}');
        } else {
                // Nothing selected to edit
                loadTemplate('admin_settings_saved', false, '{--RALLYE_NO_RALLYES_SELECTED--}');
@@ -243,8 +239,8 @@ WHERE
 ORDER BY
        `userid` ASC",
                array(bigintval(getRequestParameter('rallye'))), __FILE__, __LINE__);
 ORDER BY
        `userid` ASC",
                array(bigintval(getRequestParameter('rallye'))), __FILE__, __LINE__);
-       if (SQL_NUMROWS($result) > 0) {
-               $OUT = ''; $SW = 2;
+       if (!SQL_HASZERONUMS($result)) {
+               $OUT = '';
                $content['rallye'] = getRequestParameter('rallye');
                while ($row = SQL_FETCHARRAY($result)) {
                        // Check for referal count
                $content['rallye'] = getRequestParameter('rallye');
                while ($row = SQL_FETCHARRAY($result)) {
                        // Check for referal count
@@ -255,7 +251,10 @@ ORDER BY
                        $br = '';
 
                        // Output row
                        $br = '';
 
                        // Output row
-                       if (($row['curr_points'] > 0) && ($cnt > 0)) { $bl = '<strong>'; $br = '</strong>'; }
+                       if (($row['curr_points'] > 0) && ($cnt > 0)) {
+                               $bl = '<strong>';
+                               $br = '</strong>';
+                       } // END - if
 
                        // Get user points
                        $points = countSumTotalData($row['userid'], 'user_points', 'points', 'userid', false, " AND `ref_depth`=1 LIMIT 1");
 
                        // Get user points
                        $points = countSumTotalData($row['userid'], 'user_points', 'points', 'userid', false, " AND `ref_depth`=1 LIMIT 1");
@@ -263,18 +262,16 @@ ORDER BY
 
                        // Prepare content
                        $row = array(
 
                        // Prepare content
                        $row = array(
-                               'sw'      => $SW ,
                                'userid'  => $row['userid'],
                                'bold_l'  => $bl ,
                                'bold_r'  => $br ,
                                'userid'  => $row['userid'],
                                'bold_l'  => $bl ,
                                'bold_r'  => $br ,
-                               'rews'    => $row['refs'],
+                               'refs'    => $row['refs'],
                                'cnt'     => $cnt,
                                'opoints' => ($points - $row['curr_points']),
                        );
 
                        // Load row template and switch color
                        $OUT .= loadTemplate('admin_list_rallye_usr_row', true, $row);
                                'cnt'     => $cnt,
                                'opoints' => ($points - $row['curr_points']),
                        );
 
                        // Load row template and switch color
                        $OUT .= loadTemplate('admin_list_rallye_usr_row', true, $row);
-                       $SW = 3 - $SW;
                } // END - while
 
                // Remember rows
                } // END - while
 
                // Remember rows
@@ -301,9 +298,9 @@ ORDER BY
        `start_time` DESC", __FILE__, __LINE__);
 
        // Records found?
        `start_time` DESC", __FILE__, __LINE__);
 
        // Records found?
-       if (SQL_NUMROWS($result) > 0) {
+       if (!SQL_HASZERONUMS($result)) {
                // List found rallyes
                // List found rallyes
-               $OUT = ''; $SW = 2;
+               $OUT = '';
                while ($data = SQL_FETCHARRAY($result)) {
                        // Load admin login
                        $data['login'] = getAdminLogin($data['admin_id']);
                while ($data = SQL_FETCHARRAY($result)) {
                        // Load admin login
                        $data['login'] = getAdminLogin($data['admin_id']);
@@ -319,16 +316,13 @@ ORDER BY
 
                        // Alter some variables
                        if (empty($data['login']))    $data['login']     = '???';
 
                        // Alter some variables
                        if (empty($data['login']))    $data['login']     = '???';
-                       if (empty($data['template'])) $data['template']  = '---';
-                       if (empty($data['descr']))    $data['descr']     = '---';
 
                        // Transfer data into array for the template
                        $row = array(
 
                        // Transfer data into array for the template
                        $row = array(
-                               'select'            => '<input type="checkbox" name="sel[' . $data['id'] . ']" class="admin_normal" value="1" />',
+                               'select'            => '<input type="checkbox" name="sel[' . $data['id'] . ']" class="form_field" value="1" />',
                                'admin_id'          => $data['admin_id'],
                                'login'             => $data['login'],
                                'id'                => $data['id'],
                                'admin_id'          => $data['admin_id'],
                                'login'             => $data['login'],
                                'id'                => $data['id'],
-                               'sw'                => $SW,
                                'title'             => $data['title'],
                                'template'          => $data['template'],
                                'users_content'     => $users,
                                'title'             => $data['title'],
                                'template'          => $data['template'],
                                'users_content'     => $users,
@@ -349,12 +343,12 @@ ORDER BY
                                case 'Y':
                                        // Rallye is active so do not edit it!
                                        $row['select']       = '<div class="big">' . $row['id'] . '</div>';
                                case 'Y':
                                        // Rallye is active so do not edit it!
                                        $row['select']       = '<div class="big">' . $row['id'] . '</div>';
-                                       $row['active_title'] = getMessage('RALLYE_DEACTIVATE_NOW');
+                                       $row['active_title'] = '{--RALLYE_DEACTIVATE_NOW--}';
                                        $row['active']       = '0';
                                        break;
 
                                case 'N':
                                        $row['active']       = '0';
                                        break;
 
                                case 'N':
-                                       $row['active_title'] = getMessage('RALLYE_ACTIVATE_NOW');
+                                       $row['active_title'] = '{--RALLYE_ACTIVATE_NOW--}';
                                        $row['active']       = 1;
                                        break;
                        } // END - switch
                                        $row['active']       = 1;
                                        break;
                        } // END - switch
@@ -362,12 +356,12 @@ ORDER BY
                        // Notification to members?
                        switch ($data['send_notify']) {
                                case 'Y':
                        // Notification to members?
                        switch ($data['send_notify']) {
                                case 'Y':
-                                       $row['notify_title'] = getMessage('RALLYE_STOP_NOTIFY_NOW');
+                                       $row['notify_title'] = '{--RALLYE_STOP_NOTIFY_NOW--}';
                                        $row['notify']       = '0';
                                        break;
 
                                case 'N':
                                        $row['notify']       = '0';
                                        break;
 
                                case 'N':
-                                       $row['notify_title'] = getMessage('RALLYE_START_NOTIFY_NOW');
+                                       $row['notify_title'] = '{--RALLYE_START_NOTIFY_NOW--}';
                                        $row['notify']       = 1;
                                        break;
                        } // END - switch
                                        $row['notify']       = 1;
                                        break;
                        } // END - switch
@@ -375,19 +369,18 @@ ORDER BY
                        // Auto-add of new joined members?
                        switch ($data['auto_add_new_user']) {
                                case 'Y':
                        // Auto-add of new joined members?
                        switch ($data['auto_add_new_user']) {
                                case 'Y':
-                                       $row['auto_title'] = getMessage('RALLYE_STOP_AUTO_ADD_NOW');
+                                       $row['auto_title'] = '{--RALLYE_STOP_AUTO_ADD_NOW--}';
                                        $row['auto']       = '0';
                                        break;
 
                                case 'N':
                                        $row['auto']       = '0';
                                        break;
 
                                case 'N':
-                                       $row['auto_title'] = getMessage('RALLYE_START_AUTO_ADD_NOW');
+                                       $row['auto_title'] = '{--RALLYE_START_AUTO_ADD_NOW--}';
                                        $row['auto']       = 1;
                                        break;
                        } // END - switch
 
                        // Output row
                        $OUT .= loadTemplate('admin_list_rallyes_row', true, $row);
                                        $row['auto']       = 1;
                                        break;
                        } // END - switch
 
                        // Output row
                        $OUT .= loadTemplate('admin_list_rallyes_row', true, $row);
-                       $SW = 3 - $SW;
                } // END - while
 
                // Free memory
                } // END - while
 
                // Free memory