a2d5150a5e9797385056563e00bc19d6b7cf9423
[mailer.git] / inc / modules / admin / what-list_network_api_translation.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 04/22/2010 *
4  * ===================                          Last change: 04/22/2010 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-list_network_api_translation.php            *
8  * -------------------------------------------------------------------- *
9  * Short description : List/manage network array index translations     *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Verwaltet API-Abfrageparameter                   *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * -------------------------------------------------------------------- *
18  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
19  * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
20  * For more information visit: http://www.mxchange.org                  *
21  *                                                                      *
22  * This program is free software; you can redistribute it and/or modify *
23  * it under the terms of the GNU General Public License as published by *
24  * the Free Software Foundation; either version 2 of the License, or    *
25  * (at your option) any later version.                                  *
26  *                                                                      *
27  * This program is distributed in the hope that it will be useful,      *
28  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
29  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
30  * GNU General Public License for more details.                         *
31  *                                                                      *
32  * You should have received a copy of the GNU General Public License    *
33  * along with this program; if not, write to the Free Software          *
34  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
35  * MA  02110-1301  USA                                                  *
36  ************************************************************************/
37
38 // Some security stuff...
39 if ((!defined('__SECURITY')) || (!isAdmin())) {
40         die();
41 } // END - if
42
43 // Add description as navigation point
44 addMenuDescription('admin', __FILE__);
45
46 // These are expert settings!
47 if (doVerifyExpertSettings() != 'agreed') {
48         // Abort here
49         return;
50 } // END - if
51
52 // By default we should display list/add new forms
53 $GLOBALS['network_display'] = true;
54
55 // Handle form here
56 doNetworkHandleForm();
57
58 // Display forms?
59 if ($GLOBALS['network_display'] === false) {
60         // Abort here
61         return;
62 } // END - if
63
64 // Do we have a network selected?
65 if (isGetRequestParameterSet('network')) {
66         // Get its data for template
67         $networkData = getNetworkDataById(getRequestParameter('network'));
68
69         // Init type
70         $networkData['network_type_id'] = 0;
71
72         // Init disabled list
73         $GLOBALS['network_translation_disabled'] = array();
74
75         // Only show params from given type handler if choosen
76         $ADD = '';
77         if ((isPostRequestParameterSet('network_type_id')) && (!is_array(postRequestParameter('network_type_id')))) {
78                 // Only show from current type handler
79                 $ADD = sprintf(" AND p.`network_type_id`=%s", bigintval(postRequestParameter('network_type_id')));
80
81                 // Overwrite type
82                 $networkData['network_type_id'] = bigintval(postRequestParameter('network_type_id'));
83
84                 // Display message
85                 loadTemplate('admin_settings_saved', false, '{--ADMIN_NETWORK_API_TRANSLATION_LIST_LIMITED_TO_TYPE--}');
86         } // END - if
87
88         // Load all advert codes for given network
89         $result = SQL_QUERY_ESC("SELECT
90         p.`network_api_id`, t.`network_type_id`, t.`network_type_handle`, p.`network_api_index`, p.`sort`
91 FROM
92         `{?_MYSQL_PREFIX?}_network_api_translation` AS p
93 INNER JOIN
94         `{?_MYSQL_PREFIX?}_network_types` AS t
95 ON
96         p.`network_type_id`=t.`network_type_id`
97 WHERE
98         p.`network_id`=%s
99         ".$ADD."
100 ORDER BY
101         t.`network_type_handle` ASC,
102         p.`network_api_id` ASC",
103                 array(
104                         bigintval(getRequestParameter('network'))
105                 ), __FILE__, __LINE__);
106
107         // Do we have entries?
108         if (SQL_NUMROWS($result) > 0) {
109                 // List all entries
110                 $OUT = '';
111                 while ($row = SQL_FETCHARRAY($result)) {
112                         // Add it to network if the type matches selected
113                         if ($row['network_type_id'] == postRequestParameter('network_type_id')) {
114                                 // Matches, then add it for disabling this entry
115                                 $GLOBALS['network_translation_disabled'][$row['network_api_index']] = true;
116                         } // END - if
117
118                         // Add row template and switch color
119                         $OUT .= loadTemplate('admin_list_network_api_translation_row', true, $row);
120                 } // END - while
121
122                 // Load main template
123                 loadTemplate('admin_list_network_api_translation', false, $OUT);
124         } else {
125                 // No entries found
126                 loadTemplate('admin_settings_saved', false, getMaskedMessage('ADMIN_NETWORK_API_TRANSLATION_404', $networkData['network_title']));
127         }
128
129         // Free result
130         SQL_FREERESULT($result);
131
132         // Add form for adding new array_translation pair
133         loadTemplate('admin_add_network_api_translation', false, $networkData);
134 } else {
135         // Generate network list for this script
136         outputHtml(generateAdminNetworkList());
137 }
138
139 // [EOF]
140 ?>