2ea9b1b18db6e848575a09a2c38a59fc837d928f
[mailer.git] / inc / modules / admin / what-config_mediadata.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 09/28/2003 *
4  * ================                             Last change: 02/12/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-                                            *
8  * -------------------------------------------------------------------- *
9  * Short description :                                                  *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  :                                                  *
12  * -------------------------------------------------------------------- *
13  *                                                                      *
14  * -------------------------------------------------------------------- *
15  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
16  * For more information visit: http://www.mxchange.org                  *
17  *                                                                      *
18  * This program is free software; you can redistribute it and/or modify *
19  * it under the terms of the GNU General Public License as published by *
20  * the Free Software Foundation; either version 2 of the License, or    *
21  * (at your option) any later version.                                  *
22  *                                                                      *
23  * This program is distributed in the hope that it will be useful,      *
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
26  * GNU General Public License for more details.                         *
27  *                                                                      *
28  * You should have received a copy of the GNU General Public License    *
29  * along with this program; if not, write to the Free Software          *
30  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
31  * MA  02110-1301  USA                                                  *
32  ************************************************************************/
33
34 // Some security stuff...
35 if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
36         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
37         require($INC);
38 }
39
40 // Add description as navigation point
41 ADD_DESCR("admin", __FILE__);
42
43 if (isset($_POST['ok']))
44 {
45         // Test timestamp
46         $STAMP = mktime(0, 0, 0, bigintval($_POST['month']), bigintval($_POST['day']), bigintval($_POST['year']));
47         if ($STAMP > time())
48         {
49                 // Date is in the future!
50                 unset($_POST['ok']);
51         }
52          else
53         {
54                 // Remove entries
55                 unset($_POST['day']);
56                 unset($_POST['month']);
57                 unset($_POST['year']);
58
59                 // Remember timestamp
60                 $_POST['mt_start'] = $STAMP;
61         }
62
63         // Convert some data
64         $_POST['mt_stage'] = bigintval($_POST['mt_stage']);
65         if ($_POST['mt_stage'] <= GET_TOTAL_DATA("CONFIRMED", "user_data", "userid", "status", true))
66         {
67                 // Not enougth!
68                 unset($_POST['ok']);
69         }
70 }
71
72 if (isset($_POST['ok']))
73 {
74         // Save data
75         ADMIN_SAVE_SETTINGS($_POST);
76 }
77  else
78 {
79         // Start of this exchange
80         if (getConfig('mt_start') > 0)
81         {
82                 // Only show start
83                 define('__MT_START', "<STRONG>".MAKE_DATETIME(getConfig('mt_start'), "3")."</STRONG>");
84         }
85          else
86         {
87                 // Make start editable
88                 define('__MT_START',
89                         ADD_SELECTION("day"  , date("d", time())).
90                         ADD_SELECTION("month", date("m", time())).
91                         ADD_SELECTION("year",  -1)
92                 );
93         }
94
95         // Next stage of this MT
96         define('__MT_STAGE', getConfig('mt_stage'));
97
98         // Load template
99         LOAD_TEMPLATE("admin_config_mediadata");
100 }
101
102 //
103 ?>