'what' files should be loaded only once
[mailer.git] / inc / modules / admin / what-config_networks.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 08/31/2010 *
4  * ===================                          Last change: 08/31/2010 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-config_networks.php                         *
8  * -------------------------------------------------------------------- *
9  * Short description : Advertisement Network Configuration              *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Werbenetzwerkkonfiguration                       *
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 - 2011 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         die();
41 } // END - if
42
43 // Add description as navigation point
44 addYouAreHereLink('admin', __FILE__);
45
46 // By default we should display list/add new forms
47 $GLOBALS['network_display'] = true;
48
49 // Handle form here
50 doNetworkHandleForm();
51
52 // Display forms?
53 if ($GLOBALS['network_display'] === false) {
54         // Abort here
55         return;
56 } // END - if
57
58 // Do we have a network selected?
59 if (isGetRequestElementSet('network')) {
60         // Check all networks that doesn't have a configuration entry
61         $result = SQL_QUERY_ESC('SELECT
62         `network_id`,
63         `network_short_name`,
64         `network_title`,
65         `network_reflink`,
66         NULL AS `network_affiliate_id`,
67         NULL AS `network_api_password`,
68         NULL AS `network_site_id`,
69         NULL AS `network_query_amount`,
70         NULL AS `network_api_active`
71 FROM
72         `{?_MYSQL_PREFIX?}_network_data`
73 WHERE
74         `network_id`=%s
75 LIMIT 1',
76                 array(
77                         bigintval(getRequestElement('network'))
78                 ), __FILE__, __LINE__);
79
80         // Do we have an entry?
81         if (SQL_NUMROWS($result) == 1) {
82                 // Load data
83                 $content = SQL_FETCHARRAY($result);
84
85                 // Query for config table
86                 $result_config = SQL_QUERY_ESC('SELECT
87         `network_affiliate_id`,
88         `network_api_password`,
89         `network_site_id`,
90         `network_query_amount`,
91         `network_api_active`
92 FROM
93         `{?_MYSQL_PREFIX?}_network_config`
94 WHERE
95         `network_id`=%s
96 LIMIT 1',
97                         array(
98                                 bigintval(getRequestElement('network'))
99                         ), __FUNCTION__, __LINE__);
100
101                 // Do we have an entry?
102                 if (SQL_NUMROWS($result_config) == 1) {
103                         // Load entries
104                         $content = merge_array($content, SQL_FETCHARRAY($result_config));
105                 } // END - if
106
107                 // Free result
108                 SQL_FREERESULT($result_config);
109
110                 // Load main template
111                 loadTemplate('admin_config_network', false, $content);
112         } else {
113                 // Please setup some networks first
114                 displayMessage('{--ADMIN_NETWORK_DATA_MISSING--}');
115         }
116
117         // Free result
118         SQL_FREERESULT($result);
119 } else {
120         // Generate network list for this script
121         outputHtml(generateAdminNetworkList());
122 }
123
124 // [EOF]
125 ?>