Added update_year.sh (still not fully flexible) and updated all years with it.
[mailer.git] / inc / modules / admin / what-config_network_api.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 08/12/2011 *
4  * ===================                          Last change: 08/12/2011 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-config_network_api.php                      *
8  * -------------------------------------------------------------------- *
9  * Short description : API configuration for advertising networks       *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : API-Konfiguration zu den Werbenetzwerke          *
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 - 2015 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 // Is there a network selected?
59 if (isGetRequestElementSet('network_id')) {
60         // Check all networks that doesn't have a configuration entry
61         $result = sqlQueryEscaped('SELECT
62         `network_id`,
63         `network_short_name`,
64         `network_title`,
65         `network_reflink`,
66         `network_query_amount`,
67         `network_active`,
68         NULL AS `network_api_affiliate_id`,
69         NULL AS `network_api_password`,
70         NULL AS `network_api_site_id`,
71         NULL AS `network_api_active`,
72         NULL AS `network_api_referral_link`,
73         NULL AS `network_api_referral_button`,
74         NULL AS `network_api_remaining_requests`,
75         NULL AS `network_api_visual_pay_check`
76 FROM
77         `{?_MYSQL_PREFIX?}_network_data`
78 WHERE
79         `network_id`=%s
80 LIMIT 1',
81                 array(
82                         bigintval(getRequestElement('network_id'))
83                 ), __FILE__, __LINE__);
84
85         // Is there an entry?
86         if (sqlNumRows($result) == 1) {
87                 // Load data
88                 $content = sqlFetchArray($result);
89
90                 // Is the network active?
91                 if (($content['network_active'] == 'N') && (!isAdminsExpertWarningEnabled()) && (!isDebugModeEnabled())) {
92                         // Not active
93                         displayMessage('{--ADMIN_NETWORK_NOT_ACTIVE--}');
94                         return;
95                 } // END - if
96
97                 // Query for config table
98                 $result_config = sqlQueryEscaped('SELECT
99         `network_api_affiliate_id`,
100         `network_api_password`,
101         `network_api_site_id`,
102         `network_api_active`,
103         `network_api_referral_link`,
104         `network_api_referral_button`,
105         `network_api_remaining_requests`,
106         `network_api_visual_pay_check`
107 FROM
108         `{?_MYSQL_PREFIX?}_network_api_config`
109 WHERE
110         `network_id`=%s
111 LIMIT 1',
112                         array(
113                                 bigintval(getRequestElement('network_id'))
114                         ), __FUNCTION__, __LINE__);
115
116                 // Is there an entry?
117                 if (sqlNumRows($result_config) == 1) {
118                         // Load entries
119                         $content = merge_array($content, sqlFetchArray($result_config));
120                 } // END - if
121
122                 // Free result
123                 sqlFreeResult($result_config);
124
125                 // Load main template (for "add" and "edit")
126                 loadTemplate('admin_config_network_api', FALSE, $content);
127         } else {
128                 // Please setup some networks first
129                 displayMessage('{--ADMIN_NETWORK_DATA_MISSING--}');
130         }
131
132         // Free result
133         sqlFreeResult($result);
134 } else {
135         // Generate network list for this script
136         $OUT = generateAdminNetworkList(TRUE);
137
138         // Is it not empty?
139         if (!empty($OUT)) {
140                 // Output it
141                 outputHtml($OUT);
142         } // END - if
143 }
144
145 // [EOF]
146 ?>