Next wave of lesser getMessage() usage and more EL
[mailer.git] / inc / modules / admin / what-refbanner.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                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  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * Needs to be in all Files and every File needs "svn propset           *
18  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
19  * -------------------------------------------------------------------- *
20  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
21  * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
22  * For more information visit: http://www.mxchange.org                  *
23  *                                                                      *
24  * This program is free software; you can redistribute it and/or modify *
25  * it under the terms of the GNU General Public License as published by *
26  * the Free Software Foundation; either version 2 of the License, or    *
27  * (at your option) any later version.                                  *
28  *                                                                      *
29  * This program is distributed in the hope that it will be useful,      *
30  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
31  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
32  * GNU General Public License for more details.                         *
33  *                                                                      *
34  * You should have received a copy of the GNU General Public License    *
35  * along with this program; if not, write to the Free Software          *
36  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
37  * MA  02110-1301  USA                                                  *
38  ************************************************************************/
39
40 // Some security stuff...
41 if ((!defined('__SECURITY')) || (!isAdmin())) {
42         die();
43 }
44
45 // Add description as navigation point
46 addMenuDescription('admin', __FILE__);
47
48 // Some sanity-check
49 if ((!isPostRequestParameterSet('url')) || (!isPostRequestParameterSet(('alternate')))) {
50         unsetPostRequestParameter('ok');
51 }
52
53 if (isFormSent()) {
54         // Fix older calls from add-new-banner-form
55         if (!isGetRequestParameterSet('mode')) setGetRequestParameter('mode', 'add');
56         $sql = '';
57         switch (getRequestParameter('mode')) {
58                 case 'add':
59                         // Check if banner is already added
60                         $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_refbanner` WHERE url='%s' LIMIT 1",
61                         array(postRequestParameter('url')), __FILE__, __LINE__);
62                         if (SQL_HASZERONUMS($result)) {
63                                 // Add banner
64                                 SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_refbanner` (url, alternate, visible)
65 VALUES ('%s','%s','%s')",
66                                 array(postRequestParameter('url'), postRequestParameter('alternate'), postRequestParameter('visible')), __FILE__, __LINE__);
67                         } else {
68                                 // Free memory
69                                 SQL_FREERESULT($result);
70                         }
71                         break;
72
73                 case 'edit': // Update banner
74                         foreach (postRequestParameter('sel') as $id => $sel) {
75                                 // Secure id
76                                 $id = bigintval($id);
77
78                                 // Update entry
79                                 SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_refbanner` SET url='%s', alternate='%s', `visible`='%s' WHERE `id`=%s LIMIT 1",
80                                         array(
81                                                 postRequestParameter('url', $id),
82                                                 postRequestParameter('alternate', $id),
83                                                 postRequestParameter('visible'),
84                                                 $id
85                                         ), __FILE__, __LINE__);
86                         }
87                         break;
88         }
89
90         // Check if we have saved (updated)
91         if (SQL_AFFECTEDROWS() == 1) {
92                 // Updated!
93                 $content = '{--SETTINGS_SAVED--}';
94         } else {
95                 // Nothing has been updated
96                 $content = '<span class="admin_failed">{--SETTINGS_NOT_SAVED--}</span>';
97         }
98
99         // Display message
100         loadTemplate('admin_settings_saved', false, $content);
101 } elseif ((countPostSelection() > 0) && (isFormSent('edit'))) {
102         // Edit banner
103         $SW = 2; $OUT = '';
104         foreach (postRequestParameter('sel') as $id => $sel) {
105                 // Load data
106                 $result = SQL_QUERY_ESC("SELECT url, alternate, visible FROM `{?_MYSQL_PREFIX?}_refbanner` WHERE `id`=%s LIMIT 1",
107                 array(bigintval($id)), __FILE__, __LINE__);
108                 list($url, $alt, $vis) = SQL_FETCHROW($result);
109                 SQL_FREERESULT($result);
110
111                 // Preapre data for the row
112                 $content = array(
113                         'sw'  => $SW,
114                         'id'  => $id,
115                         'url' => $url,
116                         'alt' => $alt,
117                         'vis' => addSelectionBox('yn', $vis   , 'visible'),
118                 );
119
120                 // Load row template and switch color
121                 $OUT .= loadTemplate('admin_refbanner_edit_row', true, $content);
122                 $SW = 3 - $SW;
123         }
124
125         // Load main template
126         loadTemplate('admin_refbanner_edit', false, $OUT);
127 } else {
128         if ((countPostSelection() > 0) && (isFormSent('del'))) {
129                 // Delete banner
130                 foreach (postRequestParameter('sel') as $id => $sel) {
131                         SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_refbanner` WHERE `id`=%s LIMIT 1",
132                         array(bigintval($id)), __FILE__, __LINE__);
133                 } // END - foreach
134         } // END - if
135
136         // Referal levels
137         $result = SQL_QUERY("SELECT id, url, alternate, visible, counter, clicks FROM `{?_MYSQL_PREFIX?}_refbanner` ORDER BY url", __FILE__, __LINE__);
138
139         // Entries found?
140         if (SQL_NUMROWS($result) > 0) {
141                 // Make referal banner editable and deletable
142                 $OUT = ''; $SW = 2;
143                 while ($content = SQL_FETCHARRAY($result)) {
144                         // Preapre data for the row
145                         // @TODO Rewritings: alt->alternate,cnt->counter,clx->clicks in template
146                         $content = array(
147                                 'sw'  => $SW,
148                                 'id'  => $content['id'],
149                                 'url' => $content['url'],
150                                 'alt' => $content['alternate'],
151                                 'vis' => translateYesNo($content['visible']),
152                                 'cnt' => $content['counter'],
153                                 'clx' => $content['clicks']
154                         );
155
156                         // Load row template and switch color
157                         $OUT .= loadTemplate('admin_refbanner_row', true, $content);
158                         $SW = 3 - $SW;
159                 }
160
161                 // Free memory
162                 SQL_FREERESULT($result);
163
164                 // Load main template
165                 loadTemplate('admin_refbanner', false, $OUT);
166         }
167
168         // Form for adding new referal levels
169         loadTemplate('admin_add_banner');
170 }
171
172 // [EOF]
173 ?>