Code moved because it depends on tables created by ext-user
[mailer.git] / inc / modules / admin / what-list_network_types.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 11/11/2009 *
4  * ===================                          Last change: 11/11/2009 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-list_network_types.php                      *
8  * -------------------------------------------------------------------- *
9  * Short description : List/manage network advertising types            *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Verwaltet Werbearten                             *
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 } // END - if
44
45 // Add description as navigation point
46 addMenuDescription('admin', __FILE__);
47
48 // These are expert settings!
49 if (doVerifyExpertSettings() != 'agreed') {
50         // Abort here
51         return;
52 } // END - if
53
54 // By default we should display list/add new forms
55 $GLOBALS['network_display'] = true;
56
57 // Handle form here
58 doNetworkHandleForm();
59
60 // Display forms?
61 if ($GLOBALS['network_display'] === false) {
62         // Abort here
63         return;
64 } // END - if
65
66 // Do we have a network selected?
67 if (isGetRequestParameterSet('network')) {
68         // Get its data for template
69         $networkData = getNetworkDataById(getRequestParameter('network'));
70
71         // Init disabled list
72         $networkData['disabled'] = array();
73
74         // Load all advert types for given network
75         $result = SQL_QUERY_ESC("SELECT
76         `network_type_id`, `network_type_handle`, `network_type_api_url`, `network_type_click_url`, `network_type_banner_url`
77 FROM
78         `{?_MYSQL_PREFIX?}_network_types`
79 WHERE
80         `network_id`=%s
81 ORDER BY
82         `network_type_handle` ASC",
83                 array(getRequestParameter('network')), __FILE__, __LINE__);
84
85         // Do we have entries?
86         if (SQL_NUMROWS($result) > 0) {
87                 // List all entries
88                 $OUT = ''; $SW = 2;
89                 while ($row = SQL_FETCHARRAY($result)) {
90                         // Add/translate some data
91                         $row['sw'] = $SW;
92                         $row['network_type_banner_url'] = fixNullEmptyToDashes($row['network_type_banner_url'], 3);
93
94                         // Set disabled entry
95                         $networkData['disabled'][$row['network_type_handle']] = true;
96
97                         // Add row template and switch color
98                         $OUT .= loadTemplate('admin_list_network_types_row', true, $row);
99                         $SW = 3 - $SW;
100                 } // END - while
101
102                 // Prepare data for template
103                 $content = array(
104                         'rows'            => $OUT,
105                         'network_id'      => getRequestParameter('network'),
106                         'network_title'   => $networkData['network_title'],
107                         'network_reflink' => $networkData['network_reflink'],
108                 );
109
110                 // Load main template
111                 loadTemplate('admin_list_network_types', false, $content);
112         } else {
113                 // No entries found
114                 loadTemplate('admin_settings_saved', false, getMaskedMessage('ADMIN_NETWORK_TYPES_404', $networkData['network_title']));
115         }
116
117         // Free result
118         SQL_FREERESULT($result);
119
120         // Add type option list
121         $networkData['type_options'] = generateOptionList(
122                 '/ARRAY/',
123                 array(
124                         'banner',
125                         'banner_click',
126                         'banner_view',
127                         'button',
128                         'button_click',
129                         'button_view',
130                         'surfbar',
131                         'surfbar_click',
132                         'surfbar_view',
133                         'forcedbanner',
134                         'forcedtextlink',
135                         'textlink',
136                         'textlink_click',
137                         'textlink_view',
138                         'skybanner',
139                         'skybanner_click',
140                         'skybanner_view',
141                         'layer',
142                         'layer_click',
143                         'layer_view',
144                         'popup',
145                         'popdown',
146                         'textmail',
147                         'htmlmail',
148                         'lead',
149                         'sale',
150                         'payperactive',
151                         'pagepeel',
152                         'traffic'
153                 ),
154                 array(
155                         '{--ADMIN_NETWORK_TYPES_BANNER_CLICK_VIEW--}',
156                         '{--ADMIN_NETWORK_TYPES_BANNER_CLICK--}',
157                         '{--ADMIN_NETWORK_TYPES_BANNER_VIEW--}',
158                         '{--ADMIN_NETWORK_TYPES_BUTTON_CLICK_VIEW--}',
159                         '{--ADMIN_NETWORK_TYPES_BUTTON_CLICK--}',
160                         '{--ADMIN_NETWORK_TYPES_BUTTON_VIEW--}',
161                         '{--ADMIN_NETWORK_TYPES_SURFBAR_CLICK_VIEW--}',
162                         '{--ADMIN_NETWORK_TYPES_SURFBAR_CLICK--}',
163                         '{--ADMIN_NETWORK_TYPES_SURFBAR_VIEW--}',
164                         '{--ADMIN_NETWORK_TYPES_FORCED_BANNER--}',
165                         '{--ADMIN_NETWORK_TYPES_FORCED_TEXTLINK--}',
166                         '{--ADMIN_NETWORK_TYPES_TEXTLINK_CLICK_VIEW--}',
167                         '{--ADMIN_NETWORK_TYPES_TEXTLINK_CLICK--}',
168                         '{--ADMIN_NETWORK_TYPES_TEXTLINK_VIEW--}',
169                         '{--ADMIN_NETWORK_TYPES_SKYBANNER_CLICK_VIEW--}',
170                         '{--ADMIN_NETWORK_TYPES_SKYBANNER_CLICK--}',
171                         '{--ADMIN_NETWORK_TYPES_SKYBANNER_VIEW--}',
172                         '{--ADMIN_NETWORK_TYPES_LAYER_CLICK_VIEW--}',
173                         '{--ADMIN_NETWORK_TYPES_LAYER_CLICK--}',
174                         '{--ADMIN_NETWORK_TYPES_LAYER_VIEW--}',
175                         '{--ADMIN_NETWORK_TYPES_POPUP--}',
176                         '{--ADMIN_NETWORK_TYPES_POPDOWN--}',
177                         '{--ADMIN_NETWORK_TYPES_TEXTMAIL--}',
178                         '{--ADMIN_NETWORK_TYPES_HTMLMAIL--}',
179                         '{--ADMIN_NETWORK_TYPES_LEAD--}',
180                         '{--ADMIN_NETWORK_TYPES_SALE--}',
181                         '{--ADMIN_NETWORK_TYPES_PAYPERACTIVE--}',
182                         '{--ADMIN_NETWORK_TYPES_PAGEPEEL--}',
183                         '{--ADMIN_NETWORK_TYPES_TRAFFIC--}'
184                 ),
185                 '', '', '',
186                 $networkData['disabled']
187         );
188
189         // Add form for adding new types
190         loadTemplate('admin_add_network_type', false, $networkData);
191 } else {
192         // Generate network list for this script
193         outputHtml(generateAdminNetworkList());
194 }
195
196 // [EOF]
197 ?>