]> git.mxchange.org Git - mailer.git/blob - inc/libs/network_functions.php
Configuration of advertisement networks prepared, CSS cleaned up, HTML rewritten:
[mailer.git] / inc / libs / network_functions.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 11/04/2009 *
4  * ===================                          Last change: 11/04/2009 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : network_functions.php                            *
8  * -------------------------------------------------------------------- *
9  * Short description : Functions for ext-network                        *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Funktionen fuer ext-network                      *
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')) {
42         die();
43 } // END - if
44
45 // Private setter for current network id
46 function setCurrentNetworkId ($id) {
47         $GLOBALS['current_network_id'] = bigintval($id);
48 }
49
50 // Private getter for current network id
51 function getCurrentNetworkId () {
52         return $GLOBALS['current_network_id'];
53 }
54
55 // Handle a (maybe) sent form here
56 function doNetworkHandleForm () {
57         // Was the form sent?
58         if ((isFormSent()) || (isFormSent('edit')) || (isFormSent('delete')) || (isFormSent('change')) || (isFormSent('remove'))) {
59                 // Do we have a 'do'?
60                 if (isGetRequestParameterSet('do')) {
61                         // Process the request
62                         doAdminNetworkProcessForm();
63                 } else {
64                         // No 'do' found
65                         loadTemplate('admin_settings_unsaved', false, '{--ADMIN_NETWORK_DO_404--}');
66                 }
67         } // END - if
68 }
69
70 // Processes an admin form
71 function doAdminNetworkProcessForm () {
72         // Form really sent?
73         if ((!isFormSent()) && (!isFormSent('edit')) && (!isFormSent('delete')) && (!isFormSent('change')) && (!isFormSent('remove'))) {
74                 // Abort here
75                 loadTemplate('admin_settings_unsaved', false, '{--ADMIN_NETWORK_FORM_NOT_SENT--}');
76                 return;
77         } elseif (!isGetRequestParameterSet('do')) {
78                 // No 'do' found
79                 loadTemplate('admin_settings_unsaved', false, '{--ADMIN_NETWORK_DO_404--}');
80                 return;
81         }
82
83         // Create function name
84         $functionName = sprintf("doAdminNetworkProcess%s", capitalizeUnderscoreString(getRequestParameter('do')));
85
86         // Is the function valid?
87         if (!function_exists($functionName)) {
88                 // Invalid function name
89                 debug_report_bug(__FUNCTION__, __LINE__, 'Invalid do ' . getRequestParameter('do') . ', function ' . $functionName .' does not exist.', false);
90         } // END - if
91
92         // Call-back the method handling our request
93         call_user_func($functionName);
94 }
95
96 // Checks wether the (short) network name is already used (valid)
97 function isNetworkNameValid ($name) {
98         // Query for it
99         $result = SQL_QUERY_ESC("SELECT `network_id` FROM `{?_MYSQL_PREFIX?}_network_data` WHERE `network_short_name`='%s' LIMIT 1",
100                 array($name), __FUNCTION__, __LINE__);
101
102         // Does it exist?
103         $isValid = (SQL_NUMROWS($result) == 1);
104
105         // Free result
106         SQL_FREERESULT($result);
107
108         // Return result
109         return $isValid;
110 }
111
112 // Checks wether the given network type is already used (valid)
113 function isNetworkTypeHandleValid ($type, $networkId) {
114         // Query for it
115         $result = SQL_QUERY_ESC("SELECT `network_type_id` FROM `{?_MYSQL_PREFIX?}_network_types` WHERE `network_id`=%s AND `network_type_handle`='%s' LIMIT 1",
116                 array($networkId, $type), __FUNCTION__, __LINE__);
117
118         // Does it exist?
119         $isValid = (SQL_NUMROWS($result) == 1);
120
121         // Free result
122         SQL_FREERESULT($result);
123
124         // Return result
125         return $isValid;
126 }
127
128 // Checks wether the given network request parameter is already used (valid)
129 function isNetworkRequestParameterValid ($key, $type, $networkId) {
130         // Query for it
131         $result = SQL_QUERY_ESC("SELECT `network_param_id` FROM `{?_MYSQL_PREFIX?}_network_request_params` WHERE `network_id`=%s AND `network_type_id`=%s AND `request_param_key`='%s' LIMIT 1",
132                 array($networkId, $type, $key), __FUNCTION__, __LINE__);
133
134         // Does it exist?
135         $isValid = (SQL_NUMROWS($result) == 1);
136
137         // Free result
138         SQL_FREERESULT($result);
139
140         // Return result
141         return $isValid;
142 }
143
144 // Checks wether the given network API array translation
145 function isNetworkApiTranslationValid ($key, $type, $networkId) {
146         // Query for it
147         $result = SQL_QUERY_ESC("SELECT `network_api_id` FROM `{?_MYSQL_PREFIX?}_network_api_translation` WHERE `network_id`=%s AND `network_type_id`=%s AND `network_api_index`='%s' LIMIT 1",
148                 array($networkId, $type, $key), __FUNCTION__, __LINE__);
149
150         // Does it exist?
151         $isValid = (SQL_NUMROWS($result) == 1);
152
153         // Free result
154         SQL_FREERESULT($result);
155
156         // Return result
157         return $isValid;
158 }
159
160 // "Getter" for a network's data by provided id number
161 function getNetworkDataById ($id, $column = '') {
162         // Ids lower one are not accepted
163         if ($id < 1) {
164                 // Not good, should be fixed
165                 debug_report_bug(__FUNCTION__, __LINE__, 'Network id ' . $id . ' is smaller than 1.');
166         } // END - if
167
168         // Set current network id
169         setCurrentNetworkId($id);
170
171         // Is it cached?
172         if (!isset($GLOBALS['network_data'][$id])) {
173                 // By default we have no data
174                 $GLOBALS['network_data'][$id] = array();
175
176                 // Query for the network data
177                 $result = SQL_QUERY_ESC("SELECT
178         `network_id`, `network_short_name`, `network_title`, `network_reflink`, `network_data_seperator`, `network_row_seperator`, `network_request_type`, `network_charset`
179 FROM
180         `{?_MYSQL_PREFIX?}_network_data`
181 WHERE
182         `network_id`=%s
183 LIMIT 1",
184                         array(bigintval($id)), __FUNCTION__, __LINE__);
185
186                 // Do we have an entry?
187                 if (SQL_NUMROWS($result) == 1) {
188                         // Then get it
189                         $GLOBALS['network_data'][$id] = SQL_FETCHARRAY($result);
190                 } // END - if
191
192                 // Free result
193                 SQL_FREERESULT($result);
194         } // END - if
195
196         // Return result
197         if (empty($column)) {
198                 // Return array
199                 return $GLOBALS['network_data'][$id];
200         } else {
201                 // Return column
202                 return $GLOBALS['network_data'][$id][$column];
203         }
204 }
205
206 // "Getter" for a network's data by provided type id number
207 function getNetworkDataByTypeId ($id, $column = '') {
208         // Ids lower one are not accepted
209         if ($id < 1) {
210                 // Not good, should be fixed
211                 debug_report_bug(__FUNCTION__, __LINE__, 'Network type id ' . $id . ' is smaller than 1.');
212         } // END - if
213
214         // Set current network id
215         setCurrentNetworkId($id);
216
217         // Is it cached?
218         if (!isset($GLOBALS['network_data'][$id])) {
219                 // By default we have no data
220                 $GLOBALS['network_data'][$id] = array();
221
222                 // Query for the network data
223                 $result = SQL_QUERY_ESC("SELECT
224         d.`network_id`, d.`network_short_name`, d.`network_title`, d.`network_reflink`, d.`network_data_seperator`, d.`network_row_seperator`, d.`network_request_type`, d.`network_charset`,
225         t.`network_type_handle`, t.`network_type_api_url`, t.`network_type_click_url`, t.`network_type_banner_url`
226 FROM
227         `{?_MYSQL_PREFIX?}_network_data` AS d
228 LEFT JOIN
229         `{?_MYSQL_PREFIX?}_network_types` AS t
230 ON
231         d.`network_id`=t.`network_id`
232 WHERE
233         t.`network_type_id`=%s
234 LIMIT 1",
235                         array(bigintval($id)), __FUNCTION__, __LINE__);
236
237                 // Do we have an entry?
238                 if (SQL_NUMROWS($result) == 1) {
239                         // Then get it
240                         $GLOBALS['network_data'][$id] = SQL_FETCHARRAY($result);
241                 } // END - if
242
243                 // Free result
244                 SQL_FREERESULT($result);
245         } // END - if
246
247         // Return result
248         if (empty($column)) {
249                 // Return array
250                 return $GLOBALS['network_data'][$id];
251         } else {
252                 // Return column
253                 return $GLOBALS['network_data'][$id][$column];
254         }
255 }
256
257 // "Getter" for a network type data by provided id number
258 function getNetworkTypeDataById ($id) {
259         // Ids lower one are not accepted
260         if ($id < 1) {
261                 // Not good, should be fixed
262                 debug_report_bug(__FUNCTION__, __LINE__, 'Network type id ' . $id . ' is smaller than 1.');
263         } // END - if
264
265         // By default we have no data
266         $GLOBALS['network_type_data'][$id] = array();
267
268         // Query for the network data
269         $result = SQL_QUERY_ESC("SELECT
270         `network_type_id`, `network_id`, `network_type_handle`, `network_type_api_url`, `network_type_click_url`, `network_type_banner_url`
271 FROM
272         `{?_MYSQL_PREFIX?}_network_types`
273 WHERE
274         `network_type_id`=%s
275 LIMIT 1",
276                 array(bigintval($id)), __FUNCTION__, __LINE__);
277
278         // Do we have an entry?
279         if (SQL_NUMROWS($result) == 1) {
280                 // Then get it
281                 $GLOBALS['network_type_data'][$id] = SQL_FETCHARRAY($result);
282         } // END - if
283
284         // Free result
285         SQL_FREERESULT($result);
286
287         // Return result
288         return $GLOBALS['network_type_data'][$id];
289 }
290
291 // "Getter" for a network request parameter data by provided id number
292 function getNetworkRequestParamsDataById ($id) {
293         // Ids lower one are not accepted
294         if ($id < 1) {
295                 // Not good, should be fixed
296                 debug_report_bug(__FUNCTION__, __LINE__, 'Network request parameter id ' . $id . ' is smaller than 1.');
297         } // END - if
298
299         // By default we have no data
300         $networkRequestData = array();
301
302         // Query for the network data
303         $result = SQL_QUERY_ESC("SELECT
304         `network_param_id`, `network_id`, `network_type_id`, `request_param_key`, `request_param_value`, `request_param_default`
305 FROM
306         `{?_MYSQL_PREFIX?}_network_request_params`
307 WHERE
308         `network_param_id`=%s
309 LIMIT 1",
310                 array(bigintval($id)), __FUNCTION__, __LINE__);
311
312         // Do we have an entry?
313         if (SQL_NUMROWS($result) == 1) {
314                 // Then get it
315                 $networkRequestData = SQL_FETCHARRAY($result);
316         } // END - if
317
318         // Free result
319         SQL_FREERESULT($result);
320
321         // Return result
322         return $networkRequestData;
323 }
324
325 // Updates given network (id) with data from array
326 function doNetworkUpdateDataByArray ($id, $networkData) {
327         // Ids lower one are not accepted
328         if ($id < 1) {
329                 // Not good, should be fixed
330                 debug_report_bug(__FUNCTION__, __LINE__, 'Network id ' . $id . ' is smaller than 1.');
331         } // END - if
332
333         // Just call our inner method
334         return adminSaveSettings($networkData, '_network_data', sprintf("`network_id`=%s", bigintval($id)), array(), false, false);
335 }
336
337 // Updates given network type handler (id) with data from array
338 function doNetworkUpdateTypeByArray ($id, $networkTypeData) {
339         // Ids lower one are not accepted
340         if ($id < 1) {
341                 // Not good, should be fixed
342                 debug_report_bug(__FUNCTION__, __LINE__, 'Network type handler id ' . $id . ' is smaller than 1.');
343         } // END - if
344
345         // Just call our inner method
346         return adminSaveSettings($networkTypeData, '_network_types', sprintf("`network_type_id`=%s", bigintval($id)), array(), false, false);
347 }
348
349 // Updates given network request parameters (id) with data from array
350 function doNetworkUpdateParamsByArray ($id, $networkParamData) {
351         // Ids lower one are not accepted
352         if ($id < 1) {
353                 // Not good, should be fixed
354                 debug_report_bug(__FUNCTION__, __LINE__, 'Network request parameter id ' . $id . ' is smaller than 1.');
355         } // END - if
356
357         // Just call our inner method
358         return adminSaveSettings($networkParamData, '_network_request_params', sprintf("`network_param_id`=%s", bigintval($id)), array(), false, false);
359 }
360
361 // Removes given network entry
362 function doAdminRemoveNetworkEntry ($table, $column, $id, $limit = 1) {
363         // Remove the entry
364         SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_network_%s` WHERE `%s`=%s LIMIT %s",
365                 array($table, $column, $id, $limit), __FUNCTION__, __LINE__);
366
367         // Return affected rows
368         return SQL_AFFECTEDROWS();
369 }
370
371 // Generates a list of networks for given script and returns it
372 function generateAdminNetworkList () {
373         // Init output
374         $content = '';
375
376         // Query for all networks
377         $result = SQL_QUERY('SELECT
378         `network_id`, `network_short_name`, `network_title`
379 FROM
380         `{?_MYSQL_PREFIX?}_network_data`
381 ORDER BY
382         `network_short_name` ASC', __FUNCTION__, __LINE__);
383
384         // Do we have entries?
385         if (!SQL_HASZERONUMS($result)) {
386                 // List all entries
387                 $rows = array();
388                 while ($row = SQL_FETCHARRAY($result)) {
389                         // Is this valid, then add it
390                         if ((is_array($row)) && (isset($row['network_id']))) {
391                                 // Add entry
392                                 $rows[$row['network_id']] = $row;
393                         } // END - if
394                 } // END - while
395
396                 // Generate the selection box
397                 $content = generateSelectionBoxFromArray($rows, 'network', 'network_id');
398         } else {
399                 // Nothing selected
400                 $content = loadTemplate('admin_settings_unsaved', false, '{--ADMIN_ENTRIES_404--}');
401         }
402
403         // Free the result
404         SQL_FREERESULT($result);
405
406         // Return the list
407         return $content;
408 }
409
410 // Generator (somewhat getter) for a list of network types for given network id
411 function generateAdminNetworkTypeList ($networkId) {
412         // Init content
413         $content = '';
414
415         // Query all types of this network
416         $result = SQL_QUERY_ESC("SELECT
417         `network_type_id`, `network_type_handle`
418 FROM
419         `{?_MYSQL_PREFIX?}_network_types`
420 WHERE
421         `network_id`=%s
422 ORDER BY
423         `network_type_handle` ASC",
424                 array(
425                         bigintval($networkId)
426                 ), __FUNCTION__, __LINE__);
427
428         // Do we have entries?
429         if (!SQL_HASZERONUMS($result)) {
430                 // List all entries
431                 $rows = array();
432                 while ($row = SQL_FETCHARRAY($result)) {
433                         // Is this valid, then add it
434                         if ((is_array($row)) && (isset($row['network_type_id']))) {
435                                 // Add entry
436                                 $rows[$row['network_type_id']] = $row;
437                         } // END - if
438                 } // END - while
439
440                 // Generate the selection box
441                 $content = generateSelectionBoxFromArray($rows, 'network_type', 'network_type_id');
442         } else {
443                 // Nothing selected
444                 $content = loadTemplate('admin_settings_unsaved', false, '{--ADMIN_ENTRIES_404--}');
445         }
446
447         // Free the result
448         SQL_FREERESULT($result);
449
450         // Return content
451         return $content;
452 }
453
454 // Generator (somewhat getter) for a list of network types for all types
455 function generateAdminDistinctNetworkTypeList () {
456         // Init content
457         $content = '';
458
459         // Query all types of this network
460         $result = SQL_QUERY('SELECT
461         t.`network_type_id`, t.`network_type_handle`, d.`network_title`
462 FROM
463         `{?_MYSQL_PREFIX?}_network_types` AS t
464 LEFT JOIN
465         `{?_MYSQL_PREFIX?}_network_data` AS d
466 ON
467         t.`network_id`=d.`network_id`
468 ORDER BY
469         d.`network_short_name` ASC,
470         t.`network_type_handle` ASC', __FUNCTION__, __LINE__);
471
472         // Do we have entries?
473         if (!SQL_HASZERONUMS($result)) {
474                 // List all entries
475                 $rows = array();
476                 while ($row = SQL_FETCHARRAY($result)) {
477                         // Is this valid, then add it
478                         if ((is_array($row)) && (isset($row['network_type_id']))) {
479                                 // Add entry
480                                 $rows[$row['network_type_id']] = $row;
481                         } // END - if
482                 } // END - while
483
484                 // Generate the selection box
485                 $content = generateSelectionBoxFromArray($rows, 'network_type', 'network_type_id', '', '_title');
486         } else {
487                 // Nothing selected
488                 $content = loadTemplate('admin_settings_unsaved', false, '{--ADMIN_ENTRIES_404--}');
489         }
490
491         // Free the result
492         SQL_FREERESULT($result);
493         //* DEBUG: */ die('<pre>'.encodeEntities($content).'</pre>');
494
495         // Return content
496         return $content;
497 }
498
499 // Generator (somewhat getter) for network type options
500 function generateNetworkTypeOptions ($id) {
501         // Is this an array, then we just came back from edit/delete actions
502         if (is_array($id)) $id = '';
503
504         // Is this cached?
505         if (!isset($GLOBALS[__FUNCTION__][$id])) {
506                 // Generate output and cache it
507                 $GLOBALS[__FUNCTION__][$id] = generateOptionList(
508                         'network_types',
509                         'network_type_id',
510                         'network_type_handle',
511                         $id,
512                         '',
513                         sprintf(
514                                 "WHERE `network_id`=%s",
515                                 bigintval(getRequestParameter('network'))
516                         ),
517                         '',
518                         'translateNetworkTypeHandler'
519                 );
520         } // END - if
521
522         // Return content
523         return $GLOBALS[__FUNCTION__][$id];
524 }
525
526 // Generates an options list of all available (hard-coded) handlers
527 function generateNetworkTypesAvailableOptions () {
528         // Is it cached?
529         if (!isset($GLOBALS[__FUNCTION__])) {
530                 // Generate list
531                 $GLOBALS[__FUNCTION__] = generateOptionList(
532                         '/ARRAY/',
533                         array(
534                                 'banner',
535                                 'banner_click',
536                                 'banner_view',
537                                 'button',
538                                 'button_click',
539                                 'button_view',
540                                 'surfbar',
541                                 'surfbar_click',
542                                 'surfbar_view',
543                                 'forcedbanner',
544                                 'forcedtextlink',
545                                 'textlink',
546                                 'textlink_click',
547                                 'textlink_view',
548                                 'skybanner',
549                                 'skybanner_click',
550                                 'skybanner_view',
551                                 'layer',
552                                 'layer_click',
553                                 'layer_view',
554                                 'popup',
555                                 'popdown',
556                                 'textmail',
557                                 'htmlmail',
558                                 'lead',
559                                 'sale',
560                                 'payperactive',
561                                 'pagepeel',
562                                 'traffic'
563                         ),
564                         array(),
565                         '',
566                         '', '',
567                         $GLOBALS['network_types_disabled'],
568                         'translateNetworkTypeHandler'
569                 );
570         } // END - if
571
572         // Return content
573         return $GLOBALS[__FUNCTION__];
574 }
575
576 // Generates an options list (somewhat getter) ofr request keys
577 function generateNetworkRequestKeyOptions () {
578         // Is it cached?
579         if (!isset($GLOBALS[__FUNCTION__])) {
580                 // Generate and cache it
581                 $GLOBALS[__FUNCTION__] = generateOptionList(
582                         '/ARRAY/',
583                         array(
584                                 'id',
585                                 'sid',
586                                 'hash',
587                                 'password',
588                                 'reload',
589                                 'maximum_stay',
590                                 'minimum_stay',
591                                 'currency',
592                                 'type',
593                                 'remain',
594                                 'reward',
595                                 'size',
596                                 'erotic',
597                                 'extra',
598                                 'country'
599                         ),
600                         array(),
601                         '',
602                         '', '',
603                         $GLOBALS['network_params_disabled'],
604                         'translateNetworkRequestParameter'
605                 );
606         } // END - if
607
608         // Return content
609         return $GLOBALS[__FUNCTION__];
610 }
611
612 // Generator (somewhat getter) for (return) array translation
613 function generateNetworkTranslationOptions ($default = '') {
614         // Is it cached?
615         if (!isset($GLOBALS[__FUNCTION__][$default])) {
616                 // Generate and cache it
617                 $GLOBALS[__FUNCTION__][$default] = generateOptionList(
618                         'network_translations',
619                         'network_translation_id',
620                         'network_translation_name',
621                         $default,
622                         '',
623                         '',
624                         $GLOBALS['network_translation_disabled'],
625                         'translateNetworkTranslationName'
626                 );
627         } // END - if
628
629         // Return content
630         return $GLOBALS[__FUNCTION__][$default];
631 }
632
633 // Generates an option list of request types
634 function generateNetworkRequestTypeOptions ($default = '') {
635         // Do we have cache?
636         if (!isset($GLOBALS[__FUNCTION__][$default])) {
637                 // Generate the list
638                 $GLOBALS[__FUNCTION__][$default] = generateOptionList(
639                         '/ARRAY/',
640                         array(
641                                 'GET',
642                                 'POST'
643                         ),
644                         array(
645                                 '{--ADMIN_NETWORK_REQUEST_TYPE_GET--}',
646                                 '{--ADMIN_NETWORK_REQUEST_TYPE_POST--}'
647                         ),
648                         $default
649                 );
650         } // END - if
651
652         // Return cache
653         return $GLOBALS[__FUNCTION__][$default];
654 }
655
656 // Generates an option list of network_active
657 function generateNetworkActiveOptions ($default = '') {
658         // Do we have cache?
659         if (!isset($GLOBALS[__FUNCTION__][$default])) {
660                 // Generate the list
661                 $GLOBALS[__FUNCTION__][$default] = generateOptionList(
662                         '/ARRAY/',
663                         array(
664                                 'Y',
665                                 'N'
666                         ),
667                         array(
668                                 '{--YES--}',
669                                 '{--NO--}'
670                         ),
671                         $default
672                 );
673         } // END - if
674
675         // Return cache
676         return $GLOBALS[__FUNCTION__][$default];
677 }
678
679 // Translates 'translate_name' for e.g. templates
680 function translateNetworkTranslationName ($name) {
681         // Get the message id
682         return getMessage('ADMIN_NETWORK_TRANSLATE_' . strtoupper($name) . '_NAME');
683 }
684
685 // Translates the network type handler (e.g. banner, paidmail) for templates
686 function translateNetworkTypeHandler ($type) {
687         // Get the message id
688         return getMessage('ADMIN_NETWORK_TYPES_' . strtoupper($type) . '');
689 }
690
691 // Translates request type
692 function translateNetworkRequestType ($type) {
693         // Get the message id
694         return getMessage('ADMIN_NETWORK_REQUEST_TYPE_' . strtoupper($type) . '');
695 }
696
697 // Translates request parameter
698 function translateNetworkRequestParameter ($param) {
699         // Get the message id
700         return getMessage('ADMIN_NETWORK_REQUEST_PARAMETER_' . strtoupper($param) . '');
701 }
702
703 // Translates API index
704 function translateNetworkApiIndex ($index) {
705         // Do we have cache?
706         if (!isset($GLOBALS['network_api_index'])) {
707                 // Get an array of all API array indexes
708                 $GLOBALS['network_api_index'] = array();
709
710                 // Get all entries
711                 $result = SQL_QUERY('SELECT
712         `network_api_id`, `network_api_index`, `network_translation_name`
713 FROM
714         `{?_MYSQL_PREFIX?}_network_api_translation`
715 INNER JOIN
716         `{?_MYSQL_PREFIX?}_network_translations`
717 ON
718         `network_api_index`=`network_translation_id`
719 ORDER BY
720         `sort` ASC', __FUNCTION__, __LINE__);
721
722                 // Do we have entries?
723                 if (SQL_NUMROWS($result) > 0) {
724                         // Get all entries
725                         while ($row = SQL_FETCHARRAY($result)) {
726                                 // Add it to our global array
727                                 $GLOBALS['network_api_index'][$row['network_api_index']] = $row;
728                         } // END - while
729                 } // END - if
730
731                 // Free result
732                 SQL_FREERESULT($result);
733         } // END - if
734
735         // Default name is unknown
736         $name = 'unknown';
737
738         // Is the entry there?
739         if (isset($GLOBALS['network_api_index'][$index])) {
740                 // Then get the name
741                 $name = $GLOBALS['network_api_index'][$index]['network_translation_name'];
742         } // END - if
743
744         // Return translation
745         return translateNetworkTranslationName($name);
746 }
747
748 //------------------------------------------------------------------------------
749 //                             Call-back functions
750 //------------------------------------------------------------------------------
751
752 // Callback function to add new network
753 function doAdminNetworkProcessAddNetwork () {
754         // We can say here, the form is sent, so check if the network is already added
755         if (isNetworkNameValid(postRequestParameter('network_short_name'))) {
756                 // Already there
757                 loadTemplate('admin_settings_unsaved', false, getMaskedMessage('ADMIN_NETWORK_ALREADY_ADDED', postRequestParameter('network_short_name')));
758                 return false;
759         } // END - if
760
761         // Remove the 'ok' part
762         unsetPostRequestParameter('ok');
763
764         // Add the whole request to database
765         SQL_QUERY('INSERT INTO
766         `{?_MYSQL_PREFIX?}_network_data`
767 (
768         `' . implode('`,`', array_keys(postRequestArray())) . "`
769 ) VALUES (
770         '" . implode("','", array_values(postRequestArray())) . "'
771 )", __FUNCTION__, __LINE__);
772
773         // Add the id for output only
774         setPostRequestParameter('network_id', SQL_INSERTID());
775
776         // Output message
777         if (SQL_AFFECTEDROWS() == 1) {
778                 // Successfully added
779                 loadTemplate('admin_network_added', false, postRequestArray());
780         } else {
781                 // Not added
782                 loadTemplate('admin_settings_unsaved', false, getMaskedMessage('ADMIN_NETWORK_DATA_NOT_ADDED', postRequestParameter('network_short_name')));
783         }
784 }
785
786 // Displays selected networks for editing
787 function doAdminNetworkProcessHandleNetwork () {
788         // Do we have selections?
789         if (ifPostContainsSelections()) {
790                 // Something has been selected, so start displaying one by one
791                 $OUT = '';
792                 foreach (postRequestParameter('sel') as $id => $sel) {
793                         // Is this selected?
794                         if ($sel == 1) {
795                                 // Load this network's data
796                                 $networkData = getNetworkDataById($id);
797
798                                 // Do we have found the network?
799                                 if (count($networkData) > 0) {
800                                         if (isFormSent('edit')) {
801                                                 // Add row template for editing
802                                                 $OUT .= loadTemplate('admin_edit_networks_row', true, $networkData);
803                                         } elseif (isFormSent('delete')) {
804                                                 // Add row template for deleting
805                                                 $OUT .= loadTemplate('admin_delete_networks_row', true, $networkData);
806                                         } else {
807                                                 // Problem!
808                                                 debug_report_bug(__FUNCTION__, __LINE__, 'Cannot detect edit/del.');
809                                         }
810                                 } // END - if
811                         } // END - if
812                 } // END - foreach
813
814                 // If we have no rows, we don't need to display the edit form
815                 if (!empty($OUT)) {
816                         // Output main template
817                         if (isFormSent('edit')) {
818                                 loadTemplate('admin_edit_networks', false, $OUT);
819                         } elseif (isFormSent('delete')) {
820                                 loadTemplate('admin_delete_networks', false, $OUT);
821                         } else {
822                                 // Problem!
823                                 debug_report_bug(__FUNCTION__, __LINE__, 'Cannot detect edit/del.');
824                         }
825
826                         // Don't display the list/add new form
827                         $GLOBALS['network_display'] = false;
828                 } else {
829                         // Nothing selected/found
830                         loadTemplate('admin_settings_unsaved', false, '{--ADMIN_NETWORK_NOTHING_FOUND--}');
831                 }
832         } // END - if
833 }
834
835 // Handle network type form
836 function doAdminNetworkProcessHandleNetworkType () {
837         // Do we have selections?
838         if (ifPostContainsSelections()) {
839                 // Load network data
840                 $networkData = getNetworkDataById(getRequestParameter('network'));
841
842                 // Something has been selected, so start displaying one by one
843                 $OUT = '';
844                 foreach (postRequestParameter('sel') as $id => $sel) {
845                         // Is this selected?
846                         if ($sel == 1) {
847                                 // Load this network's data
848                                 $networkTypeData = getNetworkTypeDataById($id);
849
850                                 // Do we have found the network?
851                                 if (count($networkTypeData) > 0) {
852                                         if (isFormSent('edit')) {
853                                                 // Add row template for deleting
854                                                 $OUT .= loadTemplate('admin_edit_network_types_row', true, $networkTypeData);
855                                         } elseif (isFormSent('delete')) {
856                                                 // Add row template for deleting
857                                                 $OUT .= loadTemplate('admin_delete_network_types_row', true, $networkTypeData);
858                                         } else {
859                                                 // Problem!
860                                                 debug_report_bug(__FUNCTION__, __LINE__, 'Cannot detect edit/del.');
861                                         }
862                                 } // END - if
863                         } // END - if
864                 } // END - foreach
865
866                 // If we have no rows, we don't need to display the edit form
867                 if (!empty($OUT)) {
868                         // Output main template
869                         if (isFormSent('edit')) {
870                                 loadTemplate('admin_edit_network_types', false, $OUT);
871                         } elseif (isFormSent('delete')) {
872                                 loadTemplate('admin_delete_network_types', false, $OUT);
873                         } else {
874                                 // Problem!
875                                 debug_report_bug(__FUNCTION__, __LINE__, 'Cannot detect edit/del.');
876                         }
877
878                         // Don't display the list/add new form
879                         $GLOBALS['network_display'] = false;
880                 } else {
881                         // Nothing selected/found
882                         loadTemplate('admin_settings_unsaved', false, '{--ADMIN_NETWORK_TYPES_NOTHING_FOUND--}');
883                 }
884         } // END - if
885 }
886
887 // Handle network request parameter form
888 function doAdminNetworkProcessHandleRequestParams () {
889         // Do we have selections?
890         if (ifPostContainsSelections()) {
891                 // Init cache array
892                 $GLOBALS['network_params_disabled'] = array();
893
894                 // Load network data
895                 $networkData = getNetworkDataById(getRequestParameter('network'));
896
897                 // Something has been selected, so start displaying one by one
898                 $OUT = '';
899                 foreach (postRequestParameter('sel') as $id => $sel) {
900                         // Is this selected?
901                         if ($sel == 1) {
902                                 // Load this network's data
903                                 $networkRequestData = getNetworkRequestParamsDataById($id);
904
905                                 // Do we have found the network?
906                                 if (count($networkRequestData) > 0) {
907                                         if (isFormSent('edit')) {
908                                                 // Add row template for deleting
909                                                 $OUT .= loadTemplate('admin_edit_network_params_row', true, $networkRequestData);
910                                         } elseif (isFormSent('delete')) {
911                                                 // Get type data
912                                                 $networkRequestData['network_type_data'] = getNetworkTypeDataById($networkRequestData['network_type_id']);
913
914                                                 // Add row template for deleting
915                                                 $OUT .= loadTemplate('admin_delete_network_params_row', true, $networkRequestData);
916                                         } else {
917                                                 // Problem!
918                                                 debug_report_bug(__FUNCTION__, __LINE__, 'Cannot detect edit/del.');
919                                         }
920                                 } // END - if
921                         } // END - if
922                 } // END - foreach
923
924                 // If we have no rows, we don't need to display the edit form
925                 if (!empty($OUT)) {
926                         // Output main template
927                         if (isFormSent('edit')) {
928                                 loadTemplate('admin_edit_network_params', false, $OUT);
929                         } elseif (isFormSent('delete')) {
930                                 loadTemplate('admin_delete_network_params', false, $OUT);
931                         } else {
932                                 // Problem!
933                                 debug_report_bug(__FUNCTION__, __LINE__, 'Cannot detect edit/del.');
934                         }
935
936                         // Don't display the list/add new form
937                         $GLOBALS['network_display'] = false;
938                 } else {
939                         // Nothing selected/found
940                         loadTemplate('admin_settings_unsaved', false, '{--ADMIN_NETWORK_REQUEST_PARAMETER_NOTHING_FOUND--}');
941                 }
942         } // END - if
943 }
944
945 // Changes given networks
946 function doAdminNetworkProcessChangeNetwork () {
947         // Do we have selections?
948         if (ifPostContainsSelections()) {
949                 // By default nothing is updated
950                 $updated = 0;
951
952                 // Something has been selected, so start updating them
953                 foreach (postRequestParameter('sel') as $id => $sel) {
954                         // Update this entry?
955                         if ($sel == 1) {
956                                 // Init data array
957                                 $networkData = array();
958
959                                 // Transfer whole array, except 'sel'
960                                 foreach (postRequestArray() as $key => $entry) {
961                                         // Skip 'sel' and submit button
962                                         if (in_array($key, array('sel', 'change'))) continue;
963
964                                         // Do we have this enty?
965                                         if (!isset($entry[$id])) {
966                                                 // Not found, needs fixing
967                                                 debug_report_bug(__FUNCTION__, __LINE__, 'No entry in key=' . $key . ', id=' . $id . ' found.');
968                                         } // END - if
969
970                                         // Add this entry
971                                         $networkData[$key] = $entry[$id];
972                                 } // END - foreach
973
974                                 // Update the network data
975                                 $updated += doNetworkUpdateDataByArray($id, $networkData);
976                         } // END - if
977                 } // END - foreach
978
979                 // Do we have updates?
980                 if ($updated > 0) {
981                         // Updates done
982                         loadTemplate('admin_settings_saved', false, getMaskedMessage('ADMIN_NETWORK_UPDATED', $updated));
983                 } else {
984                         // Nothing changed
985                         loadTemplate('admin_settings_unsaved', false, '{--ADMIN_NETWORK_NOTHING_CHANGED--}');
986                 }
987         } // END - if
988 }
989
990 // Removes given networks
991 function doAdminNetworkProcessRemoveNetwork () {
992         // Do we have selections?
993         if (ifPostContainsSelections()) {
994                 // By default nothing is removed
995                 $removed = 0;
996
997                 // Something has been selected, so start updating them
998                 foreach (postRequestParameter('sel') as $id => $sel) {
999                         // Update this entry?
1000                         if ($sel == 1) {
1001                                 // Remove this entry
1002                                 $removed += doAdminRemoveNetworkEntry('data', 'network_id', $id);
1003                         } // END - if
1004                 } // END - foreach
1005
1006                 // Do we have removes?
1007                 if ($removed > 0) {
1008                         // Removals done
1009                         loadTemplate('admin_settings_saved', false, getMaskedMessage('ADMIN_NETWORK_REMOVED', $removed));
1010                 } else {
1011                         // Nothing removed
1012                         loadTemplate('admin_settings_unsaved', false, '{--ADMIN_NETWORK_NOTHING_REMOVED--}');
1013                 }
1014         } // END - if
1015 }
1016
1017 // Add a network type handler if not yet found
1018 function doAdminNetworkProcessAddNetworkType () {
1019         // Is the network type handle already used with given network?
1020         if (isNetworkTypeHandleValid(postRequestParameter('network_type_handle'), getRequestParameter('network'))) {
1021                 // Already added
1022                 loadTemplate('admin_settings_unsaved', false, getMaskedMessage('ADMIN_NETWORK_TYPES_HANDLE_ALREADY_ADDED', postRequestParameter('network_type_handle')));
1023
1024                 // ... so abort here
1025                 return false;
1026         } // END - if
1027
1028         // Remove the 'ok' part
1029         unsetPostRequestParameter('ok');
1030
1031         // Add id
1032         setPostRequestParameter('network_id', bigintval(getRequestParameter('network')));
1033
1034         // Is network_type_banner_url set?
1035         if (postRequestParameter('network_type_banner_url') == '') {
1036                 // Remove empty value to get a NULL for an optional entry
1037                 unsetPostRequestParameter('network_type_banner_url');
1038         } // END - if
1039
1040         // Add the whole request to database
1041         SQL_QUERY('INSERT INTO
1042         `{?_MYSQL_PREFIX?}_network_types`
1043 (
1044         `' . implode('`,`', array_keys(postRequestArray())) . "`
1045 ) VALUES (
1046         '" . implode("','", array_values(postRequestArray())) . "'
1047 )", __FUNCTION__, __LINE__);
1048
1049         // Output message
1050         if (SQL_AFFECTEDROWS() == 1) {
1051                 // Successfully added
1052                 loadTemplate('admin_network_type_added', false, postRequestArray());
1053         } else {
1054                 // Not added
1055                 loadTemplate('admin_settings_unsaved', false, getMaskedMessage('ADMIN_NETWORK_TYPES_NOT_ADDED', postRequestParameter('network_type_handle')));
1056         }
1057 }
1058
1059 // Changes given network type handlers
1060 function doAdminNetworkProcessChangeNetworkType () {
1061         // Do we have selections?
1062         if (ifPostContainsSelections()) {
1063                 // By default nothing is updated
1064                 $updated = 0;
1065
1066                 // Something has been selected, so start updating them
1067                 foreach (postRequestParameter('sel') as $id => $sel) {
1068                         // Update this entry?
1069                         if ($sel == 1) {
1070                                 // Init data array
1071                                 $networkTypeData = array();
1072
1073                                 // Transfer whole array, except 'sel'
1074                                 foreach (postRequestArray() as $key => $entry) {
1075                                         // Skip 'sel' and submit button
1076                                         if (in_array($key, array('sel', 'change'))) continue;
1077
1078                                         // Do we have this enty?
1079                                         if (!isset($entry[$id])) {
1080                                                 // Not found, needs fixing
1081                                                 debug_report_bug(__FUNCTION__, __LINE__, 'No entry in key=' . $key . ', id=' . $id . ' found.');
1082                                         } // END - if
1083
1084                                         // Fix empty network_type_banner_url to NULL
1085                                         if (($key == 'network_type_banner_url') && (trim($entry[$id]) == '')) {
1086                                                 // Set it to NULL
1087                                                 $entry[$id] = null;
1088                                         } // END - if
1089
1090                                         // Add this entry
1091                                         $networkTypeData[$key] = $entry[$id];
1092                                 } // END - foreach
1093
1094                                 // Update the network data
1095                                 $updated += doNetworkUpdateTypeByArray($id, $networkTypeData);
1096                         } // END - if
1097                 } // END - foreach
1098
1099                 // Do we have updates?
1100                 if ($updated > 0) {
1101                         // Updates done
1102                         loadTemplate('admin_settings_saved', false, getMaskedMessage('ADMIN_NETWORK_TYPES_UPDATED', $updated));
1103                 } else {
1104                         // Nothing changed
1105                         loadTemplate('admin_settings_unsaved', false, '{--ADMIN_NETWORK_TYPES_NOTHING_CHANGED--}');
1106                 }
1107         } // END - if
1108 }
1109
1110 // Changes given network request parameters
1111 function doAdminNetworkProcessChangeNetworkParam () {
1112         // Do we have selections?
1113         if (ifPostContainsSelections()) {
1114                 // By default nothing is updated
1115                 $updated = 0;
1116
1117                 // Something has been selected, so start updating them
1118                 foreach (postRequestParameter('sel') as $id => $sel) {
1119                         // Update this entry?
1120                         if ($sel == 1) {
1121                                 // Init data array
1122                                 $networkParamsData = array();
1123
1124                                 // Transfer whole array, except 'sel'
1125                                 foreach (postRequestArray() as $key => $entry) {
1126                                         // Skip 'sel' and submit button
1127                                         if (in_array($key, array('sel', 'change'))) continue;
1128
1129                                         // Do we have this enty?
1130                                         if (!isset($entry[$id])) {
1131                                                 // Not found, needs fixing
1132                                                 debug_report_bug(__FUNCTION__, __LINE__, 'No entry in key=' . $key . ', id=' . $id . ' found.');
1133                                         } // END - if
1134
1135                                         // Fix empty request_param_default to NULL
1136                                         if (($key == 'request_param_default') && (trim($entry[$id]) == '')) {
1137                                                 // Set it to NULL
1138                                                 $entry[$id] = null;
1139                                         } // END - if
1140
1141                                         // Add this entry
1142                                         $networkParamsData[$key] = $entry[$id];
1143                                 } // END - foreach
1144
1145                                 // Update the network data
1146                                 $updated += doNetworkUpdateParamsByArray($id, $networkParamsData);
1147                         } // END - if
1148                 } // END - foreach
1149
1150                 // Do we have updates?
1151                 if ($updated > 0) {
1152                         // Updates done
1153                         loadTemplate('admin_settings_saved', false, getMaskedMessage('ADMIN_NETWORK_REQUEST_PARAMETER_UPDATED', $updated));
1154                 } else {
1155                         // Nothing changed
1156                         loadTemplate('admin_settings_unsaved', false, '{--ADMIN_NETWORK_REQUEST_PARAMETER_NOTHING_CHANGED--}');
1157                 }
1158         } // END - if
1159 }
1160
1161 // Removes given network type handlers
1162 function doAdminNetworkProcessRemoveNetworkType () {
1163         // Do we have selections?
1164         if (ifPostContainsSelections()) {
1165                 // By default nothing is removed
1166                 $removed = 0;
1167
1168                 // Something has been selected, so start updating them
1169                 foreach (postRequestParameter('sel') as $id => $sel) {
1170                         // Update this entry?
1171                         if ($sel == 1) {
1172                                 // Remove this entry
1173                                 $removed += doAdminRemoveNetworkEntry('types', 'network_type_id', $id);
1174                         } // END - if
1175                 } // END - foreach
1176
1177                 // Do we have removes?
1178                 if ($removed > 0) {
1179                         // Removals done
1180                         loadTemplate('admin_settings_saved', false, getMaskedMessage('ADMIN_NETWORK_TYPES_REMOVED', $removed));
1181                 } else {
1182                         // Nothing removed
1183                         loadTemplate('admin_settings_unsaved', false, '{--ADMIN_NETWORK_TYPES_NOTHING_REMOVED--}');
1184                 }
1185         } // END - if
1186 }
1187
1188 // Removes given network request parameters
1189 function doAdminNetworkProcessRemoveNetworkParam () {
1190         // Do we have selections?
1191         if (ifPostContainsSelections()) {
1192                 // By default nothing is removed
1193                 $removed = 0;
1194
1195                 // Something has been selected, so start updating them
1196                 foreach (postRequestParameter('sel') as $id => $sel) {
1197                         // Update this entry?
1198                         if ($sel == 1) {
1199                                 // Remove this entry
1200                                 $removed += doAdminRemoveNetworkEntry('request_params', 'network_param_id', $id);
1201                         } // END - if
1202                 } // END - foreach
1203
1204                 // Do we have removes?
1205                 if ($removed > 0) {
1206                         // Removals done
1207                         loadTemplate('admin_settings_saved', false, getMaskedMessage('ADMIN_NETWORK_REQUEST_PARAMETER_REMOVED', $removed));
1208                 } else {
1209                         // Nothing removed
1210                         loadTemplate('admin_settings_unsaved', false, '{--ADMIN_NETWORK_REQUEST_PARAMETER_NOTHING_REMOVED--}');
1211                 }
1212         } // END - if
1213 }
1214
1215 // Adds a request parameter to given network and type
1216 function doAdminNetworkProcessAddNetworkParam () {
1217         // Is the request parameter already used with given network?
1218         if (isNetworkRequestParameterValid(postRequestParameter('request_param_key'), postRequestParameter('network_type_id'), getRequestParameter('network'))) {
1219                 // Already added
1220                 loadTemplate('admin_settings_unsaved', false, getMaskedMessage('ADMIN_NETWORK_REQUEST_PARAMETER_ALREADY_ADDED', postRequestParameter('request_param_key')));
1221
1222                 // ... so abort here
1223                 return false;
1224         } // END - if
1225
1226         // Remove the 'ok' part
1227         unsetPostRequestParameter('ok');
1228
1229         // Add id
1230         setPostRequestParameter('network_id', bigintval(getRequestParameter('network')));
1231
1232         // Is request_param_default set?
1233         if (postRequestParameter('request_param_default') == '') {
1234                 // Remove empty value to get a NULL for an optional entry
1235                 unsetPostRequestParameter('request_param_default');
1236         } // END - if
1237
1238         // Add the whole request to database
1239         SQL_QUERY('INSERT INTO
1240         `{?_MYSQL_PREFIX?}_network_request_params`
1241 (
1242         `' . implode('`,`', array_keys(postRequestArray())) . "`
1243 ) VALUES (
1244         '" . implode("','", array_values(postRequestArray())) . "'
1245 )", __FUNCTION__, __LINE__);
1246
1247         // Output message
1248         if (SQL_AFFECTEDROWS() == 1) {
1249                 // Successfully added
1250                 loadTemplate('admin_network_request_param_added', false, postRequestArray());
1251         } else {
1252                 // Not added
1253                 loadTemplate('admin_settings_unsaved', false, getMaskedMessage('ADMIN_NETWORK_REQUEST_PARAMETER_NOT_ADDED', postRequestParameter('request_param_key')));
1254         }
1255 }
1256
1257 // Adds a API response array entry
1258 function doAdminNetworkProcessAddNetworkApiTranslation () {
1259         // Is the request parameter already used with given network?
1260         if (isNetworkApiTranslationValid(postRequestParameter('network_api_index'), postRequestParameter('network_type_id'), getRequestParameter('network'))) {
1261                 // Already added
1262                 loadTemplate('admin_settings_unsaved', false, getMaskedMessage('ADMIN_NETWORK_API_TRANSLATION_ALREADY_ADDED', postRequestParameter('network_api_index')));
1263
1264                 // ... so abort here
1265                 return false;
1266         } // END - if
1267
1268         // Remove the 'ok' part
1269         unsetPostRequestParameter('ok');
1270
1271         // Add id
1272         setPostRequestParameter('network_id', bigintval(getRequestParameter('network')));
1273
1274         // Add sorting
1275         setPostRequestParameter('sort', (countSumTotalData(
1276                 postRequestParameter('network_id'),
1277                 'network_api_translation',
1278                 'network_api_id',
1279                 'network_id',
1280                 true,
1281                 sprintf(" AND `network_type_id`=%s", bigintval(postRequestParameter('network_type_id')))
1282         ) + 1));
1283
1284         // Add the whole request to database
1285         SQL_QUERY('INSERT INTO
1286         `{?_MYSQL_PREFIX?}_network_api_translation`
1287 (
1288         `' . implode('`,`', array_keys(postRequestArray())) . "`
1289 ) VALUES (
1290         '" . implode("','", array_values(postRequestArray())) . "'
1291 )", __FUNCTION__, __LINE__);
1292
1293         // Output message
1294         if (SQL_AFFECTEDROWS() == 1) {
1295                 // Successfully added
1296                 loadTemplate('admin_network_api_translation_added', false, postRequestArray());
1297         } else {
1298                 // Not added
1299                 loadTemplate('admin_settings_unsaved', false, getMaskedMessage('ADMIN_NETWORK_API_TRANSLATION_NOT_ADDED', postRequestParameter('network_api_index')));
1300         }
1301 }
1302
1303 // Do expression code for this extension
1304 function doExpressionNetwork ($data) {
1305         // Construct replacer
1306         $replacer = sprintf(
1307                 "{DQUOTE} . %s(%s, '%s') . {DQUOTE}",
1308                 $data['callback'],
1309                 $data['matches'][4][$data['key']],
1310                 $data['extra_func']
1311         );
1312
1313         // Replace %network% with the current network id
1314         $replacer = str_replace('%network%', getCurrentNetworkId(), $replacer);
1315
1316         // Replace the code
1317         $code = replaceExpressionCode($data, $replacer);
1318
1319         // Return it
1320         return $code;
1321 }
1322
1323 // [EOF]
1324 ?>