82bf013f46087d6220f91f123a875337e80bed36
[mailer.git] / inc / modules / admin / what-list_network_vcheck_params.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 11/26/2009 *
4  * ===================                          Last change: 11/26/2009 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-list_network_vcheck_params.php             *
8  * -------------------------------------------------------------------- *
9  * Short description : List/manage network API query parameters         *
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 - 2012 by Mailer Developer Team                   *
20  * For more information visit: http://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         exit();
41 } // END - if
42
43 // Add description as navigation point
44 addYouAreHereLink('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 // Is there a network selected?
65 if (isGetRequestElementSet('network_id')) {
66         // Get its data for template
67         $networkData = getNetworkDataById(getRequestElement('network_id'));
68
69         // Init disabled list
70         $GLOBALS['network_vcheck_params_disabled'] = array();
71
72         // Load all advert types for given network
73         $result = SQL_QUERY_ESC("SELECT
74         `network_vcheck_param_id`,
75         `network_vcheck_param_key`,
76         `network_vcheck_param_value`,
77         `network_vcheck_param_default`
78 FROM
79         `{?_MYSQL_PREFIX?}_network_vcheck_params`
80 WHERE
81         `network_id`=%s
82 ORDER BY
83         `network_vcheck_param_id` ASC",
84                 array(getRequestElement('network_id')), __FILE__, __LINE__);
85
86         // Are there entries?
87         if (!SQL_HASZERONUMS($result)) {
88                 // List all entries
89                 $OUT = '';
90                 while ($row = SQL_FETCHARRAY($result)) {
91                         // Add this entry
92                         $GLOBALS['network_vcheck_params_disabled'][$row['network_vcheck_param_key']] = TRUE;
93
94                         // Add row template and switch color
95                         $OUT .= loadTemplate('admin_list_network_vcheck_params_row', TRUE, $row);
96                 } // END - while
97
98                 // Load main template
99                 loadTemplate('admin_list_network_vcheck_params', FALSE, $OUT);
100         } else {
101                 // No entries found
102                 displayMessage('{%message,ADMIN_NETWORK_VCHECK_PARAMETER_404=' . $networkData['network_title'] . '%}');
103         }
104
105         // Free result
106         SQL_FREERESULT($result);
107
108         // Add form for adding new params
109         loadTemplate('admin_add_network_vcheck_param', FALSE, $networkData);
110 } else {
111         // Generate network list for this script
112         outputHtml(generateAdminNetworkList());
113 }
114
115 // [EOF]
116 ?>