Adding of network type handlers finished (listing is still work-in-progress)
[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  * For more information visit: http://www.mxchange.org                  *
22  *                                                                      *
23  * This program is free software; you can redistribute it and/or modify *
24  * it under the terms of the GNU General Public License as published by *
25  * the Free Software Foundation; either version 2 of the License, or    *
26  * (at your option) any later version.                                  *
27  *                                                                      *
28  * This program is distributed in the hope that it will be useful,      *
29  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
30  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
31  * GNU General Public License for more details.                         *
32  *                                                                      *
33  * You should have received a copy of the GNU General Public License    *
34  * along with this program; if not, write to the Free Software          *
35  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
36  * MA  02110-1301  USA                                                  *
37  ************************************************************************/
38
39 // Some security stuff...
40 if ((!defined('__SECURITY')) || (!isAdmin())) {
41         die();
42 }
43
44 // Add description as navigation point
45 addMenuDescription('admin', __FILE__);
46
47 // Some sanity-check
48 if ((!isPostRequestElementSet('url')) || (!isPostRequestElementSet(('alternate')))) {
49         unsetPostRequestElement('ok');
50 }
51
52 if (isFormSent()) {
53         // Fix older calls from add-new-banner-form
54         if (!isGetRequestElementSet('mode')) setGetRequestElement('mode', 'add');
55         $sql = '';
56         switch (getRequestElement('mode')) {
57                 case 'add':
58                         // Check if banner is already added
59                         $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_refbanner` WHERE url='%s' LIMIT 1",
60                         array(postRequestElement('url')), __FILE__, __LINE__);
61                         if (SQL_NUMROWS($result) == '0') {
62                                 // Add banner
63                                 SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_refbanner` (url, alternate, visible)
64 VALUES ('%s','%s','%s')",
65                                 array(postRequestElement('url'), postRequestElement('alternate'), postRequestElement('visible')), __FILE__, __LINE__);
66                         } else {
67                                 // Free memory
68                                 SQL_FREERESULT($result);
69                         }
70                         break;
71
72                 case 'edit': // Update banner
73                         foreach (postRequestElement('sel') as $id => $sel) {
74                                 // Secure id
75                                 $id = bigintval($id);
76
77                                 // Update entry
78                                 SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_refbanner` SET url='%s', alternate='%s', `visible`='%s' WHERE `id`=%s LIMIT 1",
79                                         array(
80                                                 postRequestElement('url', $id),
81                                                 postRequestElement('alternate', $id),
82                                                 postRequestElement('visible'),
83                                                 $id
84                                         ), __FILE__, __LINE__);
85                         }
86                         break;
87         }
88
89         if (SQL_AFFECTEDROWS() == 1) {
90                 $content = getMessage('SETTINGS_SAVED');
91         } else {
92                 $content = "<span class=\"admin_failed\">{--SETTINGS_NOT_SAVED--}</span>";
93         }
94         loadTemplate('admin_settings_saved', false, $content);
95 } elseif ((countPostSelection() > 0) && (isPostRequestElementSet('edit'))) {
96         // Edit banner
97         $SW = 2; $OUT = '';
98         foreach (postRequestElement('sel') as $id => $sel) {
99                 // Load data
100                 $result = SQL_QUERY_ESC("SELECT url, alternate, visible FROM `{?_MYSQL_PREFIX?}_refbanner` WHERE `id`=%s LIMIT 1",
101                 array(bigintval($id)), __FILE__, __LINE__);
102                 list($url, $alt, $vis) = SQL_FETCHROW($result);
103                 SQL_FREERESULT($result);
104
105                 // Preapre data for the row
106                 $content = array(
107                         'sw'  => $SW,
108                         'id'  => $id,
109                         'url' => $url,
110                         'alt' => $alt,
111                         'vis' => addSelectionBox('yn', $vis   , 'visible'),
112                 );
113
114                 // Load row template and switch color
115                 $OUT .= loadTemplate('admin_refbanner_edit_row', true, $content);
116                 $SW = 3 - $SW;
117         }
118
119         // Load main template
120         loadTemplate('admin_refbanner_edit', false, $OUT);
121 } else {
122         if ((countPostSelection() > 0) && (isPostRequestElementSet('del'))) {
123                 // Delete banner
124                 foreach (postRequestElement('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                 } // END - foreach
128         } // END - if
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
133         // Entries found?
134         if (SQL_NUMROWS($result) > 0) {
135                 // Make referal banner editable and deletable
136                 $OUT = ''; $SW = 2;
137                 while ($content = SQL_FETCHARRAY($result)) {
138                         // Preapre data for the row
139                         // @TODO Rewritings: alt->alternate,cnt->counter,clx->clicks in template
140                         $content = array(
141                                 'sw'  => $SW,
142                                 'id'  => $content['id'],
143                                 'url' => $content['url'],
144                                 'alt' => $content['alternate'],
145                                 'vis' => translateYesNo($content['visible']),
146                                 'cnt' => $content['counter'],
147                                 'clx' => $content['clicks']
148                         );
149
150                         // Load row template and switch color
151                         $OUT .= loadTemplate('admin_refbanner_row', true, $content);
152                         $SW = 3 - $SW;
153                 }
154
155                 // Free memory
156                 SQL_FREERESULT($result);
157
158                 // Load main template
159                 loadTemplate('admin_refbanner', false, $OUT);
160         }
161
162         // Form for adding new referal levels
163         loadTemplate('admin_add_banner');
164 }
165
166 // [EOF]
167 ?>