More usage of EL
[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_HASZERONUMS($result)) {
87                 // List all entries
88                 $OUT = '';
89                 while ($row = SQL_FETCHARRAY($result)) {
90                         // Add/translate some data
91                         $row['network_type_banner_url'] = fixNullEmptyToDashes($row['network_type_banner_url'], 3);
92
93                         // Set disabled entry
94                         $networkData['disabled'][$row['network_type_handle']] = true;
95
96                         // Add row template and switch color
97                         $OUT .= loadTemplate('admin_list_network_types_row', true, $row);
98                 } // END - while
99
100                 // Load main template
101                 loadTemplate('admin_list_network_types', false, $OUT);
102         } else {
103                 // No entries found
104                 loadTemplate('admin_settings_saved', false, getMaskedMessage('ADMIN_NETWORK_TYPES_404', $networkData['network_title']));
105         }
106
107         // Free result
108         SQL_FREERESULT($result);
109
110         // Add type option list
111         $networkData['type_options'] = generateOptionList(
112                 '/ARRAY/',
113                 array(
114                         'banner',
115                         'banner_click',
116                         'banner_view',
117                         'button',
118                         'button_click',
119                         'button_view',
120                         'surfbar',
121                         'surfbar_click',
122                         'surfbar_view',
123                         'forcedbanner',
124                         'forcedtextlink',
125                         'textlink',
126                         'textlink_click',
127                         'textlink_view',
128                         'skybanner',
129                         'skybanner_click',
130                         'skybanner_view',
131                         'layer',
132                         'layer_click',
133                         'layer_view',
134                         'popup',
135                         'popdown',
136                         'textmail',
137                         'htmlmail',
138                         'lead',
139                         'sale',
140                         'payperactive',
141                         'pagepeel',
142                         'traffic'
143                 ),
144                 array(
145                         '{--ADMIN_NETWORK_TYPES_BANNER_CLICK_VIEW--}',
146                         '{--ADMIN_NETWORK_TYPES_BANNER_CLICK--}',
147                         '{--ADMIN_NETWORK_TYPES_BANNER_VIEW--}',
148                         '{--ADMIN_NETWORK_TYPES_BUTTON_CLICK_VIEW--}',
149                         '{--ADMIN_NETWORK_TYPES_BUTTON_CLICK--}',
150                         '{--ADMIN_NETWORK_TYPES_BUTTON_VIEW--}',
151                         '{--ADMIN_NETWORK_TYPES_SURFBAR_CLICK_VIEW--}',
152                         '{--ADMIN_NETWORK_TYPES_SURFBAR_CLICK--}',
153                         '{--ADMIN_NETWORK_TYPES_SURFBAR_VIEW--}',
154                         '{--ADMIN_NETWORK_TYPES_FORCED_BANNER--}',
155                         '{--ADMIN_NETWORK_TYPES_FORCED_TEXTLINK--}',
156                         '{--ADMIN_NETWORK_TYPES_TEXTLINK_CLICK_VIEW--}',
157                         '{--ADMIN_NETWORK_TYPES_TEXTLINK_CLICK--}',
158                         '{--ADMIN_NETWORK_TYPES_TEXTLINK_VIEW--}',
159                         '{--ADMIN_NETWORK_TYPES_SKYBANNER_CLICK_VIEW--}',
160                         '{--ADMIN_NETWORK_TYPES_SKYBANNER_CLICK--}',
161                         '{--ADMIN_NETWORK_TYPES_SKYBANNER_VIEW--}',
162                         '{--ADMIN_NETWORK_TYPES_LAYER_CLICK_VIEW--}',
163                         '{--ADMIN_NETWORK_TYPES_LAYER_CLICK--}',
164                         '{--ADMIN_NETWORK_TYPES_LAYER_VIEW--}',
165                         '{--ADMIN_NETWORK_TYPES_POPUP--}',
166                         '{--ADMIN_NETWORK_TYPES_POPDOWN--}',
167                         '{--ADMIN_NETWORK_TYPES_TEXTMAIL--}',
168                         '{--ADMIN_NETWORK_TYPES_HTMLMAIL--}',
169                         '{--ADMIN_NETWORK_TYPES_LEAD--}',
170                         '{--ADMIN_NETWORK_TYPES_SALE--}',
171                         '{--ADMIN_NETWORK_TYPES_PAYPERACTIVE--}',
172                         '{--ADMIN_NETWORK_TYPES_PAGEPEEL--}',
173                         '{--ADMIN_NETWORK_TYPES_TRAFFIC--}'
174                 ),
175                 '', '', '',
176                 $networkData['disabled']
177         );
178
179         // Add form for adding new types
180         loadTemplate('admin_add_network_type', false, $networkData);
181 } else {
182         // Generate network list for this script
183         outputHtml(generateAdminNetworkList());
184 }
185
186 // [EOF]
187 ?>