Bad things are now 'classified' as bad (CSS class 'bad' is being used instead of...
[mailer.git] / inc / modules / admin / what-add_rallye.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 06/29/2004 *
4  * ===================                          Last change: 08/22/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-add_rallye.php                              *
8  * -------------------------------------------------------------------- *
9  * Short description : Add new rallye                                   *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Neue Ref-Rallye einfuegen                        *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * -------------------------------------------------------------------- *
18  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
19  * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
20  * For more information visit: http://mxchange.org                      *
21  *                                                                      *
22  * This program is free software; you can redistribute it and/or modify *
23  * it under the terms of the GNU General Public License as published by *
24  * the Free Software Foundation; either version 2 of the License, or    *
25  * (at your option) any later version.                                  *
26  *                                                                      *
27  * This program is distributed in the hope that it will be useful,      *
28  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
29  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
30  * GNU General Public License for more details.                         *
31  *                                                                      *
32  * You should have received a copy of the GNU General Public License    *
33  * along with this program; if not, write to the Free Software          *
34  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
35  * MA  02110-1301  USA                                                  *
36  ************************************************************************/
37
38 // Some security stuff...
39 if ((!defined('__SECURITY')) || (!isAdmin())) {
40         die();
41 } // END - if
42
43 // Add description as navigation point
44 addYouAreHereLink('admin', __FILE__);
45
46 if (isFormSent()) {
47         // Generate timestamps
48         $START = mktime(postRequestElement('start_hour'), postRequestElement('start_min'), postRequestElement('start_sec'), postRequestElement('start_month'), postRequestElement('start_day'), postRequestElement('start_year'));
49         $END   = mktime(postRequestElement('end_hour')  , postRequestElement('end_min')  , postRequestElement('end_sec')  , postRequestElement('end_month')  , postRequestElement('end_day')  , postRequestElement('end_year')  );
50
51         // Is there already a rallye running?
52         $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",
53                 array($START, $START, $START, $END), __FILE__, __LINE__);
54
55         if (SQL_HASZERONUMS($result)) {
56                 // Ok, start and end time did not overlap
57                 SQL_QUERY_ESC("INSERT INTO
58         `{?_MYSQL_PREFIX?}_rallye_data`
59 (
60         `admin_id`,
61         `title`,
62         `descr`,
63         `template`,
64         `start_time`,
65         `end_time`,
66         `auto_add_new_user`,
67         `is_active`,
68         `send_notify`
69 ) VALUES (
70         %s,
71         '%s',
72         '%s',
73         '%s',
74         %s,
75         %s,
76         '%s',
77         '%s',
78         '%s'
79 )",
80                         array(
81                                 getCurrentAdminId(),
82                                 postRequestElement('title'),
83                                 postRequestElement('descr'),
84                                 postRequestElement('template'),
85                                 $START,
86                                 $END,
87                                 postRequestElement('auto_add'),
88                                 postRequestElement('active'),
89                                 postRequestElement('notify'),
90                         ), __FILE__, __LINE__);
91
92                 // Load id
93                 $id = SQL_INSERTID();
94
95                 if (!empty($id)) {
96                         // Reload to prices...
97                         redirectToUrl('modules.php?module=admin&amp;what=config_rallye_prices&amp;rallye='.$id);
98                 } else {
99                         // Problem detected...
100                         displayMessage('{--RALLYE_PROBLEM_CREATE--}');
101                 }
102         } else {
103                 // Free memory
104                 SQL_FREERESULT($result);
105
106                 // Overlapping detected
107                 displayMessage('{--RALLYE_OVERLAP_TIMES--}');
108         }
109 } // END - if
110
111 // Starting day
112 $content['start_sec']   = addSelectionBox('sec'  , 0                   , 'start');
113 $content['start_min']   = addSelectionBox('min'  , 0                   , 'start');
114 $content['start_hour']  = addSelectionBox('hour' , getShortHour()      , 'start');
115 $content['start_day']   = addSelectionBox('day'  , getDay()            , 'start');
116 $content['start_month'] = addSelectionBox('month', getMonth()          , 'start');
117 $content['start_year']  = addSelectionBox('year' , getYear()           , 'start');
118
119 // Ending timestamp
120 $endingStamp = time() + (getOneDay() * 7);
121
122 // Ending day
123 $content['end_sec']   = addSelectionBox('sec'  , 0                     , 'end');
124 $content['end_min']   = addSelectionBox('min'  , 0                     , 'end');
125 $content['end_hour']  = addSelectionBox('hour' , getShortHour()        , 'end');
126 $content['end_day']   = addSelectionBox('day'  , getDay($endingStamp)  , 'end');
127 $content['end_month'] = addSelectionBox('month', getMonth($endingStamp), 'end');
128 $content['end_year']  = addSelectionBox('year' , getYear($endingStamp) , 'end');
129
130 // Load template
131 loadTemplate('admin_add_rallye', false, $content);
132
133 // [EOF]
134 ?>