Mailer project rwritten:
[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(bigintval(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                 // Prepare generic array
99                 $content = array(
100                         'rows'       => $OUT,
101                         'network_id' => bigintval(getRequestElement('network_id'))
102                 );
103
104                 // Load main template
105                 loadTemplate('admin_list_network_vcheck_params', FALSE, $content);
106         } else {
107                 // No entries found
108                 displayMessage('{%message,ADMIN_NETWORK_VCHECK_PARAMETER_404=' . $networkData['network_title'] . '%}');
109         }
110
111         // Free result
112         SQL_FREERESULT($result);
113
114         // Add form for adding new params
115         loadTemplate('admin_add_network_vcheck_param', FALSE, $networkData);
116 } else {
117         // Generate network list for this script
118         $OUT = generateAdminNetworkList();
119
120         // Is it not empty?
121         if (!empty($OUT)) {
122                 // Output it
123                 outputHtml($OUT);
124         } // END - if
125 }
126
127 // [EOF]
128 ?>