Fix and rewritten to expression language
[mailer.git] / inc / extensions / ext-network.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 12/18/2008 *
4  * ===================                          Last change: 12/19/2009 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : ext-network.php                                  *
8  * -------------------------------------------------------------------- *
9  * Short description : Generic (sponsor) network connection extension   *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Allgemeine Werbenetzwerk-Erweiterung             *
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  * @TODO AbisZED: Which charset?                                        *
21  * @TODO Ad-Magnet: Layer(klick?). Layerviews.Skybannerklick/-view,     *
22  * @TODO Ad-Magnet: Banner-View, Textlink-Klick/-View. Page-Peel        *
23  * @TODO ADCocktail: Traffic, BIDausKAS???                              *
24  * @TODO Ads4.de: Traffic                                               *
25  * @TODO Ads4Webbis: Traffic                                            *
26  * @TODO Ads4World: Traffic                                             *
27  * @TODO Affiliblatt: All except banner, do they really have UTF-8?     *
28  * @TODO doubleads: Which charset?                                      *
29  * @TODO Fusion-Ads: Has click/banner URL in API response, really UTF-8 *
30  * @TODO GigaPromo: Traffic                                             *
31  * @TODO GolloX: Which charset?                                         *
32  * @TODO homeADS: Which charset?                                        *
33  * @TODO Mega-Ad: Traffic                                               *
34  * @TODO paid4ad: Which URLs for click and banner?                      *
35  * @TODO secash: Traffic                                                *
36  * @TODO ultraPROMO: Traffic                                            *
37  * @TODO Der Werbepartner.cc: Has click/banner URL in API response      *
38  * -------------------------------------------------------------------- *
39  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
40  * For more information visit: http://www.mxchange.org                  *
41  *                                                                      *
42  * This program is free software; you can redistribute it and/or modify *
43  * it under the terms of the GNU General Public License as published by *
44  * the Free Software Foundation; either version 2 of the License, or    *
45  * (at your option) any later version.                                  *
46  *                                                                      *
47  * This program is distributed in the hope that it will be useful,      *
48  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
49  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
50  * GNU General Public License for more details.                         *
51  *                                                                      *
52  * You should have received a copy of the GNU General Public License    *
53  * along with this program; if not, write to the Free Software          *
54  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
55  * MA  02110-1301  USA                                                  *
56  ************************************************************************/
57
58 // Some security stuff...
59 if (!defined('__SECURITY')) {
60         die();
61 } // END - if
62
63 // Version number
64 setThisExtensionVersion('0.0');
65
66 // Version history array (add more with , '0.1.0' and so on)
67 setExtensionVersionHistory(array('0.0'));
68
69 // This extension is in development (non-productive)
70 enableExtensionProductive(false);
71
72 switch (getExtensionMode()) {
73         case 'register': // Do stuff when installation is running (modules.php?module=admin is called)
74                 // Main table which hold
75                 addExtensionSql('DROP TABLE IF EXISTS `{?_MYSQL_PREFIX?}_network_data`');
76                 addExtensionSql("CREATE TABLE `{?_MYSQL_PREFIX?}_network_data` (
77 `network_id` BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
78 `network_short_name` VARCHAR(50) NOT NULL DEFAULT '',
79 `network_title` VARCHAR(255) NOT NULL DEFAULT '',
80 `network_reflink` VARCHAR(255) NOT NULL DEFAULT '',
81 `network_data_seperator` CHAR(4) NOT NULL DEFAULT '|',
82 `network_row_seperator` CHAR(4) NOT NULL DEFAULT '|',
83 `network_request_type` ENUM('GET','POST') NOT NULL DEFAULT 'GET',
84 `network_charset` VARCHAR(20) NOT NULL DEFAULT 'UTF-8',
85 UNIQUE (`network_short_name`),
86 PRIMARY KEY (`network_id`)
87 ) TYPE={?_TABLE_TYPE?} COMMENT='Network data'");
88
89                 // Types the network provider is supporting (e.g. Forced-Banner and so on)
90                 // @TODO network_type_handle is an internal name and needs documentation
91                 addExtensionSql('DROP TABLE IF EXISTS `{?_MYSQL_PREFIX?}_network_types`');
92                 addExtensionSql("CREATE TABLE `{?_MYSQL_PREFIX?}_network_types` (
93 `network_type_id` BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
94 `network_id` BIGINT(20) UNSIGNED NOT NULL DEFAULT 0,
95 `network_type_handle` VARCHAR(255) NOT NULL DEFAULT '',
96 `network_type_api_url` VARCHAR(255) NOT NULL DEFAULT '',
97 `network_type_click_url` VARCHAR(255) NOT NULL DEFAULT '',
98 `network_type_banner_url` VARCHAR(255) NULL DEFAULT NULL,
99 UNIQUE `provider_type` (`network_id`,`network_type_handle`),
100 PRIMARY KEY (`network_type_id`)
101 ) TYPE={?_TABLE_TYPE?} COMMENT='Types provideable by networks'");
102
103                 // HTTP parameters (names) for URLs
104                 addExtensionSql('DROP TABLE IF EXISTS `{?_MYSQL_PREFIX?}_network_request_params`');
105                 addExtensionSql("CREATE TABLE `{?_MYSQL_PREFIX?}_network_request_params` (
106 `network_param_id` BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
107 `network_id` BIGINT(20) UNSIGNED NOT NULL DEFAULT 0,
108 `network_type_id` BIGINT(20) UNSIGNED NOT NULL DEFAULT 0,
109 `request_param_key` VARCHAR(10) NOT NULL DEFAULT 'invalid',
110 `request_param_value` VARCHAR(10) NOT NULL DEFAULT 'invalid',
111 `request_param_default` VARCHAR(255) NULL DEFAULT NULL,
112 UNIQUE `provider_type_key` (`network_id`,`network_type_id`,`request_param_key`),
113 UNIQUE `provider_type_value` (`network_id`,`network_type_id`,`request_param_value`),
114 PRIMARY KEY (`network_param_id`)
115 ) TYPE={?_TABLE_TYPE?} COMMENT='Request parameters for GET/POST request'");
116
117                 // Error status codes
118                 addExtensionSql('DROP TABLE IF EXISTS `{?_MYSQL_PREFIX?}_network_type_codes`');
119                 addExtensionSql("CREATE TABLE `{?_MYSQL_PREFIX?}_network_type_codes` (
120 `network_type_code_id` BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
121 `network_type_id` BIGINT(20) UNSIGNED NOT NULL DEFAULT 0,
122 `network_type_code_value` VARCHAR(50) NOT NULL DEFAULT '',
123 `network_type_code_type` VARCHAR(100) NOT NULL DEFAULT 'INVALID_TYPE',
124 UNIQUE `code_type` (`network_type_code_value`,`network_type_id`),
125 INDEX (`network_type_id`),
126 PRIMARY KEY (`network_type_code_id`)
127 ) TYPE={?_TABLE_TYPE?} COMMENT='Error codes for all types'");
128
129                 // Code types (internal table)
130                 addExtensionSql('DROP TABLE IF EXISTS `{?_MYSQL_PREFIX?}_network_codes`');
131                 addExtensionSql("CREATE TABLE `{?_MYSQL_PREFIX?}_network_codes` (
132 `network_code_id` BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
133 `network_code` VARCHAR(100) NOT NULL DEFAULT 'INVALID_CODE',
134 UNIQUE (`network_code`),
135 PRIMARY KEY (`network_code_id`)
136 ) TYPE={?_TABLE_TYPE?} COMMENT='Error types, generic data, DO NOT ALTER!'");
137
138                 // Valid translation keys (we hate hard-coded arrays, you see?)
139                 addExtensionSql('DROP TABLE IF EXISTS `{?_MYSQL_PREFIX?}_network_translations`');
140                 addExtensionSql("CREATE TABLE `{?_MYSQL_PREFIX?}_network_translations` (
141 `network_translate_id` BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
142 `network_type_id` BIGINT(20) UNSIGNED NOT NULL DEFAULT 0,
143 `network_translation` VARCHAR(100) NOT NULL DEFAULT '',
144 UNIQUE `type_trans` (`network_type_id`,`network_translation`),
145 PRIMARY KEY (`network_translate_id`)
146 ) TYPE={?_TABLE_TYPE?} COMMENT='Translations for array keys, generic data, DO NOT ALTER!'");
147
148                 // Array-Element translation tables per type/provider
149                 addExtensionSql('DROP TABLE IF EXISTS `{?_MYSQL_PREFIX?}_network_array_translation`');
150                 addExtensionSql("CREATE TABLE `{?_MYSQL_PREFIX?}_network_array_translation` (
151 `network_translate_id` BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
152 `network_id` BIGINT(20) UNSIGNED NOT NULL DEFAULT 0,
153 `network_type_id` BIGINT(20) UNSIGNED NOT NULL DEFAULT 0,
154 `network_array_key` SMALLINT(5) UNSIGNED NOT NULL DEFAULT 0,
155 `network_translation` VARCHAR(100) NOT NULL DEFAULT '',
156 UNIQUE `provider_type_key` (`network_id`,`network_type_id`,`network_array_key`),
157 UNIQUE `provider_type_trans` (`network_id`,`network_type_id`,`network_translation`),
158 PRIMARY KEY (`network_translate_id`)
159 ) TYPE={?_TABLE_TYPE?} COMMENT='Cache for all queried APIs'");
160
161                 // Data from the webmaster (you!)
162                 addExtensionSql('DROP TABLE IF EXISTS `{?_MYSQL_PREFIX?}_network_config`');
163                 addExtensionSql("CREATE TABLE `{?_MYSQL_PREFIX?}_network_config` (
164 `network_id` BIGINT(20) UNSIGNED NOT NULL DEFAULT 0,
165 `network_affiliate_id` BIGINT(20) UNSIGNED NOT NULL DEFAULT 0,
166 `network_api_password` VARCHAR(255) NOT NULL DEFAULT '',
167 `network_site_id` BIGINT(20) UNSIGNED NOT NULL DEFAULT 0,
168 `network_query_amount` BIGINT(20) UNSIGNED NOT NULL DEFAULT 0,
169 `network_active` ENUM('Y','N') NOT NULL DEFAULT 'Y',
170 UNIQUE `network_affiliate` (`network_id`,`network_affiliate_id`),
171 UNIQUE `affiliate_site` (`network_affiliate_id`,`network_site_id`),
172 PRIMARY KEY (`network_id`)
173 ) TYPE={?_TABLE_TYPE?} COMMENT='Configuration data from the webmaster (you!)'");
174
175                 // Configuration data for e.g. reload-time
176                 addExtensionSql('DROP TABLE IF EXISTS `{?_MYSQL_PREFIX?}_network_types_config`');
177                 addExtensionSql("CREATE TABLE `{?_MYSQL_PREFIX?}_network_types_config` (
178 `network_data_id` BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
179 `network_id` BIGINT(20) UNSIGNED NOT NULL DEFAULT 0,
180 `network_type_id` BIGINT(20) UNSIGNED NOT NULL DEFAULT 0,
181 `max_reload_time` BIGINT(20) UNSIGNED NOT NULL DEFAULT 0,
182 `min_waiting_time` BIGINT(20) UNSIGNED NOT NULL DEFAULT 0,
183 `min_remain_clicks` BIGINT(20) UNSIGNED NOT NULL DEFAULT 0,
184 `min_payment` FLOAT(20,5) UNSIGNED NOT NULL DEFAULT 0.00000,
185 `allow_erotic` VARCHAR(10) NOT NULL DEFAULT '',
186 UNIQUE `provider_type` (`network_id`,`network_type_id`),
187 PRIMARY KEY (`network_data_id`)
188 ) TYPE={?_TABLE_TYPE?} COMMENT='Configuration data for every type (e.g. reload-time)'");
189
190                 // Cache for queried APIs. Re-check depends on config
191                 // `network_cache_refresh` in seconds or if set to zero, full day
192                 // divided by query amount.
193                 addExtensionSql('DROP TABLE IF EXISTS `{?_MYSQL_PREFIX?}_network_cache`');
194                 addExtensionSql("CREATE TABLE `{?_MYSQL_PREFIX?}_network_cache` (
195 `network_cache_id` BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
196 `network_id` BIGINT(20) UNSIGNED NOT NULL DEFAULT 0,
197 `network_type_id` BIGINT(20) UNSIGNED NOT NULL DEFAULT 0,
198 `network_cache_data` MEDIUMBLOB,
199 `network_cache_timestamp` TIMESTAMP NOT NULL DEFAULT '0000-00-00 00:00',
200 UNIQUE `provider_type` (`network_id`,`network_type_id`),
201 PRIMARY KEY (`network_cache_id`)
202 ) TYPE={?_TABLE_TYPE?} COMMENT='Cache for all queried APIs'");
203
204                 // Reload locks for several types
205                 addExtensionSql('DROP TABLE IF EXISTS `{?_MYSQL_PREFIX?}_network_reloads`');
206                 addExtensionSql("CREATE TABLE `{?_MYSQL_PREFIX?}_network_reloads` (
207 `network_reload_id` BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
208 `network_id` BIGINT(20) UNSIGNED NOT NULL DEFAULT 0,
209 `network_type_id` BIGINT(20) UNSIGNED NOT NULL DEFAULT 0,
210 `network_reload_lock` SMALLINT(5) UNSIGNED NOT NULL DEFAULT 0,
211 `network_inserted` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP(),
212 UNIQUE `provider_type` (`network_id`,`network_type_id`),
213 PRIMARY KEY (`network_reload_id`)
214 ) TYPE={?_TABLE_TYPE?} COMMENT='Reload locks'");
215
216                 // Insert error code types
217                 // - Affiliate id or interface password wrong
218                 addExtensionSql("INSERT INTO `{?_MYSQL_PREFIX?}_network_codes` (`network_code`) VALUES ('AFF_ID_PASS_WRONG')");
219                 // - Webmaster's site id is not assigned (invalid, different affiliate id)
220                 addExtensionSql("INSERT INTO `{?_MYSQL_PREFIX?}_network_codes` (`network_code`) VALUES ('SITE_ID_NOT_ASSIGNED')");
221                 // - Webmaster's site id is locked
222                 addExtensionSql("INSERT INTO `{?_MYSQL_PREFIX?}_network_codes` (`network_code`) VALUES ('SITE_ID_LOCKED')");
223                 // - General error in interface data
224                 addExtensionSql("INSERT INTO `{?_MYSQL_PREFIX?}_network_codes` (`network_code`) VALUES ('INTERFACE_DATA_ERROR')");
225                 // - Request amount depleted
226                 addExtensionSql("INSERT INTO `{?_MYSQL_PREFIX?}_network_codes` (`network_code`) VALUES ('REQUESTS_DEPLETED')");
227                 // - No campaigns found for given criteria (but maybe there are with more widen criteria)
228                 addExtensionSql("INSERT INTO `{?_MYSQL_PREFIX?}_network_codes` (`network_code`) VALUES ('NO_CAMPAIGNS_FOUND')");
229                 // - No campaigns found with allowed interface output (but there are maybe non-interface campaigns)
230                 addExtensionSql("INSERT INTO `{?_MYSQL_PREFIX?}_network_codes` (`network_code`) VALUES ('NO_CAMPAIGNS_FOUND_INTERFACE')");
231                 // - Webmaster's site id is not unlocked for choosen type
232                 addExtensionSql("INSERT INTO `{?_MYSQL_PREFIX?}_network_codes` (`network_code`) VALUES ('SITE_ID_NOT_ALLOWED_TYPE')");
233                 // - Request parameters incomplete
234                 addExtensionSql("INSERT INTO `{?_MYSQL_PREFIX?}_network_codes` (`network_code`) VALUES ('REQUEST_PARAMS_INCOMPLETE')");
235
236                 // Sponsor networks
237                 addExtensionSql("INSERT INTO `{?_MYSQL_PREFIX?}_network_data` (`network_short_name`, `network_title`, `network_reflink`, `network_data_seperator`, `network_row_seperator`, `network_request_type`, `network_charset`) VALUES
238 ('a3h', 'A3H', 'http://www.a3h.de?ref=1447', '|', '|', 'GET', 'WINDOWS-1252'),
239 ('abiszed','AbisZED-Netz','http://abiszed-netz.de/index.php?ref=557', '|', '|', 'GET', 'WINDOWS-1252'),
240 ('admagnet', 'AD-Magnet', 'http://www.ad-magnet.de/index.php?ref=495', '|', '|', 'GET', 'ISO-8859-1'),
241 ('adcocktail', 'ADCocktail', 'http://www.adcocktail.com/?rid=2596', '|', '|', 'GET', 'WINDOWS-1252'),
242 ('ads4', 'Ads4.de', 'http://www.ads4.de/?werber=Quix0r', '|', '|', 'GET', 'WINDOWS-1252'),
243 ('ads4webbis', 'Ads4Webbis', 'http://www.ads4webbis.de?ref=835', '|', '|', 'GET', 'WINDOWS-1252'),
244 ('ads4world', 'Ads4World', 'http://www.ads4world.de?ref=252', '|', '|', 'GET', 'WINDOWS-1252'),
245 ('affiliblatt', 'Affiliblatt', 'http://www.Affiliblatt.de/?sid=MTAzNQ==&site=home', '|', '|', 'GET', 'UTF-8'),
246 ('alster', 'Alster-Marketing', 'http://www.alstermarketing.de?ref=1851', '|', '|', 'GET', 'ISO-8859-16'),
247 ('bonus', 'BonusSponsor', 'http://www.bonussponsor.de?ref=1286', '|', '|', 'GET', 'WINDOWS-1252'),
248 ('fusion', 'Fusion-Ads', 'http://www.fusion-ads.de/?ref=84', '|', '|', 'GET', 'UTF-8'),
249 ('gigapromo', 'GigaPromo', 'http://www.gigapromo.de/index.php?ref=953', '|', '|', 'GET', 'WINDOWS-1252'),
250 ('make-euros', 'Make-Euros.de', 'http://www.make-euros.de?ref=1184', '|', '|', 'GET', 'ISO-8859-1'),
251 ('megad', 'Mega-Ad', 'http://www.mega-ad.de/?ref=303', '|', '|', 'GET', 'WINDOWS-1252'),
252 ('power-promo', 'Power-Promo', 'http://www.power-promo.de?ref=1231', '|', '|', 'GET', 'WINDOWS-1252'),
253 ('secash', 'SeCash', 'http://www.secash.de?ref=758', '|', '|', 'GET', 'WINDOWS-1252'),
254 ('werbepartnercc', 'Der Werbepartner.cc', 'http://www.werbepartner.cc/sponsor/?ref=696', '|', '|', 'GET', 'WINDOWS-1252'),
255 ('yoomedia', 'Yoo!Media Solutions', 'http://www.yoomedia.de?ref=1715', '|', '|', 'GET', 'WINDOWS-1252')");
256
257                 // Network type handlers - A3H
258                 addExtensionSql("INSERT INTO `{?_MYSQL_PREFIX?}_network_types` (`network_type_id`, `network_id`,`network_type_handle`,`network_type_api_url`,`network_type_click_url`,`network_type_banner_url`) VALUES
259 (1, 1, 'banner', 'http://www.a3h.de/interface/out_banner.php', 'http://www.a3h.de/bannerklf.php?id=%CID%', 'http://www.a3h.de/banner.php?id=%CID%'),
260 (2, 1, 'textlink', 'http://www.a3h.de/interface/out_textlink.php', 'http://www.a3h.de/textlinkklick.php?id=%CID%', NULL),
261 (3, 1, 'surfbar', 'http://www.a3h.de/interface/out_sbanner.php', 'http://www.a3h.de/bannerklf.php?id=%CID%', 'http://www.a3h.de/banner.php?id=%CID%'),
262 (4, 1, 'focredbanner', 'http://www.a3h.de/interface/out_fbanner.php', 'http://www.a3h.de/bannerklf.php?id=%CID%', 'http://www.a3h.de/banner.php?id=%CID%'),
263 (5, 1, 'textmail', 'http://www.a3h.de/interface/out_paidmail.php', 'http://www.a3h.de/emailf.php?id=%CID%', NULL),
264 (6, 1, 'layer', 'http://www.a3h.de/interface/out_layer.php', 'http://www.a3h.de/layer.php?id=%CID%', NULL),
265 (7, 1, 'popup', 'http://www.a3h.de/interface/out_popup.php', 'http://www.a3h.de/popup.php?id=%CID%', NULL),
266 (8, 1, 'popdown', 'http://www.a3h.de/interface/out_popdown.php', 'http://www.a3h.de/popdown.php?id=%CID%', NULL),
267 (9, 1, 'lead', 'http://www.a3h.de/interface/out_lead.php', 'http://www.a3h.de/lead.php?id=%CID%', NULL),
268 (10, 1, 'sale', 'http://www.a3h.de/interface/out_sale.php', 'http://www.a3h.de/sale.php?id=%CID%', NULL),
269 (11, 1, 'htmlmail', 'http://www.a3h.de/interface/out_paidmail.php', 'http://www.a3h.de/emailf.php?id=%CID%', NULL)");
270
271                 // Network type handlers - AbisZED-Netz
272
273                 // Network type handlers - Ad-Magnet
274
275                 // Network type handlers - AdCocktail
276                 addExtensionSql("INSERT INTO `{?_MYSQL_PREFIX?}_network_types` (`network_type_id`, `network_id`, `network_type_handle`, `network_type_api_url`, `network_type_click_url`, `network_type_banner_url`) VALUES
277 (13, 4, 'focredbanner', 'http://www.adcocktail.com/sc/kas/kas_fk.php', 'http://fk.adcocktail.com/fk_k.php?uid=%UID%&wid=%CID%&wsid=%SID%', 'http://fk.adcocktail.com/fk_v.php?uid=%UID%&wid=%CID%&wsid=%SID%'),
278 (12, 4, 'textmail', 'http://www.adcocktail.com/sc/kas/kas_pm.php', 'http://pm.adcocktail.com/pm.php?uid=%UID%&wid=%CID%&wsid=%SID%', NULL)");
279
280                 // Network type handlers - Ads4
281                 addExtensionSql("INSERT INTO `{?_MYSQL_PREFIX?}_network_types` (`network_type_id`, `network_id`, `network_type_handle`, `network_type_api_url`, `network_type_click_url`, `network_type_banner_url`) VALUES
282 (14, 5, 'focredbanner', 'http://www.ads4.de/interface/interface.php', 'http://www.ads4.de/forced_click.php?fb_id=%CID%&sid=%SID%', 'http://www.ads4.de/forced_view.php?fb_id=%CID%&sid=%SID%'),
283 (16, 5, 'htmlmail', 'http://www.ads4.de/interface/interface.php', 'http://www.ads4.de/paidmail_click.php?pm=%CID%&%sid=%SID%', NULL),
284 (15, 5, 'textmail', 'http://www.ads4.de/interface/interface.php', 'http://www.ads4.de/paidmail_click.php?pm=%CID%&%sid=%SID%', NULL)");
285
286                 // Network type handlers - Ads4Webbis
287                 addExtensionSql("INSERT INTO `{?_MYSQL_PREFIX?}_network_types` (`network_type_id`, `network_id`, `network_type_handle`, `network_type_api_url`, `network_type_click_url`, `network_type_banner_url`) VALUES
288 (20, 6, 'banner_click', 'http://www.ads4webbis.de/interface/', 'http://www.ads4webbis.de/codes/klickbanner.php?id=%UID%&bid=%CID%&aid=%SID%', 'http://www.ads4webbis.de/codes/viewbanner.php?id=%UID%&bid=%CID%&aid=%SID%'),
289 (19, 6, 'banner_view', 'http://www.ads4webbis.de/interface/', 'http://www.ads4webbis.de/codes/bannerklick.php?id=%UID%&bid=%CID%&aid=%SID%', 'http://www.ads4webbis.de/codes/bannerview.php?id=%UID%&bid=%CID%&aid=%SID%'),
290 (22, 6, 'button_view', 'http://www.ads4webbis.de/interface/', 'http://www.ads4webbis.de/codes/buttonklick.php?id=%UID%&bid=%CID%&aid=%SID%', 'http://www.ads4webbis.de/codes/buttonview.php?id=%UID%&bid=%CID%&aid=%SID%'),
291 (17, 6, 'focredbanner', 'http://www.ads4webbis.de/interface/', 'http://www.ads4webbis.de/codes/forcedbannerklick.php?id=%UID%&bid=%CID%&aid=%SID%', 'http://www.ads4webbis.de/codes/forcedbannerview.php?id=%UID%&bid=%CID%&aid=%SID%'),
292 (18, 6, 'forcedtextlink', 'http://www.ads4webbis.de/interface/', 'http://www.ads4webbis.de/codes/forcedtextlinkklick.php?id=%UID%&bid=%CID%&aid=%SID%', NULL),
293 (24, 6, 'popup', 'http://www.ads4webbis.de/interface/', 'http://www.ads4webbis.de/codes/popup.php?id=%UID%&bid=%CID%&aid=%SID%', NULL),
294 (21, 6, 'skybanner_view', 'http://www.ads4webbis.de/interface/', 'http://www.ads4webbis.de/codes/skybannerklick.php?id=%UID%&bid=%CID%&aid=%SID%', 'http://www.ads4webbis.de/codes/skybannerview.php?id=%UID%&bid=%CID%&aid=%SID%'),
295 (23, 6, 'textlink_view', 'http://www.ads4webbis.de/interface/', 'http://www.ads4webbis.de/codes/textlinkview.php?id=%UID%&bid=%CID%&aid=%SID%', NULL),
296 (25, 6, 'textmail', 'http://www.ads4webbis.de/interface/', 'http://www.ads4webbis.de/codes/paidmail.php?id=%UID%&bid=%CID%&aid=%SID%', NULL)");
297
298                 // Network type handlers - Ads4World
299                 addExtensionSql("INSERT INTO `{?_MYSQL_PREFIX?}_network_types` (`network_type_id`, `network_id`, `network_type_handle`, `network_type_api_url`, `network_type_click_url`, `network_type_banner_url`) VALUES
300 (29, 7, 'banner_click', 'http://www.ads4world.de/interface/', 'http://www.ads4world.de/codes/klickbanner.php?id=%UID%&bid=%CID%&aid=%SID%', 'http://www.ads4world.de/codes/viewbanner.php?id=%UID%&bid=%CID%&aid=%SID%'),
301 (28, 7, 'banner_view', 'http://www.ads4world.de/interface/', 'http://www.ads4world.de/codes/bannerklick.php?id=%UID%&bid=%CID%&aid=%SID%', 'http://www.ads4world.de/codes/bannerview.php?id=%UID%&bid=%CID%&aid=%SID%'),
302 (31, 7, 'button_view', 'http://www.ads4world.de/interface/', 'http://www.ads4world.de/codes/buttonklick.php?id=%UID%&bid=%CID%&aid=%SID%', 'http://www.ads4world.de/codes/buttonview.php?id=%UID%&bid=%CID%&aid=%SID%'),
303 (26, 7, 'focredbanner', 'http://www.ads4world.de/interface/', 'http://www.ads4world.de/codes/forcedbannerklick.php?id=%UID%&bid=%CID%&aid=%SID%', 'http://www.ads4world.de/codes/forcedbannerview.php?id=%UID%&bid=%CID%&aid=%SID%'),
304 (27, 7, 'forcedtextlink', 'http://www.ads4world.de/interface/', 'http://www.ads4world.de/codes/forcedtextlinkklick.php?id=%UID%&bid=%CID%&aid=%SID%', NULL),
305 (33, 7, 'popup', 'http://www.ads4world.de/interface/', 'http://www.ads4world.de/codes/popup.php?id=%UID%&bid=%CID%&aid=%SID%', NULL),
306 (30, 7, 'skybanner_view', 'http://www.ads4world.de/interface/', 'http://www.ads4world.de/codes/skybannerklick.php?id=%UID%&bid=%CID%&aid=%SID%', 'http://www.ads4world.de/codes/skybannerview.php?id=%UID%&bid=%CID%&aid=%SID%'),
307 (32, 7, 'textlink_view', 'http://www.ads4world.de/interface/', 'http://www.ads4world.de/codes/textlinkview.php?id=%UID%&bid=%CID%&aid=%SID%', NULL),
308 (34, 7, 'textmail', 'http://www.ads4world.de/interface/', 'http://www.ads4world.de/codes/paidmail.php?id=%UID%&bid=%CID%&aid=%SID%', NULL)");
309
310                 // Network type handlers - Affiliblatt
311
312                 // Network type handlers - Alster-Marketing
313                 addExtensionSql("INSERT INTO `{?_MYSQL_PREFIX?}_network_types` (`network_type_id`, `network_id`, `network_type_handle`, `network_type_api_url`, `network_type_click_url`, `network_type_banner_url`) VALUES
314 (35, 9, 'banner_click', 'http://if.alstermarketing.de/interface/out_banner.php', 'http://www.alstermarketing.de/bannerklf.php?id=%CID%', 'http://www.alstermarketing.de/banner.php?id=%CID%'),
315 (45, 9, 'banner_view', 'http://if.alstermarketing.de/interface/out_banner.php', 'http://www.alstermarketing.de/bannerklf.php?id=%CID%', 'http://www.alstermarketing.de/banner.php?id=%CID%'),
316 (38, 9, 'focredbanner', 'http://if.alstermarketing.de/interface/out_fbanner.php', 'http://www.alstermarketing.de/bannerklf.php?id=%CID%', 'http://www.alstermarketing.de/banner.php?id=%CID%'),
317 (48, 9, 'htmlmail', 'http://if.alstermarketing.de/interface/out_paidmail.php', 'http://www.alstermarketing.de/emailf.php?id=%CID%', NULL),
318 (40, 9, 'layer_click', 'http://if.alstermarketing.de/interface/out_layer.php', 'http://www.alstermarketing.de/layer.php?id=%CID%', NULL),
319 (49, 9, 'layer_view', 'http://if.alstermarketing.de/interface/out_layer.php', 'http://www.alstermarketing.de/layer.php?id=%CID%', NULL),
320 (43, 9, 'lead', 'http://if.alstermarketing.de/interface/out_lead.php', 'http://www.alstermarketing.de/lead.php?id=%CID%', NULL),
321 (42, 9, 'popdown', 'http://if.alstermarketing.de/interface/out_popdown.php', 'http://www.alstermarketing.de/popdown.php?id=%CID%', NULL),
322 (41, 9, 'popup', 'http://if.alstermarketing.de/interface/out_popup.php', 'http://www.alstermarketing.de/popup.php?id=%CID%', NULL),
323 (44, 9, 'sale', 'http://if.alstermarketing.de/interface/out_sale.php', 'http://www.alstermarketing.de/sale.php?id=%CID%', NULL),
324 (37, 9, 'surfbar_click', 'http://if.alstermarketing.de/interface/out_sbanner.php', 'http://www.alstermarketing.de/bannerklf.php?id=%CID%', 'http://www.alstermarketing.de/banner.php?id=%CID%'),
325 (47, 9, 'surfbar_view', 'http://if.alstermarketing.de/interface/out_sbanner.php', 'http://www.alstermarketing.de/bannerklf.php?id=%CID%', 'http://www.alstermarketing.de/banner.php?id=%CID%'),
326 (36, 9, 'textlink_click', 'http://if.alstermarketing.de/interface/out_textlink.php', 'http://www.alstermarketing.de/textlinkklick.php?id=%CID%', NULL),
327 (46, 9, 'textlink_view', 'http://if.alstermarketing.de/interface/out_textlink.php', 'http://www.alstermarketing.de/textlinkklick.php?id=%CID%', NULL),
328 (39, 9, 'textmail', 'http://if.alstermarketing.de/interface/out_paidmail.php', 'http://www.alstermarketing.de/emailf.php?id=%CID%', NULL)");
329
330                 // Network type handlers - BonusSponsor
331                 addExtensionSql("INSERT INTO `{?_MYSQL_PREFIX?}_network_types` (`network_type_id`, `network_id`, `network_type_handle`, `network_type_api_url`, `network_type_click_url`, `network_type_banner_url`) VALUES
332 (50, 10, 'banner_click', 'http://www.bonussponsor.de/interface/out_banner.php', 'http://www.bonussponsor.de/bannerklf.php?id=%CID%', 'http://www.bonussponsor.de/banner.php?id=%CID%'),
333 (51, 10, 'banner_view', 'http://www.bonussponsor.de/interface/out_banner.php', 'http://www.bonussponsor.de/bannerklf.php?id=%CID%', 'http://www.bonussponsor.de/banner.php?id=%CID%'),
334 (54, 10, 'focredbanner', 'http://www.bonussponsor.de/interface/out_fbanner.php', 'http://www.bonussponsor.de/bannerklf.php?id=%CID%', 'http://www.bonussponsor.de/banner.php?id=%CID%'),
335 (56, 10, 'htmlmail', 'http://www.bonussponsor.de/interface/out_paidmail.php', 'http://www.bonussponsor.de/emailf.php?id=%CID%', NULL),
336 (57, 10, 'layer_click', 'http://www.bonussponsor.de/interface/out_layer.php', 'http://www.bonussponsor.de/layer.php?id=%CID%', NULL),
337 (58, 10, 'layer_view', 'http://www.bonussponsor.de/interface/out_layer.php', 'http://www.bonussponsor.de/layer.php?id=%CID%', NULL),
338 (61, 10, 'lead', 'http://www.bonussponsor.de/interface/out_lead.php', 'http://www.bonussponsor.de/lead.php?id=%CID%', NULL),
339 (60, 10, 'popdown', 'http://www.bonussponsor.de/interface/out_popdown.php', 'http://www.bonussponsor.de/popdown.php?id=%CID%', NULL),
340 (59, 10, 'popup', 'http://www.bonussponsor.de/interface/out_popup.php', 'http://www.bonussponsor.de/popup.php?id=%CID%', NULL),
341 (62, 10, 'sale', 'http://www.bonussponsor.de/interface/out_sale.php', 'http://www.bonussponsor.de/sale.php?id=%CID%', NULL),
342 (52, 10, 'textlink_click', 'http://www.bonussponsor.de/interface/out_textlink.php', 'http://www.bonussponsor.de/textlinkklick.php?id=%CID%', NULL),
343 (53, 10, 'textlink_view', 'http://www.bonussponsor.de/interface/out_textlink.php', 'http://www.bonussponsor.de/textlinkklick.php?id=%CID%', NULL),
344 (55, 10, 'textmail', 'http://www.bonussponsor.de/interface/out_paidmail.php', 'http://www.bonussponsor.de/emailf.php?id=%CID%', NULL)");
345
346                 // Network type handlers - Fusion-Ads
347
348                 // Network type handlers - GigaPromo
349                 addExtensionSql("INSERT INTO `{?_MYSQL_PREFIX?}_network_types` (`network_type_id`, `network_id`, `network_type_handle`, `network_type_api_url`, `network_type_click_url`, `network_type_banner_url`) VALUES
350 (102, 12, 'banner_view', 'http://www.gigapromo.de/interface/output_viewbanner.php', 'http://www.gigapromo.de/view/klickbanner.php?id=%UID%&bid=%CID%&aid=%SID%', 'http://www.gigapromo.de/view/viewbanner.php?id=%UID%&bid=%CID%&aid=%SID%'),
351 (104, 12, 'focredbanner', 'http://www.gigapromo.de/interface/output_forcedbanner.php', 'http://www.gigapromo.de/view/forcedclickbanner.php?id=%UID%&bid=%CID%&aid=%SID%', 'http://www.gigapromo.de/view/forcedviewbanner.php?id=%UID%&bid=%CID%&aid=%SID%'),
352 (105, 12, 'forcedtextlink', 'http://www.gigapromo.de/interface/output_forcedtextlink.php', 'http://www.gigapromo.de/view/forcedclicktextlink.php?id=%UID%&bid=%CID%&aid=%SID%', NULL),
353 (103, 12, 'layer_view', 'http://www.gigapromo.de/interface/output_layerviews.php', 'http://www.gigapromo.de/view/layer.php?id=%UID%&bid=%CID%&aid=%SID%', NULL),
354 (108, 12, 'popdown', 'http://www.gigapromo.de/interface/output_popdown.php', 'http://www.gigapromo.de/view/popdown.php?id=%UID%&bid=%CID%&aid=%SID%', NULL),
355 (107, 12, 'popup', 'http://www.gigapromo.de/interface/output_popup.php', 'http://www.gigapromo.de/view/popup.php?id=%UID%&bid=%CID%&aid=%SID%', NULL),
356 (106, 12, 'textmail', 'http://www.gigapromo.de/interface/output_paidmails.php', 'http://www.gigapromo.de/view/paidmail.php?id=%UID%&bid=%CID%&aid=%SID%', NULL)");
357
358                 // Network type handlers - Make-Euros
359                 addExtensionSql("INSERT INTO `{?_MYSQL_PREFIX?}_network_types` (`network_type_id`, `network_id`, `network_type_handle`, `network_type_api_url`, `network_type_click_url`, `network_type_banner_url`) VALUES
360 (63, 13, 'banner_click', 'http://www.make-euros.de/interface/out_banner.php', 'http://www.make-euros.de/bannerklf.php?id=%CID%', 'http://www.make-euros.de/banner.php?id=%CID%'),
361 (64, 13, 'banner_view', 'http://www.make-euros.de/interface/out_banner.php', 'http://www.make-euros.de/bannerklf.php?id=%CID%', 'http://www.make-euros.de/banner.php?id=%CID%'),
362 (68, 13, 'focredbanner', 'http://www.make-euros.de/interface/out_fbanner.php', 'http://www.make-euros.de/bannerklf.php?id=%CID%', 'http://www.make-euros.de/banner.php?id=%CID%'),
363 (71, 13, 'htmlmail', 'http://www.make-euros.de/interface/out_paidmail.php', 'http://www.make-euros.de/emailf.php?id=%CID%', NULL),
364 (72, 13, 'layer_click', 'http://www.make-euros.de/interface/out_layer.php', 'http://www.make-euros.de/layer.php?id=%CID%', NULL),
365 (73, 13, 'layer_view', 'http://www.make-euros.de/interface/out_layer.php', 'http://www.make-euros.de/layer.php?id=%CID%', NULL),
366 (76, 13, 'lead', 'http://www.make-euros.de/interface/out_lead.php', 'http://www.make-euros.de /lead.php?id=%CID%', NULL),
367 (75, 13, 'popdown', 'http://www.make-euros.de/interface/out_popdown.php', 'http://www.make-euros.de/popdown.php?id=%CID%', NULL),
368 (74, 13, 'popup', 'http://www.make-euros.de/interface/out_popup.php', 'http://www.make-euros.de/popup.php?id=%CID%', NULL),
369 (77, 13, 'sale', 'http://www.make-euros.de/interface/out_sale.php', 'http://www.make-euros.de /sale.php?id=%CID%', NULL),
370 (67, 13, 'surfbar_click', 'http://www.make-euros.de/interface/out_sbanner.php', 'http://www.make-euros.de/bannerklf.php?id=%CID%', 'http://www.make-euros.de/banner.php?id=%CID%'),
371 (69, 13, 'surfbar_view', 'http://www.make-euros.de/interface/out_sbanner.php', 'http://www.make-euros.de/bannerklf.php?id=%CID%', 'http://www.make-euros.de/banner.php?id=%CID%'),
372 (65, 13, 'textlink_click', 'http://www.make-euros.de/interface/out_textlink.php', 'http://www.make-euros.de/textlinkklick.php?id=%CID%', NULL),
373 (66, 13, 'textlink_view', 'http://www.make-euros.de/interface/out_textlink.php', 'http://www.make-euros.de/textlinkklick.php?id=%CID%', NULL),
374 (70, 13, 'textmail', 'http://www.make-euros.de/interface/out_paidmail.php', 'http://www.make-euros.de/emailf.php?id=%CID%', NULL)");
375
376                 // Network type handlers - Mega-Ad
377                 addExtensionSql("INSERT INTO `{?_MYSQL_PREFIX?}_network_types` (`network_type_id`, `network_id`, `network_type_handle`, `network_type_api_url`, `network_type_click_url`, `network_type_banner_url`) VALUES
378 (112, 14, 'banner_click', 'http://www.mega-ad.de/interface/', 'http://www.mega-ad.de/codes/klickbanner.php?id=%UID%&bid=%CID%&aid=%SID%', 'http://www.mega-ad.de/codes/view.php?id=%UID%&bid=%CID%&aid=%SID%'),
379 (111, 14, 'banner_view', 'http://www.mega-ad.de/interface/', 'http://www.mega-ad.de/codes/bannerklick.php?id=%UID%&bid=%CID%&aid=%SID%', 'http://www.mega-ad.de/codes/bannerview.php?id=%UID%&bid=%CID%&aid=%SID%'),
380 (114, 14, 'button_view', 'http://www.mega-ad.de/interface/', 'http://www.mega-ad.de/codes/buttonklick.php?id=%UID%&bid=%CID%&aid=%SID%', 'http://www.mega-ad.de/codes/buttonview.php?id=%UID%&bid=%CID%&aid=%SID%'),
381 (109, 14, 'focredbanner', 'http://www.mega-ad.de/interface/', 'http://www.mega-ad.de/codes/forcedbannerklick.php?id=%UID%&bid=%CID%&aid=%SID%', 'http://www.mega-ad.de/codes/forcedbannerview.php?id=%UID%&bid=%CID%&aid=%SID%'),
382 (110, 14, 'forcedtextlink', 'http://www.mega-ad.de/interface/', 'http://www.mega-ad.de/codes/forcedtextlinkklick.php?id=%UID%&bid=%CID%&aid=%SID%', NULL),
383 (116, 14, 'popup', 'http://www.mega-ad.de/interface/', 'http://www.mega-ad.de/codes/popup.php?id=%UID%&bid=%CID%&aid=%SID%', NULL),
384 (113, 14, 'skybanner_view', 'http://www.mega-ad.de/interface/', 'http://www.mega-ad.de/codes/skybannerklick.php?id=%UID%&bid=%CID%&aid=%SID%', 'http://www.mega-ad.de/codes/skybannerview.php?id=%UID%&bid=%CID%&aid=%SID%'),
385 (115, 14, 'textlink_view', 'http://www.mega-ad.de/interface/', 'http://www.mega-ad.de/codes/textlinkview.php?id=%UID%&bid=%CID%&aid=%SID%', NULL),
386 (117, 14, 'textmail', 'http://www.mega-ad.de/interface/', 'http://www.mega-ad.de/codes/paidmail.php?id=%UID%&bid=%CID%&aid=%SID%', NULL)");
387
388                 // Network type handlers - Power-Promo
389                 addExtensionSql("INSERT INTO `{?_MYSQL_PREFIX?}_network_types` (`network_type_id`, `network_id`, `network_type_handle`, `network_type_api_url`, `network_type_click_url`, `network_type_banner_url`) VALUES
390 (78, 15, 'banner_click', 'http://www.power-promo.de/interface/out_banner.php', 'http://www.power-promo.de/bannerklf.php?id=%CID%', 'http://www.power-promo.de/banner.php?id=%CID%'),
391 (79, 15, 'banner_view', 'http://www.power-promo.de/interface/out_banner.php', 'http://www.power-promo.de/bannerklf.php?id=%CID%', 'http://www.power-promo.de/banner.php?id=%CID%'),
392 (84, 15, 'focredbanner', 'http://www.power-promo.de/interface/out_fbanner.php', 'http://www.power-promo.de/bannerklf.php?id=%CID%', 'http://www.power-promo.de/banner.php?id=%CID%'),
393 (86, 15, 'htmlmail', 'http://www.power-promo.de/interface/out_paidmail.php', 'http://www.power-promo.de/emailf.php?id=%CID%', NULL),
394 (87, 15, 'layer_click', 'http://www.power-promo.de/interface/out_layer.php', 'http://www.power-promo.de/layer.php?id=%CID%', NULL),
395 (88, 15, 'layer_view', 'http://www.power-promo.de/interface/out_layer.php', 'http://www.power-promo.de/layer.php?id=%CID%', NULL),
396 (91, 15, 'lead', 'http://www.power-promo.de/interface/out_lead.php', 'http://www.power-promo.de/lead.php?id=%CID%', NULL),
397 (90, 15, 'popdown', 'http://www.power-promo.de/interface/out_popdown.php', 'http://www.power-promo.de/popdown.php?id=%CID%', NULL),
398 (89, 15, 'popup', 'http://www.power-promo.de/interface/out_popup.php', 'http://www.power-promo.de/popup.php?id=%CID%', NULL),
399 (92, 15, 'sale', 'http://www.power-promo.de/interface/out_sale.php', 'http://www.power-promo.de/sale.php?id=%CID%', NULL),
400 (82, 15, 'surfbar_click', 'http://www.power-promo.de/interface/out_sbanner.php', 'http://www.power-promo.de/bannerklf.php?id=%CID%', 'http://www.power-promo.de/banner.php?id=%CID%'),
401 (83, 15, 'surfbar_view', 'http://www.power-promo.de/interface/out_sbanner.php', 'http://www.power-promo.de/bannerklf.php?id=%CID%', 'http://www.power-promo.de/banner.php?id=%CID%'),
402 (80, 15, 'textlink_click', 'http://www.power-promo.de/interface/out_textlink.php', 'http://www.power-promo.de/textlinkklick.php?id=%CID%', NULL),
403 (81, 15, 'textlink_view', 'http://www.power-promo.de/interface/out_textlink.php', 'http://www.power-promo.de/textlinkklick.php?id=%CID%', NULL),
404 (85, 15, 'textmail', 'http://www.power-promo.de/interface/out_paidmail.php', 'http://www.power-promo.de/emailf.php?id=%CID%', NULL)");
405
406                 // Network type handlers - SeCash
407                 addExtensionSql("INSERT INTO `{?_MYSQL_PREFIX?}_network_types` (`network_type_id`, `network_id`, `network_type_handle`, `network_type_api_url`, `network_type_click_url`, `network_type_banner_url`) VALUES
408 (96, 16, 'banner_click', 'http://www.secash.de/interface/', 'http://www.secash.de/codes/klickbanner.php?id=%UID%&bid=%CID%&aid=%SID%', 'http://www.secash.de/codes/viewbanner.php?id=%UID%&bid=%CID%&aid=%SID%'),
409 (95, 16, 'banner_view', 'http://www.secash.de/interface/', 'http://www.secash.de/codes/bannerklick.php?id=%UID%&bid=%CID%&aid=%SID%', 'http://www.secash.de/codes/bannerview.php?id=%UID%&bid=%CID%&aid=%SID%'),
410 (98, 16, 'button_view', 'http://www.secash.de/interface/', 'http://www.secash.de/codes/buttonklick.php?id=%UID%&bid=%CID%&aid=%SID%', 'http://www.secash.de/codes/buttonview.php?id=%UID%&bid=%CID%&aid=%SID%'),
411 (93, 16, 'focredbanner', 'http://www.secash.de/interface/', 'http://www.secash.de/codes/forcedbannerklick.php?id=%UID%&bid=%CID%&aid=%SID%', 'http://www.secash.de/codes/forcedbannerview.php?id=%UID%&bid=%CID%&aid=%SID%'),
412 (94, 16, 'forcedtextlink', 'http://www.secash.de/interface/', 'http://www.secash.de/codes/forcedtextlinkklick.php?id=%UID%&bid=%CID%&aid=%SID%', NULL),
413 (100, 16, 'popup', 'http://www.secash.de/interface/', 'http://www.secash.de/codes/popup.php?id=%UID%&bid=%CID%&aid=%SID%', NULL),
414 (97, 16, 'skybanner_view', 'http://www.secash.de/interface/', 'http://www.secash.de/codes/skybannerklick.php?id=%UID%&bid=%CID%&aid=%SID%', 'http://www.secash.de/codes/skybannerview.php?id=%UID%&bid=%CID%&aid=%SID%'),
415 (99, 16, 'textlink_view', 'http://www.secash.de/interface/', 'http://www.secash.de/codes/textlinkview.php?id=%UID%&bid=%CID%&aid=%SID%', NULL),
416 (101, 16, 'textmail', 'http://www.secash.de/interface/', 'http://www.secash.de/codes/paidmail.php?id=%UID%&bid=%CID%&aid=%SID%', NULL)");
417
418                 // Network type handlers - Der Werbepartner.cc
419
420                 // Network type handlers - Yoo!Media
421
422                 // Request parameters per type handler - A3H
423                 addExtensionSql("INSERT INTO `{?_MYSQL_PREFIX?}_network_request_params` (`network_param_id`, `network_id`, `network_type_id`, `request_param_key`, `request_param_value`, `request_param_default`) VALUES
424 (1, 1, 1, 'id', 'id', NULL),
425 (2, 1, 1, 'sid', 'sid', NULL),
426 (3, 1, 1, 'password', 'pw', NULL),
427 (4, 1, 1, 'reload', 'reload', NULL),
428 (5, 1, 1, 'reward', 'verguetung', NULL),
429 (6, 1, 1, 'min_stay', 'ma', NULL),
430 (7, 1, 1, 'type', 'typ', NULL),
431 (8, 1, 1, 'remain', 'uebrig', NULL),
432 (9, 1, 1, 'size', 'size', NULL),
433 (10, 1, 2, 'id', 'id', NULL),
434 (11, 1, 2, 'sid', 'sid', NULL),
435 (12, 1, 2, 'password', 'pw', NULL),
436 (13, 1, 2, 'reload', 'reload', NULL),
437 (14, 1, 2, 'reward', 'verguetung', NULL),
438 (15, 1, 2, 'remain', 'uebrig', NULL),
439 (16, 1, 3, 'id', 'id', NULL),
440 (17, 1, 3, 'sid', 'sid', NULL),
441 (18, 1, 3, 'password', 'pw', NULL),
442 (19, 1, 3, 'reload', 'reload', NULL),
443 (20, 1, 3, 'reward', 'verguetung', NULL),
444 (21, 1, 3, 'type', 'typ', NULL),
445 (22, 1, 3, 'remain', 'uebrig', NULL),
446 (23, 1, 3, 'size', 'size', NULL),
447 (24, 1, 4, 'id', 'id', NULL),
448 (25, 1, 4, 'sid', 'sid', NULL),
449 (26, 1, 4, 'password', 'pw', NULL),
450 (27, 1, 4, 'reload', 'reload', NULL),
451 (28, 1, 4, 'reward', 'verguetung', NULL),
452 (29, 1, 4, 'min_stay', 'ma', NULL),
453 (30, 1, 4, 'remain', 'uebrig', NULL),
454 (31, 1, 4, 'size', 'size', NULL),
455 (32, 1, 5, 'id', 'id', NULL),
456 (33, 1, 5, 'sid', 'sid', NULL),
457 (34, 1, 5, 'password', 'pw', NULL),
458 (35, 1, 5, 'reload', 'reload', NULL),
459 (36, 1, 5, 'reward', 'verguetung', NULL),
460 (37, 1, 5, 'min_stay', 'ma', NULL),
461 (38, 1, 5, 'type', 'typ', 'text'),
462 (39, 1, 5, 'remain', 'uebrig', NULL),
463 (40, 1, 11, 'id', 'id', NULL),
464 (41, 1, 11, 'sid', 'sid', NULL),
465 (42, 1, 11, 'password', 'pw', NULL),
466 (43, 1, 11, 'reload', 'reload', NULL),
467 (44, 1, 11, 'reward', 'verguetung', NULL),
468 (45, 1, 11, 'min_stay', 'ma', NULL),
469 (46, 1, 11, 'type', 'typ', 'html'),
470 (47, 1, 11, 'remain', 'uebrig', NULL),
471 (48, 1, 6, 'id', 'id', NULL),
472 (49, 1, 6, 'sid', 'sid', NULL),
473 (50, 1, 6, 'password', 'pw', NULL),
474 (51, 1, 6, 'reload', 'reload', NULL),
475 (52, 1, 6, 'reward', 'verguetung', NULL),
476 (53, 1, 6, 'type', 'typ', NULL),
477 (54, 1, 6, 'remain', 'uebrig', NULL),
478 (55, 1, 7, 'id', 'id', NULL),
479 (56, 1, 7, 'sid', 'sid', NULL),
480 (57, 1, 7, 'password', 'pw', NULL),
481 (58, 1, 7, 'reload', 'reload', NULL),
482 (59, 1, 7, 'reward', 'verguetung', NULL),
483 (60, 1, 7, 'min_stay', 'ma', NULL),
484 (61, 1, 7, 'remain', 'uebrig', NULL),
485 (62, 1, 8, 'id', 'id', NULL),
486 (63, 1, 8, 'sid', 'sid', NULL),
487 (64, 1, 8, 'password', 'pw', NULL),
488 (65, 1, 8, 'reload', 'reload', NULL),
489 (66, 1, 8, 'reward', 'verguetung', NULL),
490 (67, 1, 8, 'min_stay', 'ma', NULL),
491 (68, 1, 8, 'remain', 'uebrig', NULL),
492 (69, 1, 9, 'id', 'id', NULL),
493 (70, 1, 9, 'sid', 'sid', NULL),
494 (71, 1, 9, 'password', 'pw', NULL),
495 (72, 1, 9, 'reward', 'verguetung', NULL),
496 (73, 1, 9, 'remain', 'uebrig', NULL),
497 (74, 1, 10, 'id', 'id', NULL),
498 (75, 1, 10, 'sid', 'sid', NULL),
499 (76, 1, 10, 'password', 'pw', NULL),
500 (77, 1, 10, 'reward', 'verguetung', NULL),
501 (78, 1, 10, 'remain', 'uebrig', NULL)");
502
503                 // Request parameters per type handler - AbisZED-Netz
504
505                 // Request parameters per type handler - Ad-Magnet
506
507                 // Request parameters per type handler - AdCocktail
508
509                 // Request parameters per type handler - Ads4
510                 addExtensionSql("INSERT INTO `{?_MYSQL_PREFIX?}_network_request_params` (`network_param_id`, `network_id`, `network_type_id`, `request_param_key`, `request_param_value`, `request_param_default`) VALUES
511 (79, 5, 14, 'id', 'id', NULL),
512 (80, 5, 14, 'password', 'pwd', NULL),
513 (81, 5, 14, 'currency', 'waehrung', NULL),
514 (82, 5, 14, 'extra', 'mediatype', 'forced_banner'),
515 (83, 5, 14, 'reward', 'verg', NULL),
516 (84, 5, 14, 'reload', 'reload', NULL),
517 (85, 5, 14, 'remain', 'uebrig', NULL),
518 (86, 5, 14, 'min_stay', 'ma', NULL),
519 (87, 5, 15, 'id', 'id', NULL),
520 (88, 5, 15, 'password', 'pwd', NULL),
521 (89, 5, 15, 'currency', 'waehrung', NULL),
522 (90, 5, 15, 'extra', 'mediatype', 'textmails'),
523 (91, 5, 15, 'reward', 'verg', NULL),
524 (92, 5, 15, 'reload', 'reload', NULL),
525 (93, 5, 15, 'remain', 'uebrig', NULL),
526 (94, 5, 15, 'min_stay', 'ma', NULL),
527 (95, 5, 16, 'id', 'id', NULL),
528 (96, 5, 16, 'password', 'pw', NULL),
529 (97, 5, 16, 'currency', 'waehrung', NULL),
530 (98, 5, 16, 'extra', 'mediatype', 'htmlmails'),
531 (99, 5, 16, 'reward', 'verg', NULL),
532 (100, 5, 16, 'reload', 'reload', NULL),
533 (101, 5, 16, 'remain', 'uebrig', NULL),
534 (102, 5, 16, 'min_stay', 'ma', NULL)");
535
536                 // Request parameters per type handler - Ads4Webbis
537                 addExtensionSql("INSERT INTO `{?_MYSQL_PREFIX?}_network_request_params` (`network_param_id`, `network_id`, `network_type_id`, `request_param_key`, `request_param_value`, `request_param_default`) VALUES
538 (109, 6, 17, 'extra', 'typ', 'forcedbanner'),
539 (110, 6, 17, 'id', 'id', NULL),
540 (111, 6, 17, 'password', 'pw', NULL),
541 (113, 6, 17, 'reload', 'reload', NULL),
542 (112, 6, 17, 'remain', 'uebrig', NULL),
543 (114, 6, 17, 'reward', 'verguetung', NULL),
544 (115, 6, 18, 'extra', 'typ', 'forcedtextlink'),
545 (116, 6, 18, 'id', 'id', NULL),
546 (117, 6, 18, 'password', 'pw', NULL),
547 (119, 6, 18, 'reload', 'reload', NULL),
548 (118, 6, 18, 'remain', 'uebrig', NULL),
549 (120, 6, 18, 'reward', 'verguetung', NULL),
550 (121, 6, 19, 'extra', 'typ', 'bannerview'),
551 (122, 6, 19, 'id', 'id', NULL),
552 (123, 6, 19, 'password', 'pw', NULL),
553 (125, 6, 19, 'reload', 'reload', NULL),
554 (124, 6, 19, 'remain', 'uebrig', NULL),
555 (126, 6, 19, 'reward', 'verguetung', NULL),
556 (103, 6, 20, 'extra', 'typ', 'bannerklick'),
557 (104, 6, 20, 'id', 'id', NULL),
558 (105, 6, 20, 'password', 'pw', NULL),
559 (107, 6, 20, 'reload', 'reload', NULL),
560 (106, 6, 20, 'remain', 'uebrig', NULL),
561 (108, 6, 20, 'reward', 'verguetung', NULL),
562 (127, 6, 21, 'extra', 'typ', 'skybannerview'),
563 (128, 6, 21, 'id', 'id', NULL),
564 (129, 6, 21, 'password', 'pw', NULL),
565 (131, 6, 21, 'reload', 'reload', NULL),
566 (130, 6, 21, 'remain', 'uebrig', NULL),
567 (132, 6, 21, 'reward', 'verguetung', NULL),
568 (133, 6, 22, 'extra', 'typ', 'buttonview'),
569 (134, 6, 22, 'id', 'id', NULL),
570 (135, 6, 22, 'password', 'pw', NULL),
571 (137, 6, 22, 'reload', 'reload', NULL),
572 (136, 6, 22, 'remain', 'uebrig', NULL),
573 (138, 6, 22, 'reward', 'verguetung', NULL),
574 (139, 6, 23, 'extra', 'typ', 'textview'),
575 (140, 6, 23, 'id', 'id', NULL),
576 (141, 6, 23, 'password', 'pw', NULL),
577 (143, 6, 23, 'reload', 'reload', NULL),
578 (142, 6, 23, 'remain', 'uebrig', NULL),
579 (144, 6, 23, 'reward', 'verguetung', NULL),
580 (145, 6, 24, 'extra', 'typ', 'popup'),
581 (146, 6, 24, 'id', 'id', NULL),
582 (151, 6, 24, 'min_stay', 'ma', NULL),
583 (147, 6, 24, 'password', 'pw', NULL),
584 (149, 6, 24, 'reload', 'reload', NULL),
585 (148, 6, 24, 'remain', 'uebrig', NULL),
586 (150, 6, 24, 'reward', 'verguetung', NULL),
587 (152, 6, 25, 'extra', 'typ', 'paidmail'),
588 (153, 6, 25, 'id', 'id', NULL),
589 (158, 6, 25, 'min_stay', 'ma', NULL),
590 (154, 6, 25, 'password', 'pw', NULL),
591 (156, 6, 25, 'reload', 'reload', NULL),
592 (155, 6, 25, 'remain', 'uebrig', NULL),
593 (157, 6, 25, 'reward', 'verguetung', NULL)");
594
595                 // Request parameters per type handler - Ads4World
596                 addExtensionSql("INSERT INTO `{?_MYSQL_PREFIX?}_network_request_params` (`network_param_id`, `network_id`, `network_type_id`, `request_param_key`, `request_param_value`, `request_param_default`) VALUES
597 (159, 7, 29, 'type', 'typ', 'bannerklick'),
598 (160, 7, 29, 'id', 'id', NULL),
599 (161, 7, 29, 'password', 'pw', NULL),
600 (162, 7, 29, 'remain', 'uebrig', NULL),
601 (163, 7, 29, 'reload', 'reload', NULL),
602 (164, 7, 29, 'reward', 'verguetung', NULL),
603 (165, 7, 28, 'type', 'typ', 'bannerview'),
604 (166, 7, 28, 'id', 'id', NULL),
605 (167, 7, 28, 'password', 'pw', NULL),
606 (168, 7, 28, 'remain', 'uebrig', NULL),
607 (169, 7, 28, 'reload', 'reload', NULL),
608 (170, 7, 28, 'reward', 'verguetung', NULL),
609 (171, 7, 31, 'type', 'typ', 'buttonview'),
610 (172, 7, 31, 'id', 'id', NULL),
611 (173, 7, 31, 'password', 'pw', NULL),
612 (174, 7, 31, 'remain', 'uebrig', NULL),
613 (175, 7, 31, 'reload', 'reload', NULL),
614 (176, 7, 31, 'reward', 'verguetung', NULL),
615 (177, 7, 26, 'type', 'typ', 'forcedbanner'),
616 (178, 7, 26, 'id', 'id', NULL),
617 (179, 7, 26, 'password', 'pw', NULL),
618 (180, 7, 26, 'remain', 'uebrig', NULL),
619 (181, 7, 26, 'reload', 'reload', NULL),
620 (182, 7, 26, 'reward', 'verguetung', NULL),
621 (183, 7, 27, 'type', 'typ', 'forcedtextlink'),
622 (184, 7, 27, 'id', 'id', NULL),
623 (185, 7, 27, 'password', 'pw', NULL),
624 (186, 7, 27, 'remain', 'uebrig', NULL),
625 (187, 7, 27, 'reload', 'reload', NULL),
626 (188, 7, 27, 'reward', 'verguetung', NULL),
627 (189, 7, 33, 'type', 'typ', 'popup'),
628 (190, 7, 33, 'id', 'id', NULL),
629 (191, 7, 33, 'password', 'pw', NULL),
630 (192, 7, 33, 'remain', 'uebrig', NULL),
631 (193, 7, 33, 'reload', 'reload', NULL),
632 (194, 7, 33, 'reward', 'verguetung', NULL),
633 (195, 7, 33, 'min_stay', 'ma', NULL),
634 (196, 7, 30, 'type', 'typ', 'skybannerview'),
635 (197, 7, 30, 'id', 'id', NULL),
636 (198, 7, 30, 'password', 'pw', NULL),
637 (199, 7, 30, 'remain', 'uebrig', NULL),
638 (200, 7, 30, 'reload', 'reload', NULL),
639 (201, 7, 30, 'reward', 'verguetung', NULL),
640 (202, 7, 32, 'type', 'typ', 'textview'),
641 (203, 7, 32, 'id', 'id', NULL),
642 (204, 7, 32, 'password', 'pw', NULL),
643 (205, 7, 32, 'remain', 'uebrig', NULL),
644 (206, 7, 32, 'reload', 'reload', NULL),
645 (207, 7, 32, 'reward', 'verguetung', NULL),
646 (208, 7, 34, 'type', 'typ', 'textmails'),
647 (209, 7, 34, 'id', 'id', NULL),
648 (210, 7, 34, 'password', 'pw', NULL),
649 (211, 7, 34, 'remain', 'uebrig', NULL),
650 (212, 7, 34, 'reload', 'reload', NULL),
651 (213, 7, 34, 'reward', 'verguetung', NULL),
652 (214, 7, 34, 'min_stay', 'ma', NULL)");
653
654                 // Request parameters per type handler - Affiliblatt
655
656                 // Request parameters per type handler - Alster-Marketing
657                 addExtensionSql("INSERT INTO `{?_MYSQL_PREFIX?}_network_request_params` (`network_param_id`, `network_id`, `network_type_id`, `request_param_key`, `request_param_value`, `request_param_default`) VALUES
658 (215, 9, 35, 'id', 'id', NULL),
659 (216, 9, 35, 'sid', 'sid', NULL),
660 (217, 9, 35, 'password', 'pw', NULL),
661 (218, 9, 35, 'reward', 'verguetung', NULL),
662 (219, 9, 35, 'reload', 'reload', NULL),
663 (220, 9, 35, 'remain', 'uebrig', NULL),
664 (221, 9, 35, 'type', 'typ', 'klick'),
665 (222, 9, 35, 'size', 'size', NULL),
666 (223, 9, 45, 'id', 'id', NULL),
667 (224, 9, 45, 'sid', 'sid', NULL),
668 (225, 9, 45, 'password', 'pw', NULL),
669 (226, 9, 45, 'reward', 'verguetung', NULL),
670 (227, 9, 45, 'reload', 'reload', NULL),
671 (228, 9, 45, 'remain', 'uebrig', NULL),
672 (229, 9, 45, 'type', 'typ', 'view'),
673 (230, 9, 45, 'size', 'size', NULL),
674 (231, 9, 36, 'id', 'id', NULL),
675 (232, 9, 36, 'sid', 'sid', NULL),
676 (233, 9, 36, 'password', 'pw', NULL),
677 (234, 9, 36, 'reward', 'verguetung', NULL),
678 (235, 9, 36, 'reload', 'reload', NULL),
679 (236, 9, 36, 'remain', 'uebrig', NULL),
680 (237, 9, 36, 'type', 'typ', 'klick'),
681 (238, 9, 46, 'id', 'id', NULL),
682 (239, 9, 46, 'sid', 'sid', NULL),
683 (240, 9, 46, 'password', 'pw', NULL),
684 (241, 9, 46, 'reward', 'verguetung', NULL),
685 (242, 9, 46, 'reload', 'reload', NULL),
686 (243, 9, 46, 'remain', 'uebrig', NULL),
687 (244, 9, 46, 'type', 'typ', 'view'),
688 (245, 9, 37, 'id', 'id', NULL),
689 (246, 9, 37, 'sid', 'sid', NULL),
690 (247, 9, 37, 'password', 'pw', NULL),
691 (248, 9, 37, 'reward', 'verguetung', NULL),
692 (249, 9, 37, 'reload', 'reload', NULL),
693 (250, 9, 37, 'remain', 'uebrig', NULL),
694 (251, 9, 37, 'type', 'typ', 'klick'),
695 (252, 9, 37, 'size', 'size', NULL),
696 (253, 9, 47, 'id', 'id', NULL),
697 (254, 9, 47, 'sid', 'sid', NULL),
698 (255, 9, 47, 'password', 'pw', NULL),
699 (256, 9, 47, 'reward', 'verguetung', NULL),
700 (257, 9, 47, 'reload', 'reload', NULL),
701 (258, 9, 47, 'remain', 'uebrig', NULL),
702 (259, 9, 47, 'type', 'typ', 'view'),
703 (260, 9, 47, 'size', 'size', NULL),
704 (261, 9, 38, 'id', 'id', NULL),
705 (262, 9, 38, 'sid', 'sid', NULL),
706 (263, 9, 38, 'password', 'pw', NULL),
707 (264, 9, 38, 'reward', 'verguetung', NULL),
708 (265, 9, 38, 'reload', 'reload', NULL),
709 (266, 9, 38, 'remain', 'uebrig', NULL),
710 (267, 9, 38, 'size', 'size', NULL),
711 (268, 9, 38, 'min_stay', 'ma', NULL),
712 (269, 9, 39, 'id', 'id', NULL),
713 (270, 9, 39, 'sid', 'sid', NULL),
714 (271, 9, 39, 'password', 'pw', NULL),
715 (272, 9, 39, 'reward', 'verguetung', NULL),
716 (273, 9, 39, 'reload', 'reload', NULL),
717 (274, 9, 39, 'remain', 'uebrig', NULL),
718 (275, 9, 39, 'min_stay', 'ma', NULL),
719 (276, 9, 39, 'type', 'typ', 'text'),
720 (277, 9, 48, 'id', 'id', NULL),
721 (278, 9, 48, 'sid', 'sid', NULL),
722 (279, 9, 48, 'password', 'pw', NULL),
723 (280, 9, 48, 'reward', 'verguetung', NULL),
724 (281, 9, 48, 'reload', 'reload', NULL),
725 (282, 9, 48, 'remain', 'uebrig', NULL),
726 (283, 9, 48, 'min_stay', 'ma', NULL),
727 (284, 9, 48, 'type', 'typ', 'html'),
728 (285, 9, 40, 'id', 'id', NULL),
729 (286, 9, 40, 'sid', 'sid', NULL),
730 (287, 9, 40, 'password', 'pw', NULL),
731 (288, 9, 40, 'reward', 'verguetung', NULL),
732 (289, 9, 40, 'reload', 'reload', NULL),
733 (290, 9, 40, 'remain', 'uebrig', NULL),
734 (291, 9, 40, 'type', 'typ', 'klick'),
735 (292, 9, 49, 'id', 'id', NULL),
736 (293, 9, 49, 'sid', 'sid', NULL),
737 (294, 9, 49, 'password', 'pw', NULL),
738 (295, 9, 49, 'reward', 'verguetung', NULL),
739 (296, 9, 49, 'reload', 'reload', NULL),
740 (297, 9, 49, 'remain', 'uebrig', NULL),
741 (298, 9, 49, 'type', 'typ', 'view'),
742 (299, 9, 41, 'id', 'id', NULL),
743 (300, 9, 41, 'sid', 'sid', NULL),
744 (301, 9, 41, 'password', 'pw', NULL),
745 (302, 9, 41, 'reward', 'verguetung', NULL),
746 (303, 9, 41, 'reload', 'reload', NULL),
747 (304, 9, 41, 'remain', 'uebrig', NULL),
748 (305, 9, 41, 'min_stay', 'ma', NULL),
749 (306, 9, 42, 'id', 'id', NULL),
750 (307, 9, 42, 'sid', 'sid', NULL),
751 (308, 9, 42, 'password', 'pw', NULL),
752 (309, 9, 42, 'reward', 'verguetung', NULL),
753 (310, 9, 42, 'reload', 'reload', NULL),
754 (311, 9, 42, 'remain', 'uebrig', NULL),
755 (312, 9, 42, 'min_stay', 'ma', NULL),
756 (313, 9, 43, 'id', 'id', NULL),
757 (314, 9, 43, 'sid', 'sid', NULL),
758 (315, 9, 43, 'password', 'pw', NULL),
759 (316, 9, 43, 'reward', 'verguetung', NULL),
760 (317, 9, 43, 'remain', 'uebrig', NULL),
761 (318, 9, 44, 'id', 'id', NULL),
762 (319, 9, 44, 'sid', 'sid', NULL),
763 (320, 9, 44, 'password', 'pw', NULL),
764 (321, 9, 44, 'reward', 'verguetung', NULL),
765 (322, 9, 44, 'remain', 'uebrig', NULL)");
766
767                 // Request parameters per type handler - BonusSponsor
768                 addExtensionSql("INSERT INTO `{?_MYSQL_PREFIX?}_network_request_params` (`network_param_id`, `network_id`, `network_type_id`, `request_param_key`, `request_param_value`, `request_param_default`) VALUES
769 (323, 10, 50, 'id', 'id', NULL),
770 (324, 10, 50, 'sid', 'sid', NULL),
771 (325, 10, 50, 'password', 'pw', NULL),
772 (326, 10, 50, 'reward', 'verguetung', NULL),
773 (327, 10, 50, 'reload', 'reload', NULL),
774 (328, 10, 50, 'remain', 'uebrig', NULL),
775 (329, 10, 50, 'type', 'typ', 'klick'),
776 (330, 10, 50, 'size', 'size', NULL),
777 (331, 10, 51, 'id', 'id', NULL),
778 (332, 10, 51, 'sid', 'sid', NULL),
779 (333, 10, 51, 'password', 'pw', NULL),
780 (334, 10, 51, 'reward', 'verguetung', NULL),
781 (335, 10, 51, 'reload', 'reload', NULL),
782 (336, 10, 51, 'remain', 'uebrig', NULL),
783 (337, 10, 51, 'type', 'typ', 'view'),
784 (338, 10, 51, 'size', 'size', NULL),
785 (339, 10, 52, 'id', 'id', NULL),
786 (340, 10, 52, 'sid', 'sid', NULL),
787 (341, 10, 52, 'password', 'pw', NULL),
788 (342, 10, 52, 'reward', 'verguetung', NULL),
789 (343, 10, 52, 'reload', 'reload', NULL),
790 (344, 10, 52, 'remain', 'uebrig', NULL),
791 (345, 10, 52, 'type', 'typ', 'klick'),
792 (346, 10, 53, 'id', 'id', NULL),
793 (347, 10, 53, 'sid', 'sid', NULL),
794 (348, 10, 53, 'password', 'pw', NULL),
795 (349, 10, 53, 'reward', 'verguetung', NULL),
796 (350, 10, 53, 'reload', 'reload', NULL),
797 (351, 10, 53, 'remain', 'uebrig', NULL),
798 (352, 10, 53, 'type', 'typ', 'view'),
799 (353, 10, 54, 'id', 'id', NULL),
800 (354, 10, 54, 'sid', 'sid', NULL),
801 (355, 10, 54, 'password', 'pw', NULL),
802 (356, 10, 54, 'reward', 'verguetung', NULL),
803 (357, 10, 54, 'reload', 'reload', NULL),
804 (358, 10, 54, 'remain', 'uebrig', NULL),
805 (359, 10, 54, 'size', 'size', NULL),
806 (360, 10, 54, 'min_stay', 'ma', NULL),
807 (361, 10, 55, 'id', 'id', NULL),
808 (362, 10, 55, 'sid', 'sid', NULL),
809 (363, 10, 55, 'password', 'pw', NULL),
810 (364, 10, 55, 'reward', 'verguetung', NULL),
811 (365, 10, 55, 'reload', 'reload', NULL),
812 (366, 10, 55, 'remain', 'uebrig', NULL),
813 (367, 10, 55, 'min_stay', 'ma', NULL),
814 (368, 10, 55, 'type', 'typ', 'text'),
815 (369, 10, 56, 'id', 'id', NULL),
816 (370, 10, 56, 'sid', 'sid', NULL),
817 (371, 10, 56, 'password', 'pw', NULL),
818 (372, 10, 56, 'reward', 'verguetung', NULL),
819 (373, 10, 56, 'reload', 'reload', NULL),
820 (374, 10, 56, 'remain', 'uebrig', NULL),
821 (375, 10, 56, 'min_stay', 'ma', NULL),
822 (376, 10, 56, 'type', 'typ', 'html'),
823 (377, 10, 57, 'id', 'id', NULL),
824 (378, 10, 57, 'sid', 'sid', NULL),
825 (379, 10, 57, 'password', 'pw', NULL),
826 (380, 10, 57, 'reward', 'verguetung', NULL),
827 (381, 10, 57, 'reload', 'reload', NULL),
828 (382, 10, 57, 'remain', 'uebrig', NULL),
829 (383, 10, 57, 'type', 'typ', 'klick'),
830 (384, 10, 58, 'id', 'id', NULL),
831 (385, 10, 58, 'sid', 'sid', NULL),
832 (386, 10, 58, 'password', 'pw', NULL),
833 (387, 10, 58, 'reward', 'verguetung', NULL),
834 (388, 10, 58, 'reload', 'reload', NULL),
835 (389, 10, 58, 'remain', 'uebrig', NULL),
836 (390, 10, 58, 'type', 'typ', 'view'),
837 (391, 10, 59, 'id', 'id', NULL),
838 (392, 10, 59, 'sid', 'sid', NULL),
839 (393, 10, 59, 'password', 'pw', NULL),
840 (394, 10, 59, 'reward', 'verguetung', NULL),
841 (395, 10, 59, 'reload', 'reload', NULL),
842 (396, 10, 59, 'remain', 'uebrig', NULL),
843 (397, 10, 59, 'min_stay', 'ma', NULL),
844 (398, 10, 60, 'id', 'id', NULL),
845 (399, 10, 60, 'sid', 'sid', NULL),
846 (400, 10, 60, 'password', 'pw', NULL),
847 (401, 10, 60, 'reward', 'verguetung', NULL),
848 (402, 10, 60, 'reload', 'reload', NULL),
849 (403, 10, 60, 'remain', 'uebrig', NULL),
850 (404, 10, 60, 'min_stay', 'ma', NULL),
851 (405, 10, 61, 'id', 'id', NULL),
852 (406, 10, 61, 'sid', 'sid', NULL),
853 (407, 10, 61, 'password', 'pw', NULL),
854 (408, 10, 61, 'reward', 'verguetung', NULL),
855 (409, 10, 61, 'remain', 'uebrig', NULL),
856 (410, 10, 62, 'id', 'id', NULL),
857 (411, 10, 62, 'sid', 'sid', NULL),
858 (412, 10, 62, 'password', 'pw', NULL),
859 (413, 10, 62, 'reward', 'verguetung', NULL),
860 (414, 10, 62, 'remain', 'uebrig', NULL)");
861
862                 // Request parameters per type handler - Fusion-Ads
863
864                 // Request parameters per type handler - GigapPromo
865                 addExtensionSql("INSERT INTO `{?_MYSQL_PREFIX?}_network_request_params` (`network_param_id`, `network_id`, `network_type_id`, `request_param_key`, `request_param_value`, `request_param_default`) VALUES
866 (687, 12, 102, 'id', 'id', NULL),
867 (688, 12, 102, 'sid', 'aid', NULL),
868 (689, 12, 102, 'password', 'pw', NULL),
869 (690, 12, 102, 'reload', 'reload', NULL),
870 (691, 12, 102, 'reward', 'verguetung', NULL),
871 (692, 12, 102, 'remain', 'uebrig', NULL),
872 (693, 12, 102, 'size', 'typ', NULL),
873 (694, 12, 103, 'id', 'id', NULL),
874 (695, 12, 103, 'sid', 'aid', NULL),
875 (696, 12, 103, 'password', 'pw', NULL),
876 (697, 12, 103, 'reload', 'reload', NULL),
877 (698, 12, 103, 'reward', 'verguetung', NULL),
878 (699, 12, 103, 'remain', 'uebrig', NULL),
879 (700, 12, 104, 'id', 'id', NULL),
880 (701, 12, 104, 'sid', 'aid', NULL),
881 (702, 12, 104, 'password', 'pw', NULL),
882 (703, 12, 104, 'reload', 'reload', NULL),
883 (704, 12, 104, 'reward', 'verguetung', NULL),
884 (705, 12, 104, 'remain', 'uebrig', NULL),
885 (706, 12, 104, 'max_stay', 'ma', NULL),
886 (707, 12, 105, 'id', 'id', NULL),
887 (708, 12, 105, 'sid', 'aid', NULL),
888 (709, 12, 105, 'password', 'pw', NULL),
889 (710, 12, 105, 'reload', 'reload', NULL),
890 (711, 12, 105, 'reward', 'verguetung', NULL),
891 (712, 12, 105, 'remain', 'uebrig', NULL),
892 (713, 12, 105, 'max_stay', 'ma', NULL),
893 (714, 12, 106, 'id', 'id', NULL),
894 (715, 12, 106, 'sid', 'aid', NULL),
895 (716, 12, 106, 'password', 'pw', NULL),
896 (717, 12, 106, 'reload', 'reload', NULL),
897 (718, 12, 106, 'reward', 'verguetung', NULL),
898 (719, 12, 106, 'remain', 'uebrig', NULL),
899 (720, 12, 106, 'max_stay', 'ma', NULL),
900 (721, 12, 107, 'id', 'id', NULL),
901 (722, 12, 107, 'sid', 'aid', NULL),
902 (723, 12, 107, 'password', 'pw', NULL),
903 (724, 12, 107, 'reload', 'reload', NULL),
904 (725, 12, 107, 'reward', 'verguetung', NULL),
905 (726, 12, 107, 'remain', 'uebrig', NULL),
906 (727, 12, 107, 'max_stay', 'ma', NULL),
907 (728, 12, 108, 'id', 'id', NULL),
908 (729, 12, 108, 'sid', 'aid', NULL),
909 (730, 12, 108, 'password', 'pw', NULL),
910 (731, 12, 108, 'reload', 'reload', NULL),
911 (732, 12, 108, 'reward', 'verguetung', NULL),
912 (733, 12, 108, 'remain', 'uebrig', NULL),
913 (734, 12, 108, 'max_stay', 'ma', NULL)");
914
915                 // Request parameters per type handler - Make-Euros
916                 addExtensionSql("INSERT INTO `{?_MYSQL_PREFIX?}_network_request_params` (`network_param_id`, `network_id`, `network_type_id`, `request_param_key`, `request_param_value`, `request_param_default`) VALUES
917 (415, 13, 63, 'id', 'id', NULL),
918 (416, 13, 63, 'sid', 'sid', NULL),
919 (417, 13, 63, 'password', 'pw', NULL),
920 (418, 13, 63, 'reward', 'verguetung', NULL),
921 (419, 13, 63, 'reload', 'reload', NULL),
922 (420, 13, 63, 'remain', 'uebrig', NULL),
923 (421, 13, 63, 'type', 'typ', 'klick'),
924 (422, 13, 63, 'size', 'size', NULL),
925 (423, 13, 64, 'id', 'id', NULL),
926 (424, 13, 64, 'sid', 'sid', NULL),
927 (425, 13, 64, 'password', 'pw', NULL),
928 (426, 13, 64, 'reward', 'verguetung', NULL),
929 (427, 13, 64, 'reload', 'reload', NULL),
930 (428, 13, 64, 'remain', 'uebrig', NULL),
931 (429, 13, 64, 'type', 'typ', 'view'),
932 (430, 13, 64, 'size', 'size', NULL),
933 (431, 13, 65, 'id', 'id', NULL),
934 (432, 13, 65, 'sid', 'sid', NULL),
935 (433, 13, 65, 'password', 'pw', NULL),
936 (434, 13, 65, 'reward', 'verguetung', NULL),
937 (435, 13, 65, 'reload', 'reload', NULL),
938 (436, 13, 65, 'remain', 'uebrig', NULL),
939 (437, 13, 65, 'type', 'typ', 'klick'),
940 (438, 13, 66, 'id', 'id', NULL),
941 (439, 13, 66, 'sid', 'sid', NULL),
942 (440, 13, 66, 'password', 'pw', NULL),
943 (441, 13, 66, 'reward', 'verguetung', NULL),
944 (442, 13, 66, 'reload', 'reload', NULL),
945 (443, 13, 66, 'remain', 'uebrig', NULL),
946 (444, 13, 66, 'type', 'typ', 'view'),
947 (445, 13, 67, 'id', 'id', NULL),
948 (446, 13, 67, 'sid', 'sid', NULL),
949 (447, 13, 67, 'password', 'pw', NULL),
950 (448, 13, 67, 'reward', 'verguetung', NULL),
951 (449, 13, 67, 'reload', 'reload', NULL),
952 (450, 13, 67, 'remain', 'uebrig', NULL),
953 (451, 13, 67, 'typ', 'typ', 'klick'),
954 (452, 13, 67, 'size', 'size', NULL),
955 (453, 13, 69, 'id', 'id', NULL),
956 (454, 13, 69, 'sid', 'sid', NULL),
957 (455, 13, 69, 'password', 'pw', NULL),
958 (456, 13, 69, 'reward', 'verguetung', NULL),
959 (457, 13, 69, 'reload', 'reload', NULL),
960 (458, 13, 69, 'remain', 'uebrig', NULL),
961 (459, 13, 69, 'type', 'typ', 'view'),
962 (460, 13, 69, 'size', 'size', NULL),
963 (461, 13, 68, 'id', 'id', NULL),
964 (462, 13, 68, 'sid', 'sid', NULL),
965 (463, 13, 68, 'password', 'pw', NULL),
966 (464, 13, 68, 'reward', 'verguetung', NULL),
967 (465, 13, 68, 'reload', 'reload', NULL),
968 (466, 13, 68, 'remain', 'uebrig', NULL),
969 (467, 13, 68, 'size', 'size', NULL),
970 (468, 13, 68, 'min_stay', 'ma', NULL),
971 (469, 13, 70, 'id', 'id', NULL),
972 (470, 13, 70, 'sid', 'sid', NULL),
973 (471, 13, 70, 'password', 'pw', NULL),
974 (472, 13, 70, 'reward', 'verguetung', NULL),
975 (473, 13, 70, 'reload', 'reload', NULL),
976 (474, 13, 70, 'remain', 'uebrig', NULL),
977 (475, 13, 70, 'min_stay', 'ma', NULL),
978 (476, 13, 70, 'type', 'typ', 'text'),
979 (477, 13, 71, 'id', 'id', NULL),
980 (478, 13, 71, 'sid', 'sid', NULL),
981 (479, 13, 71, 'password', 'pw', NULL),
982 (480, 13, 71, 'reward', 'verguetung', NULL),
983 (481, 13, 71, 'reload', 'reload', NULL),
984 (482, 13, 71, 'remain', 'uebrig', NULL),
985 (483, 13, 71, 'min_stay', 'ma', NULL),
986 (484, 13, 71, 'type', 'typ', 'html'),
987 (485, 13, 72, 'id', 'id', NULL),
988 (486, 13, 72, 'sid', 'sid', NULL),
989 (487, 13, 72, 'password', 'pw', NULL),
990 (488, 13, 72, 'reward', 'verguetung', NULL),
991 (489, 13, 72, 'reload', 'reload', NULL),
992 (490, 13, 72, 'remain', 'uebrig', NULL),
993 (491, 13, 72, 'type', 'typ', 'klick'),
994 (492, 13, 73, 'id', 'id', NULL),
995 (493, 13, 73, 'sid', 'sid', NULL),
996 (494, 13, 73, 'password', 'pw', NULL),
997 (495, 13, 73, 'reward', 'verguetung', NULL),
998 (496, 13, 73, 'reload', 'reload', NULL),
999 (497, 13, 73, 'remain', 'uebrig', NULL),
1000 (498, 13, 73, 'type', 'typ', 'view'),
1001 (499, 13, 74, 'id', 'id', NULL),
1002 (500, 13, 74, 'sid', 'sid', NULL),
1003 (501, 13, 74, 'password', 'pw', NULL),
1004 (502, 13, 74, 'reward', 'verguetung', NULL),
1005 (503, 13, 74, 'reload', 'reload', NULL),
1006 (504, 13, 74, 'remain', 'uebrig', NULL),
1007 (505, 13, 74, 'min_stay', 'ma', NULL),
1008 (506, 13, 75, 'id', 'id', NULL),
1009 (507, 13, 75, 'sid', 'sid', NULL),
1010 (508, 13, 75, 'password', 'pw', NULL),
1011 (509, 13, 75, 'reward', 'verguetung', NULL),
1012 (510, 13, 75, 'reload', 'reload', NULL),
1013 (511, 13, 75, 'remain', 'uebrig', NULL),
1014 (512, 13, 75, 'min_stay', 'ma', NULL),
1015 (513, 13, 76, 'id', 'id', NULL),
1016 (514, 13, 76, 'sid', 'sid', NULL),
1017 (515, 13, 76, 'password', 'pw', NULL),
1018 (516, 13, 76, 'reward', 'verguetung', NULL),
1019 (517, 13, 76, 'remain', 'uebrig', NULL),
1020 (518, 13, 77, 'id', 'id', NULL),
1021 (519, 13, 77, 'sid', 'sid', NULL),
1022 (520, 13, 77, 'password', 'pw', NULL),
1023 (521, 13, 77, 'reward', 'verguetung', NULL),
1024 (522, 13, 77, 'remain', 'uebrig', NULL)");
1025
1026                 // Request parameters per type handler - Mega-Ad
1027                 addExtensionSql("INSERT INTO `{?_MYSQL_PREFIX?}_network_request_params` (`network_param_id`, `network_id`, `network_type_id`, `request_param_key`, `request_param_value`, `request_param_default`) VALUES
1028 (735, 14, 109, 'type', 'typ', 'forcedbanner'),
1029 (736, 14, 109, 'id', 'id', NULL),
1030 (737, 14, 109, 'password', 'pw', NULL),
1031 (738, 14, 109, 'remain', 'uebrig', NULL),
1032 (739, 14, 109, 'reload', 'reload', NULL),
1033 (740, 14, 109, 'reward', 'verguetung', NULL),
1034 (741, 14, 110, 'type', 'typ', 'forcedtextlink'),
1035 (742, 14, 110, 'id', 'id', NULL),
1036 (743, 14, 110, 'password', 'pw', NULL),
1037 (744, 14, 110, 'remain', 'uebrig', NULL),
1038 (745, 14, 110, 'reload', 'reload', NULL),
1039 (746, 14, 110, 'reward', 'verguetung', NULL),
1040 (747, 14, 111, 'type', 'typ', 'bannerview'),
1041 (748, 14, 111, 'id', 'id', NULL),
1042 (749, 14, 111, 'password', 'pw', NULL),
1043 (750, 14, 111, 'remain', 'uebrig', NULL),
1044 (751, 14, 111, 'reload', 'reload', NULL),
1045 (752, 14, 111, 'reward', 'verguetung', NULL),
1046 (753, 14, 112, 'type', 'typ', 'bannerklick'),
1047 (754, 14, 112, 'id', 'id', NULL),
1048 (755, 14, 112, 'password', 'pw', NULL),
1049 (756, 14, 112, 'remain', 'uebrig', NULL),
1050 (757, 14, 112, 'reload', 'reload', NULL),
1051 (758, 14, 112, 'reward', 'verguetung', NULL),
1052 (759, 14, 113, 'type', 'typ', 'skybannerview'),
1053 (760, 14, 113, 'id', 'id', NULL),
1054 (761, 14, 113, 'password', 'pw', NULL),
1055 (762, 14, 113, 'remain', 'uebrig', NULL),
1056 (763, 14, 113, 'reload', 'reload', NULL),
1057 (764, 14, 113, 'reward', 'verguetung', NULL),
1058 (765, 14, 114, 'type', 'typ', 'buttonview'),
1059 (766, 14, 114, 'id', 'id', NULL),
1060 (767, 14, 114, 'password', 'pw', NULL),
1061 (768, 14, 114, 'remain', 'uebrig', NULL),
1062 (769, 14, 114, 'reload', 'reload', NULL),
1063 (770, 14, 114, 'reward', 'verguetung', NULL),
1064 (771, 14, 115, 'type', 'typ', 'textview'),
1065 (772, 14, 115, 'id', 'id', NULL),
1066 (773, 14, 115, 'password', 'pw', NULL),
1067 (774, 14, 115, 'remain', 'uebrig', NULL),
1068 (775, 14, 115, 'reload', 'reload', NULL),
1069 (776, 14, 115, 'reward', 'verguetung', NULL),
1070 (777, 14, 116, 'type', 'typ', 'popup'),
1071 (778, 14, 116, 'id', 'id', NULL),
1072 (779, 14, 116, 'password', 'pw', NULL),
1073 (780, 14, 116, 'reload', 'reload', NULL),
1074 (781, 14, 116, 'remain', 'uebrig', NULL),
1075 (782, 14, 116, 'reward', 'verguetung', NULL),
1076 (783, 14, 117, 'type', 'typ', 'paidmail'),
1077 (784, 14, 117, 'id', 'id', NULL),
1078 (785, 14, 117, 'password', 'pw', NULL),
1079 (786, 14, 117, 'reload', 'reload', NULL),
1080 (787, 14, 117, 'remain', 'uebrig', NULL),
1081 (788, 14, 117, 'reward', 'verguetung', NULL)");
1082
1083                 // Request parameters per type handler - Power-Promo
1084                 addExtensionSql("INSERT INTO `{?_MYSQL_PREFIX?}_network_request_params` (`network_param_id`, `network_id`, `network_type_id`, `request_param_key`, `request_param_value`, `request_param_default`) VALUES
1085 (523, 15, 78, 'id', 'id', NULL),
1086 (524, 15, 78, 'sid', 'sid', NULL),
1087 (525, 15, 78, 'password', 'pw', NULL),
1088 (526, 15, 78, 'reward', 'verguetung', NULL),
1089 (527, 15, 78, 'reload', 'reload', NULL),
1090 (528, 15, 78, 'remain', 'uebrig', NULL),
1091 (529, 15, 78, 'type', 'typ', 'klick'),
1092 (530, 15, 78, 'size', 'size', NULL),
1093 (531, 15, 79, 'id', 'id', NULL),
1094 (532, 15, 79, 'sid', 'sid', NULL),
1095 (533, 15, 79, 'password', 'pw', NULL),
1096 (534, 15, 79, 'reward', 'verguetung', NULL),
1097 (535, 15, 79, 'reload', 'reload', NULL),
1098 (536, 15, 79, 'remain', 'uebrig', NULL),
1099 (537, 15, 79, 'type', 'typ', 'view'),
1100 (538, 15, 79, 'size', 'size', NULL),
1101 (539, 15, 80, 'id', 'id', NULL),
1102 (540, 15, 80, 'sid', 'sid', NULL),
1103 (541, 15, 80, 'password', 'pw', NULL),
1104 (542, 15, 80, 'reward', 'verguetung', NULL),
1105 (543, 15, 80, 'reload', 'reload', NULL),
1106 (544, 15, 80, 'remain', 'uebrig', NULL),
1107 (545, 15, 80, 'type', 'typ', 'klick'),
1108 (546, 15, 81, 'id', 'id', NULL),
1109 (547, 15, 81, 'sid', 'sid', NULL),
1110 (548, 15, 81, 'password', 'pw', NULL),
1111 (549, 15, 81, 'reward', 'verguetung', NULL),
1112 (550, 15, 81, 'reload', 'reload', NULL),
1113 (551, 15, 81, 'remain', 'uebrig', NULL),
1114 (552, 15, 81, 'type', 'typ', 'view'),
1115 (553, 15, 82, 'id', 'id', NULL),
1116 (554, 15, 82, 'sid', 'sid', NULL),
1117 (555, 15, 82, 'password', 'pw', NULL),
1118 (556, 15, 82, 'reward', 'verguetung', NULL),
1119 (557, 15, 82, 'reload', 'reload', NULL),
1120 (558, 15, 82, 'remain', 'uebrig', NULL),
1121 (559, 15, 82, 'type', 'typ', 'klick'),
1122 (560, 15, 82, 'size', 'size', NULL),
1123 (561, 15, 83, 'id', 'id', NULL),
1124 (562, 15, 83, 'sid', 'sid', NULL),
1125 (563, 15, 83, 'password', 'pw', NULL),
1126 (564, 15, 83, 'reward', 'verguetung', NULL),
1127 (565, 15, 83, 'reload', 'reload', NULL),
1128 (566, 15, 83, 'remain', 'uebrig', NULL),
1129 (567, 15, 83, 'type', 'typ', 'view'),
1130 (568, 15, 83, 'size', 'size', NULL),
1131 (569, 15, 84, 'id', 'id', NULL),
1132 (570, 15, 84, 'sid', 'sid', NULL),
1133 (571, 15, 84, 'password', 'pw', NULL),
1134 (572, 15, 84, 'reward', 'verguetung', NULL),
1135 (573, 15, 84, 'reload', 'reload', NULL),
1136 (574, 15, 84, 'remain', 'uebrig', NULL),
1137 (575, 15, 84, 'size', 'size', NULL),
1138 (576, 15, 84, 'min_stay', 'ma', NULL),
1139 (577, 15, 85, 'id', 'id', NULL),
1140 (578, 15, 85, 'sid', 'sid', NULL),
1141 (579, 15, 85, 'password', 'pw', NULL),
1142 (580, 15, 85, 'reward', 'verguetung', NULL),
1143 (581, 15, 85, 'reload', 'reload', NULL),
1144 (582, 15, 85, 'remain', 'uebrig', NULL),
1145 (583, 15, 85, 'min_stay', 'ma', NULL),
1146 (584, 15, 85, 'type', 'typ', 'text'),
1147 (585, 15, 86, 'id', 'id', NULL),
1148 (586, 15, 86, 'sid', 'sid', NULL),
1149 (587, 15, 86, 'password', 'pw', NULL),
1150 (588, 15, 86, 'reward', 'verguetung', NULL),
1151 (589, 15, 86, 'reload', 'reload', NULL),
1152 (590, 15, 86, 'remain', 'uebrig', NULL),
1153 (591, 15, 86, 'min_stay', 'ma', NULL),
1154 (592, 15, 86, 'type', 'typ', 'html'),
1155 (593, 15, 87, 'id', 'id', NULL),
1156 (594, 15, 87, 'sid', 'sid', NULL),
1157 (595, 15, 87, 'password', 'pw', NULL),
1158 (596, 15, 87, 'reward', 'verguetung', NULL),
1159 (597, 15, 87, 'reload', 'reload', NULL),
1160 (598, 15, 87, 'remain', 'uebrig', NULL),
1161 (599, 15, 87, 'type', 'typ', 'klick'),
1162 (600, 15, 88, 'id', 'id', NULL),
1163 (601, 15, 88, 'sid', 'sid', NULL),
1164 (602, 15, 88, 'password', 'pw', NULL),
1165 (603, 15, 88, 'reward', 'verguetung', NULL),
1166 (604, 15, 88, 'reload', 'reload', NULL),
1167 (605, 15, 88, 'remain', 'uebrig', NULL),
1168 (606, 15, 88, 'type', 'typ', 'view'),
1169 (607, 15, 89, 'id', 'id', NULL),
1170 (608, 15, 89, 'sid', 'sid', NULL),
1171 (609, 15, 89, 'password', 'pw', NULL),
1172 (610, 15, 89, 'reward', 'verguetung', NULL),
1173 (611, 15, 89, 'reload', 'reload', NULL),
1174 (612, 15, 89, 'remain', 'uebrig', NULL),
1175 (613, 15, 89, 'min_stay', 'ma', NULL),
1176 (614, 15, 90, 'id', 'id', NULL),
1177 (615, 15, 90, 'sid', 'sid', NULL),
1178 (616, 15, 90, 'password', 'pw', NULL),
1179 (617, 15, 90, 'reward', 'verguetung', NULL),
1180 (618, 15, 90, 'reload', 'reload', NULL),
1181 (619, 15, 90, 'remain', 'uebrig', NULL),
1182 (620, 15, 90, 'min_stay', 'ma', NULL),
1183 (621, 15, 91, 'id', 'id', NULL),
1184 (622, 15, 91, 'sid', 'sid', NULL),
1185 (623, 15, 91, 'password', 'pw', NULL),
1186 (624, 15, 91, 'reward', 'verguetung', NULL),
1187 (625, 15, 91, 'remain', 'uebrig', NULL),
1188 (626, 15, 92, 'id', 'id', NULL),
1189 (627, 15, 92, 'sid', 'sid', NULL),
1190 (628, 15, 92, 'password', 'pw', NULL),
1191 (629, 15, 92, 'reward', 'verguetung', NULL),
1192 (630, 15, 92, 'remain', 'uebrig', NULL)");
1193
1194                 // Request parameters per type handler - SeCash
1195                 addExtensionSql("INSERT INTO `{?_MYSQL_PREFIX?}_network_request_params` (`network_param_id`, `network_id`, `network_type_id`, `request_param_key`, `request_param_value`, `request_param_default`) VALUES
1196 (631, 16, 93, 'type', 'typ', 'forcedbanner'),
1197 (632, 16, 93, 'id', 'id', NULL),
1198 (633, 16, 93, 'password', 'pw', NULL),
1199 (634, 16, 93, 'reward', 'verguetung', NULL),
1200 (635, 16, 93, 'reload', 'reload', NULL),
1201 (636, 16, 93, 'remain', 'uebrig', NULL),
1202 (637, 16, 94, 'type', 'typ', 'forcedtextlink'),
1203 (638, 16, 94, 'id', 'id', NULL),
1204 (639, 16, 94, 'password', 'pw', NULL),
1205 (640, 16, 94, 'reward', 'verguetung', NULL),
1206 (641, 16, 94, 'reload', 'reload', NULL),
1207 (642, 16, 94, 'remain', 'uebrig', NULL),
1208 (643, 16, 95, 'type', 'typ', 'bannerview'),
1209 (644, 16, 95, 'id', 'id', NULL),
1210 (645, 16, 95, 'password', 'pw', NULL),
1211 (646, 16, 95, 'reward', 'verguetung', NULL),
1212 (647, 16, 95, 'reload', 'reload', NULL),
1213 (648, 16, 95, 'remain', 'uebrig', NULL),
1214 (649, 16, 96, 'type', 'typ', 'bannerklick'),
1215 (650, 16, 96, 'id', 'id', NULL),
1216 (651, 16, 96, 'password', 'pw', NULL),
1217 (652, 16, 96, 'reward', 'verguetung', NULL),
1218 (653, 16, 96, 'reload', 'reload', NULL),
1219 (654, 16, 96, 'remain', 'uebrig', NULL),
1220 (655, 16, 97, 'type', 'typ', 'skybannerview'),
1221 (656, 16, 97, 'id', 'id', NULL),
1222 (657, 16, 97, 'password', 'pw', NULL),
1223 (658, 16, 97, 'reward', 'verguetung', NULL),
1224 (659, 16, 97, 'reload', 'reload', NULL),
1225 (660, 16, 97, 'remain', 'uebrig', NULL),
1226 (661, 16, 98, 'type', 'typ', 'buttonview'),
1227 (662, 16, 98, 'id', 'id', NULL),
1228 (663, 16, 98, 'password', 'pw', NULL),
1229 (664, 16, 98, 'reward', 'verguetung', NULL),
1230 (665, 16, 98, 'reload', 'reload', NULL),
1231 (666, 16, 98, 'remain', 'uebrig', NULL),
1232 (667, 16, 99, 'type', 'typ', 'textview'),
1233 (668, 16, 99, 'id', 'id', NULL),
1234 (669, 16, 99, 'password', 'pw', NULL),
1235 (670, 16, 99, 'reward', 'verguetung', NULL),
1236 (671, 16, 99, 'reload', 'reload', NULL),
1237 (672, 16, 99, 'remain', 'uebrig', NULL),
1238 (673, 16, 100, 'type', 'typ', 'popup'),
1239 (674, 16, 100, 'id', 'id', NULL),
1240 (675, 16, 100, 'password', 'pw', NULL),
1241 (676, 16, 100, 'reward', 'verguetung', NULL),
1242 (677, 16, 100, 'reload', 'reload', NULL),
1243 (678, 16, 100, 'remain', 'uebrig', NULL),
1244 (679, 16, 100, 'min_stay', 'ma', NULL),
1245 (680, 16, 101, 'type', 'typ', 'paidmail'),
1246 (681, 16, 101, 'id', 'id', NULL),
1247 (682, 16, 101, 'password', 'pw', NULL),
1248 (683, 16, 101, 'reward', 'verguetung', NULL),
1249 (684, 16, 101, 'reload', 'reload', NULL),
1250 (685, 16, 101, 'remain', 'uebrig', NULL),
1251 (686, 16, 101, 'min_stay', 'ma', NULL)");
1252
1253                 // Request parameters per type handler - Der Werbepartner.cc
1254
1255                 // Request parameters per type handler - Yoo!Media
1256
1257                 // Fix empty defaults to NULL
1258                 addExtensionSql("UPDATE `{?_MYSQL_PREFIX?}_network_types` SET `network_type_banner_url`=NULL WHERE `network_type_banner_url`=''");
1259                 addExtensionSql("UPDATE `{?_MYSQL_PREFIX?}_network_request_params` SET `request_param_default`=NULL WHERE `request_param_default`=''");
1260
1261                 // Admin menu entries
1262                 addAdminMenuSql('network',NULL,'Werbenetzwerke','Verwalten Sie hier Werbenetzwerke (API-Anbindung), versenden Sie deren Mails, oder &uuml;bernehmen Sie deren Textlinks und vieles mehr. <strong>VORSICHT:</strong> Das Einrichten von weiteren Werbenetzwerken ist nicht leicht, daf&uuml;r aber sehr flexibel! Sollte ein Netzwerk fehlen, so melden Sie dies bitte <a href="http://forum.mxchange.org/topic-462.html" target="_blank" title="Direktlink zum Forum">im Forum</a>!',4);
1263                 addAdminMenuSql('network','config_networks','API-Daten','Stellen Sie Ihre Affiliate- Webseiten-Id und API-Passwort ein. Diese erhalten Sie zu &uuml;ber 99% aus dem jeweiligen Zugangsbereich des Anbieters. Sollten Sie bei einem Netzwerk noch nicht angemeldet sein, verwenden Sie bitte meinen Referal-Link.',1);
1264                 addAdminMenuSql('network','config_network_types','Werbearten','Stellen Sie hier Reload-Zeiten, Mindestauffenthalt und so weiter pro Werbeart und Werbenetzwerk ein. Es werden sonst Standart-Werte (Mimimumwerte: 0, Maximumwerte: sehr gross, Erotik: aus) angenommen, die Sie meistens nicht wollen.',2);
1265                 addAdminMenuSql('network','query_networks','APIs abfragen','Fragt alle eingestellten APIs ab. Die Ergebnisse werden dann f&uuml;r einen einstellbaren Zeitraum gecacht und nicht erneut angefordert.',3);
1266                 addAdminMenuSql('network','config_network','Einstellungen','Stellen Sie generelle Einstellungen ein, die f&uuml;r alle Werbenetzwerke gelten, wie z.B. Cache-Erneuerungsinterval. Generell sind aber die Einstellungen in Ordnung, da z.B. sonst Ihre freien Abfragen beim Werbenetzwerk sich zu schnell abbauen.',4);
1267                 addAdminMenuSql('network','list_network_reloads','Reload-Sperren','Listen oder l&ouml;schen Sie hier Reload-Sperren. <strong>Vorsicht:</strong> Die hier gespeicherten Reload-Sperren sind vom jeweiligen Werbenetzwerk &uuml;bernommen. Eventuell verdienen Sie nichts, wenn Sie z.B. eine Mail innerhalb der Reload-Sperre erneut versenden.',5);
1268                 addAdminMenuSql('network','list_networks','Auflisten/Verwalten','<strong>Experten-Einstellungen!</strong> Hier &auml;ndern Sie die Einstellungen an den Grunddaten (Stammdaten) des jeweiligen Werbenetzwerks ab. Sie sollten hier generell nichts einstellen und <a href="http://forum.mxchange.org/forum-43.html" target="_blank" title="Direktlink zum Forum">im Forum</a> um Hilfe fragen, wenn Sie selber ein Werbenetzwerk einrichten m&ouml;chten.',6);
1269                 addAdminMenuSql('network','list_network_types','Werbearten','<strong>Experten-Einstellungen!</strong> Hier &auml;ndern Sie die Einstellungen zu den Werbearten pro Werbenetzwerken. Sie sollten hier generell nichts einstellen und <a href="http://forum.mxchange.org/forum-43.html" target="_blank" title="Direktlink zum Forum">im Forum</a> um Hilfe fragen, wenn Sie selber ein Werbenetzwerk einrichten m&ouml;chten.',7);
1270                 addAdminMenuSql('network','list_network_params','Abfrageparameter','<strong>Experten-Einstellungen!</strong> Hier stellen Sie die Abfrageparameter (wie sie genannt werden m&uuml;ssen, um das API-Script korrekt aufrufen zu k&ouml;nnen) ein, pro Werbenetzwerk. Sie sollten hier generell nichts einstellen und <a href="http://forum.mxchange.org/forum-43.html" target="_blank" title="Direktlink zum Forum">im Forum</a> um Hilfe fragen, wenn Sie selber ein Werbenetzwerk einrichten m&ouml;chten.',8);
1271                 addAdminMenuSql('network','list_network_code_types','R&uuml;ckgabewerte','<strong>Experten-Einstellungen!</strong> Hier stellen Sie die R&uuml;ckgabewerte ein, die im Falle eines Fehlers pro API-Script kommen k&ouml;nnen. Sie sollten hier generell nichts einstellen und <a href="http://forum.mxchange.org/forum-43.html" target="_blank" title="Direktlink zum Forum">im Forum</a> um Hilfe fragen, wenn Sie selber ein Werbenetzwerk einrichten m&ouml;chten.',9);
1272                 addAdminMenuSql('network','list_network_codes','Fehlercodes','<strong>Experten-Einstellungen!</strong> Hier stellen Sie die Namen von Fehlercodes ein, die Scripte zur&uuml;ckliefern k&ouml;nnen. <strong>Dies sind INTERNE Daten und sollten nur vom Entwicklerteam angepasst werden.</strong> Stellen Sie an diesen Einstellungen bitte nichts um. Sie sollten hier generell nichts einstellen und <a href="http://forum.mxchange.org/forum-43.html" target="_blank" title="Direktlink zum Forum">im Forum</a> um Hilfe fragen, wenn Sie selber ein Werbenetzwerk einrichten m&ouml;chten.',10);
1273
1274                 // Configuration entries
1275                 addExtensionSql('ALTER TABLE `{?_MYSQL_PREFIX?}_config` ADD `network_cache_refresh` BIGINT(20) UNSIGNED NOT NULL DEFAULT ' . (60 * 15) . '');
1276                 break;
1277
1278         case 'remove': // Do stuff when removing extension
1279                 // SQL commands to run
1280                 addExtensionSql('DROP TABLE IF EXISTS `{?_MYSQL_PREFIX?}_network_data`');
1281                 addExtensionSql('DROP TABLE IF EXISTS `{?_MYSQL_PREFIX?}_network_types`');
1282                 addExtensionSql('DROP TABLE IF EXISTS `{?_MYSQL_PREFIX?}_network_request_params`');
1283                 addExtensionSql('DROP TABLE IF EXISTS `{?_MYSQL_PREFIX?}_network_type_codes`');
1284                 addExtensionSql('DROP TABLE IF EXISTS `{?_MYSQL_PREFIX?}_network_codes`');
1285                 addExtensionSql('DROP TABLE IF EXISTS `{?_MYSQL_PREFIX?}_network_translations`');
1286                 addExtensionSql('DROP TABLE IF EXISTS `{?_MYSQL_PREFIX?}_network_array_translation`');
1287                 addExtensionSql('DROP TABLE IF EXISTS `{?_MYSQL_PREFIX?}_network_config`');
1288                 addExtensionSql('DROP TABLE IF EXISTS `{?_MYSQL_PREFIX?}_network_types_config`');
1289                 addExtensionSql('DROP TABLE IF EXISTS `{?_MYSQL_PREFIX?}_network_cache`');
1290                 addExtensionSql('DROP TABLE IF EXISTS `{?_MYSQL_PREFIX?}_network_reloads`');
1291
1292                 // Admin menu
1293                 addExtensionSql("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_admin_menu` WHERE `action`='network'");
1294                 break;
1295
1296         case 'activate': // Do stuff when admin activates this extension
1297                 // SQL commands to run
1298                 break;
1299
1300         case 'deactivate': // Do stuff when admin deactivates this extension
1301                 // SQL commands to run
1302                 break;
1303
1304         case 'update': // Update an extension
1305                 switch (getCurrentExtensionVersion()) {
1306                         case '0.0.1': // SQL queries for v0.0.1
1307                                 addExtensionSql('');
1308
1309                                 // Update notes (these will be set as task text!)
1310                                 setExtensionUpdateNotes('');
1311                                 break;
1312                 } // END - switch
1313                 break;
1314
1315         case 'modify': // When the extension got modified
1316                 break;
1317
1318         case 'test': // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
1319                 break;
1320
1321         case 'init': // Do stuff when extension is initialized
1322                 break;
1323
1324         default: // Unknown extension mode
1325                 logDebugMessage(__FILE__, __LINE__, sprintf("Unknown extension mode %s detected.", getExtensionMode()));
1326                 break;
1327 } // END - switch
1328
1329 // [EOF]
1330 ?>