Huge script change, see http://forum.mxchange.org/topic-458.html for details:
[mailer.git] / inc / modules / admin / what-add_rallye.php
index 4ad03f5172bf75f83becae8061862985839c145b..ef37b453416af05bdf8775c53166fea2ce58afc7 100644 (file)
@@ -17,7 +17,7 @@
  * Needs to be in all Files and every File needs "svn propset           *
  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
  * -------------------------------------------------------------------- *
- * Copyright (c) 2003 - 2008 by Roland Haeder                           *
+ * Copyright (c) 2003 - 2009 by Roland Haeder                           *
  * For more information visit: http://www.mxchange.org                  *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
  ************************************************************************/
 
 // Some security stuff...
-if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php';
-       require($INC);
+if ((!defined('__SECURITY')) || (!isAdmin())) {
+       die();
 }
 
 // Add description as navigation point
-ADD_DESCR('admin', __FILE__);
+addMenuDescription('admin', __FILE__);
 
 if (isFormSent()) {
        // Generate timestamps
-       $START = mktime(REQUEST_POST('start_hour'), REQUEST_POST('start_min'), REQUEST_POST('start_sec'), REQUEST_POST('start_month'), REQUEST_POST('start_day'), REQUEST_POST('start_year'));
-       $END   = mktime(REQUEST_POST('end_hour')  , REQUEST_POST('end_min')  , REQUEST_POST('end_sec')  , REQUEST_POST('end_month')  , REQUEST_POST('end_day')  , REQUEST_POST('end_year')  );
+       $START = mktime(postRequestElement('start_hour'), postRequestElement('start_min'), postRequestElement('start_sec'), postRequestElement('start_month'), postRequestElement('start_day'), postRequestElement('start_year'));
+       $END   = mktime(postRequestElement('end_hour')  , postRequestElement('end_min')  , postRequestElement('end_sec')  , postRequestElement('end_month')  , postRequestElement('end_day')  , postRequestElement('end_year')  );
 
        // Is there already a rallye running?
-       $result = SQL_QUERY_ESC("SELECT id, admin_id FROM `{!_MYSQL_PREFIX!}_rallye_data` WHERE (start_time <= %s AND end_time >= %s) OR (start_time >= %s AND start_time <= %s) LIMIT 1",
+       $result = SQL_QUERY_ESC("SELECT id, admin_id FROM `{?_MYSQL_PREFIX?}_rallye_data` WHERE (start_time <= %s AND end_time >= %s) OR (start_time >= %s AND start_time <= %s) LIMIT 1",
                array($START, $START, $START, $END), __FILE__, __LINE__);
 
        if (SQL_NUMROWS($result) == 0) {
                // Ok, start and end time did not overlap
-               SQL_QUERY_ESC("INSERT INTO `{!_MYSQL_PREFIX!}_rallye_data` (admin_id, title, descr, template, start_time, end_time, auto_add_new_user, is_active, send_notify)
+               SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_rallye_data` (admin_id, title, descr, template, start_time, end_time, auto_add_new_user, is_active, send_notify)
 VALUES ('%s','%s','%s','%s','%s','%s','%s','%s','%s')",
                        array(
                                getCurrentAdminId(),
-                               REQUEST_POST('title'),
-                               REQUEST_POST('descr'),
-                               REQUEST_POST('template'),
+                               postRequestElement('title'),
+                               postRequestElement('descr'),
+                               postRequestElement('template'),
                                $START,
                                $END,
-                               REQUEST_POST('auto_add'),
-                               REQUEST_POST('active'),
-                               REQUEST_POST('notify'),
+                               postRequestElement('auto_add'),
+                               postRequestElement('active'),
+                               postRequestElement('notify'),
                        ), __FILE__, __LINE__);
 
                // Load ID
-               $result = SQL_QUERY_ESC("SELECT `id` FROM `{!_MYSQL_PREFIX!}_rallye_data` WHERE start_time='%s' AND end_time='%s' AND `title`='%s' LIMIT 1",
-               array($START, $END, REQUEST_POST('title')), __FILE__, __LINE__);
+               $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_rallye_data` WHERE start_time='%s' AND end_time='%s' AND `title`='%s' LIMIT 1",
+               array($START, $END, postRequestElement('title')), __FILE__, __LINE__);
                list($id) = SQL_FETCHROW($result);
                SQL_FREERESULT($result);
 
@@ -81,48 +80,48 @@ VALUES ('%s','%s','%s','%s','%s','%s','%s','%s','%s')",
                        redirectToUrl('modules.php?module=admin&amp;what=config_rallye_prices&amp;rallye='.$id);
                } else {
                        // Problem detected...
-                       LOAD_TEMPLATE('admin_settings_saved', false, getMessage('RALLYE_PROBLEM_CREATE'));
+                       loadTemplate('admin_settings_saved', false, getMessage('RALLYE_PROBLEM_CREATE'));
                }
        } else {
                // Free memory
                SQL_FREERESULT($result);
 
                // Overlapping detected
-               LOAD_TEMPLATE('admin_settings_saved', false, getMessage('RALLYE_OVERLAP_TIMES'));
+               loadTemplate('admin_settings_saved', false, getMessage('RALLYE_OVERLAP_TIMES'));
        }
 }
 
 // Prepare some constants for the template
-define('_AUTO_ADD_OPTIONS', generateOptionList('/ARRAY/', array('Y','N'), array(YES, NO )));
-define('_ACTIVE_OPTIONS'  , generateOptionList('/ARRAY/', array('N','Y'), array(NO , YES)));
-define('_NOTIFY_OPTIONS'  , generateOptionList('/ARRAY/', array('Y','N'), array(YES, NO )));
+$content['auto_add_options'] = generateOptionList('/ARRAY/', array('Y','N'), array(getMessage('YES'), getMessage('NO') ));
+$content['active_options']   = generateOptionList('/ARRAY/', array('N','Y'), array(getMessage('NO') , getMessage('YES')));
+$content['notify_options']   = generateOptionList('/ARRAY/', array('Y','N'), array(getMessage('YES'), getMessage('NO') ));
 
 // Starting day
-define('_START_SEC'  , ADD_SELECTION('sec'  , '0'              , 'start'));
-define('_START_MIN'  , ADD_SELECTION('min'  , '0'              , 'start'));
-define('_START_HOUR' , ADD_SELECTION('hour' , date('G', time()), 'start'));
-define('_START_DAY'  , ADD_SELECTION('day'  , date('d', time()), 'start'));
-define('_START_MONTH', ADD_SELECTION('month', date('m', time()), 'start'));
-define('_START_YEAR' , ADD_SELECTION('year' , date('Y', time()), 'start'));
+$content['start_sec']   = addSelectionBox('sec'  , '0'              , 'start');
+$content['start_min']   = addSelectionBox('min'  , '0'              , 'start');
+$content['start_hour']  = addSelectionBox('hour' , date('G', time()), 'start');
+$content['start_day']   = addSelectionBox('day'  , date('d', time()), 'start');
+$content['start_month'] = addSelectionBox('month', date('m', time()), 'start');
+$content['start_year']  = addSelectionBox('year' , date('Y', time()), 'start');
 
 // Calcualte ending date
-$D = date('d', time() + (getConfig('one_day') * 7));
-$M = date('m', time() + (getConfig('one_day') * 7));
-$Y = date('Y', time() + (getConfig('one_day') * 7));
+$D = date('d', time() + (getConfig('ONE_DAY') * 7));
+$M = date('m', time() + (getConfig('ONE_DAY') * 7));
+$Y = date('Y', time() + (getConfig('ONE_DAY') * 7));
 
 // Ending day
-define('_END_SEC'  , ADD_SELECTION('sec'  , '0'              , 'end'));
-define('_END_MIN'  , ADD_SELECTION('min'  , '0'              , 'end'));
-define('_END_HOUR' , ADD_SELECTION('hour' , date('G', time()), 'end'));
-define('_END_DAY'  , ADD_SELECTION('day'  , $D               , 'end'));
-define('_END_MONTH', ADD_SELECTION('month', $M               , 'end'));
-define('_END_YEAR' , ADD_SELECTION('year' , $Y               , 'end'));
+$content['end_sec']   = addSelectionBox('sec'  , '0'              , 'end');
+$content['end_min']   = addSelectionBox('min'  , '0'              , 'end');
+$content['end_hour']  = addSelectionBox('hour' , date('G', time()), 'end');
+$content['end_day']   = addSelectionBox('day'  , $D               , 'end');
+$content['end_month'] = addSelectionBox('month', $M               , 'end');
+$content['end_year']  = addSelectionBox('year' , $Y               , 'end');
 
 // Transfer (maybe found) templates into constant for the template
-define('_TEMPLATES', RALLYE_TEMPLATE_SELECTION());
+$content['templates_selection'] = addReferalRallyeTemplateSelection();
 
 // Load template
-LOAD_TEMPLATE('admin_add_rallye');
+loadTemplate('admin_add_rallye', false, $content);
 
-//
+// [EOF]
 ?>