7b73f1148b2a79b192d6053b4e5193a45ccd6883
[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 ((empty($_POST['url'])) || (empty($_POST['alternate']))) {
48         unset($_POST['ok']);
49 }
50
51 // Check selection count
52 if (!empty($_POST['sel'])) $SEL = SELECTION_COUNT($_POST['sel']);
53
54 if (isset($_POST['ok'])) {
55         // Fix older calls from add-new-banner-form
56         if (empty($_GET['mode'])) $_GET['mode'] = "add";
57         $SQL = "";
58         switch ($_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($_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($_POST['url'], $_POST['alternate'], $_POST['visible']), __FILE__, __LINE__);
69                 } else {
70                         // Free memory
71                         SQL_FREERESULT($result);
72                 }
73                 break;
74
75         case "edit": // Update banner
76                 foreach ($_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($_POST['url'][$id], $_POST['alternate'][$id], $_POST['visible'], $id), __FILE__, __LINE__);
83                 }
84                 break;
85         }
86
87         if (SQL_AFFECTEDROWS() == 1) {
88                 $content = SETTINGS_SAVED;
89         } else {
90                 $content = "<span class=\"admin_failed\">".SETTINGS_NOT_SAVED."</span>";
91         }
92         LOAD_TEMPLATE("admin_settings_saved", false, $content);
93 } elseif (($SEL > 0) && (isset($_POST['edit']))) {
94         // Edit banner
95         $SW = ""; $OUT = "";
96         foreach ($_POST['sel'] as $id => $sel) {
97                 // Load data
98                 $result = SQL_QUERY_ESC("SELECT url, alternate, visible FROM `{!_MYSQL_PREFIX!}_refbanner` WHERE id=%s LIMIT 1",
99                  array(bigintval($id)), __FILE__, __LINE__);
100                 list($url, $alt, $vis) = SQL_FETCHROW($result);
101                 SQL_FREERESULT($result);
102
103                 // Preapre data for the row
104                 $content = array(
105                         'sw'  => $SW,
106                         'id'  => $id,
107                         'url' => $url,
108                         'alt' => $alt,
109                         'vis' => ADD_SELECTION("yn", $vis   , "visible"),
110                 );
111
112                 // Load row template and switch color
113                 $OUT .= LOAD_TEMPLATE("admin_refbanner_edit_row", true, $content);
114                 $SW = 3 - $SW;
115         }
116         define('__BANNER_ROWS', $OUT);
117
118         // Load main template
119         LOAD_TEMPLATE("admin_refbanner_edit");
120 } else {
121         if (($SEL > 0) && (isset($_POST['del'])))
122         {
123                 // Delete banner
124                 foreach ($_POST['sel'] as $id => $sel) {
125                         SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{!_MYSQL_PREFIX!}_refbanner` WHERE id=%s LIMIT 1",
126                                 array(bigintval($id)), __FILE__, __LINE__);
127                 }
128         }
129
130         // Referal levels
131         $result = SQL_QUERY("SELECT id, url, alternate, visible, counter, clicks FROM `{!_MYSQL_PREFIX!}_refbanner` ORDER BY url", __FILE__, __LINE__);
132         if (SQL_NUMROWS($result) > 0)
133         {
134                 // Make referal banner editable and deletable
135                 $SW = 2; $OUT = "";
136                 while (list($id, $url, $alt, $vis, $cntr, $clks) = SQL_FETCHROW($result))
137                 {
138                         // Preapre data for the row
139                         $content = array(
140                                 'sw'  => $SW,
141                                 'id'  => $id,
142                                 'url' => $url,
143                                 'alt' => $alt,
144                                 'vis' => TRANSLATE_YESNO($vis),
145                                 'cnt' => $cntr,
146                                 'clx' => $clks
147                         );
148
149                         // Load row template and switch color
150                         $OUT .= LOAD_TEMPLATE("admin_refbanner_row", true, $content);
151                         $SW = 3 - $SW;
152                 }
153
154                 // Free memory
155                 SQL_FREERESULT($result);
156                 define('__BANNER_ROWS', $OUT);
157
158                 // Load main template
159                 LOAD_TEMPLATE("admin_refbanner");
160         }
161
162         // Form for adding new referal levels
163         LOAD_TEMPLATE("admin_add_banner");
164 }
165
166 //
167 ?>