More constant rewrites
[mailer.git] / inc / modules / admin / what-refbanner.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 10/19/2003 *
4  * ===============                              Last change: 07/13/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-refbanner.php                               *
8  * -------------------------------------------------------------------- *
9  * Short description : Manage all referal banner                        *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Alle Banner fuer die Ref-Links verwalten         *
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 // Init variable
44 $SEL = 0;
45
46 // Some sanity-check
47 if ((!REQUEST_ISSET_POST(('url'))) || (!REQUEST_ISSET_POST(('alternate')))) {
48         REQUEST_UNSET_POST('ok');
49 }
50
51 // Check selection count
52 if (REQUEST_ISSET_POST('sel')) $SEL = SELECTION_COUNT(REQUEST_POST('sel'));
53
54 if (IS_FORM_SENT()) {
55         // Fix older calls from add-new-banner-form
56         if (!REQUEST_ISSET_GET(('mode'))) REQUEST_SET_GET('mode', "add");
57         $sql = "";
58         switch (REQUEST_GET('mode'))
59         {
60         case "add":
61                 // Check if banner is already added
62                 $result = SQL_QUERY_ESC("SELECT id FROM `{!_MYSQL_PREFIX!}_refbanner` WHERE url='%s' LIMIT 1",
63                         array(REQUEST_POST('url')), __FILE__, __LINE__);
64                 if (SQL_NUMROWS($result) == 0) {
65                         // Add banner
66                         SQL_QUERY_ESC("INSERT INTO `{!_MYSQL_PREFIX!}_refbanner` (url, alternate, visible)
67 VALUES ('%s','%s','%s')",
68                                 array(REQUEST_POST('url'), REQUEST_POST('alternate'), REQUEST_POST('visible')), __FILE__, __LINE__);
69                 } else {
70                         // Free memory
71                         SQL_FREERESULT($result);
72                 }
73                 break;
74
75         case "edit": // Update banner
76                 foreach (REQUEST_POST('sel') as $id => $sel) {
77                         // Secure ID
78                         $id = bigintval($id);
79
80                         // Update entry
81                         SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_refbanner` SET url='%s', alternate='%s', `visible`='%s' WHERE id=%s LIMIT 1",
82                                 array(
83                                         REQUEST_POST('url', $id),
84                                         REQUEST_POST('alternate', $id),
85                                         REQUEST_POST('visible'),
86                                         $id
87                                 ), __FILE__, __LINE__);
88                 }
89                 break;
90         }
91
92         if (SQL_AFFECTEDROWS() == 1) {
93                 $content = SETTINGS_SAVED;
94         } else {
95                 $content = "<span class=\"admin_failed\">{--SETTINGS_NOT_SAVED--}</span>";
96         }
97         LOAD_TEMPLATE("admin_settings_saved", false, $content);
98 } elseif (($SEL > 0) && (REQUEST_ISSET_POST('edit'))) {
99         // Edit banner
100         $SW = ""; $OUT = "";
101         foreach (REQUEST_POST('sel') as $id => $sel) {
102                 // Load data
103                 $result = SQL_QUERY_ESC("SELECT url, alternate, visible FROM `{!_MYSQL_PREFIX!}_refbanner` WHERE id=%s LIMIT 1",
104                  array(bigintval($id)), __FILE__, __LINE__);
105                 list($url, $alt, $vis) = SQL_FETCHROW($result);
106                 SQL_FREERESULT($result);
107
108                 // Preapre data for the row
109                 $content = array(
110                         'sw'  => $SW,
111                         'id'  => $id,
112                         'url' => $url,
113                         'alt' => $alt,
114                         'vis' => ADD_SELECTION("yn", $vis   , "visible"),
115                 );
116
117                 // Load row template and switch color
118                 $OUT .= LOAD_TEMPLATE("admin_refbanner_edit_row", true, $content);
119                 $SW = 3 - $SW;
120         }
121         define('__BANNER_ROWS', $OUT);
122
123         // Load main template
124         LOAD_TEMPLATE("admin_refbanner_edit");
125 } else {
126         if (($SEL > 0) && (REQUEST_ISSET_POST('del')))
127         {
128                 // Delete banner
129                 foreach (REQUEST_POST('sel') as $id => $sel) {
130                         SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{!_MYSQL_PREFIX!}_refbanner` WHERE id=%s LIMIT 1",
131                                 array(bigintval($id)), __FILE__, __LINE__);
132                 }
133         }
134
135         // Referal levels
136         $result = SQL_QUERY("SELECT id, url, alternate, visible, counter, clicks FROM `{!_MYSQL_PREFIX!}_refbanner` ORDER BY url", __FILE__, __LINE__);
137         if (SQL_NUMROWS($result) > 0)
138         {
139                 // Make referal banner editable and deletable
140                 $SW = 2; $OUT = "";
141                 while (list($id, $url, $alt, $vis, $cntr, $clks) = SQL_FETCHROW($result))
142                 {
143                         // Preapre data for the row
144                         $content = array(
145                                 'sw'  => $SW,
146                                 'id'  => $id,
147                                 'url' => $url,
148                                 'alt' => $alt,
149                                 'vis' => TRANSLATE_YESNO($vis),
150                                 'cnt' => $cntr,
151                                 'clx' => $clks
152                         );
153
154                         // Load row template and switch color
155                         $OUT .= LOAD_TEMPLATE("admin_refbanner_row", true, $content);
156                         $SW = 3 - $SW;
157                 }
158
159                 // Free memory
160                 SQL_FREERESULT($result);
161                 define('__BANNER_ROWS', $OUT);
162
163                 // Load main template
164                 LOAD_TEMPLATE("admin_refbanner");
165         }
166
167         // Form for adding new referal levels
168         LOAD_TEMPLATE("admin_add_banner");
169 }
170
171 //
172 ?>