44d87c3a6f794ec0dbdcab263f5b86940dcc613e
[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://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 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 // Check all networks that doesn't have a configuration entry
59 $result = SQL_QUERY("SELECT
60         d.`network_id`, d.`network_short_name`, d.`network_title`, d.`network_reflink`,
61         c.`network_affiliate_id`, c.`network_api_password`, c.`network_site_id`, c.`network_query_amount`, c.`network_active`
62 FROM
63         `{?_MYSQL_PREFIX?}_network_data` AS `d`
64 LEFT JOIN
65         `{?_MYSQL_PREFIX?}_network_config` AS `c`
66 ON
67         d.`network_id`=c.`network_id`
68 ORDER BY
69         d.`network_short_name` ASC", __FILE__, __LINE__);
70
71 // Do we have entries?
72 if (!SQL_HASZERONUMS($result)) {
73         // We have some networks here
74         $OUT = '';
75         while ($content = SQL_FETCHARRAY($result)) {
76                 // Fix empty 'active' to 'yes'
77                 if (is_null($content['network_active'])) {
78                         // Fix it for our API function
79                         $content['network_active'] = 'Y';
80                 } // END - if
81
82                 // Add network row
83                 $OUT .= loadTemplate('admin_list_network_config_row', true, $content);
84         } // END - while
85
86         // Load main template
87         loadTemplate('admin_list_network_config', false, $OUT);
88 } else {
89         // Please setup some networks first
90         loadTemplate('admin_settings_saved', false, '{--ADMIN_NETWORK_DATA_MISSING--}');
91 }
92 // Free result
93 SQL_FREERESULT($result);
94
95 // [EOF]
96 ?>