A lot code rewritten:
[mailer.git] / inc / modules / admin / what-list_networks.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 11/04/2009 *
4  * ===================                          Last change: 11/04/2009 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-list_networks.php                           *
8  * -------------------------------------------------------------------- *
9  * Short description : List all supported sponsor networks              *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Listet alle supportierten Werbenetzwerke auf     *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * Needs to be in all Files and every File needs "svn propset           *
18  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
19  * -------------------------------------------------------------------- *
20  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
21  * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
22  * For more information visit: http://www.mxchange.org                  *
23  *                                                                      *
24  * This program is free software; you can redistribute it and/or modify *
25  * it under the terms of the GNU General Public License as published by *
26  * the Free Software Foundation; either version 2 of the License, or    *
27  * (at your option) any later version.                                  *
28  *                                                                      *
29  * This program is distributed in the hope that it will be useful,      *
30  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
31  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
32  * GNU General Public License for more details.                         *
33  *                                                                      *
34  * You should have received a copy of the GNU General Public License    *
35  * along with this program; if not, write to the Free Software          *
36  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
37  * MA  02110-1301  USA                                                  *
38  ************************************************************************/
39
40 // Some security stuff...
41 if ((!defined('__SECURITY')) || (!isAdmin())) {
42         die();
43 } // END - if
44
45 // Add description as navigation point
46 addMenuDescription('admin', __FILE__);
47
48 // These are expert settings!
49 if (doVerifyExpertSettings() != 'agreed') {
50         // Abort here
51         return;
52 } // END - if
53
54 // By default we should display list/add new forms
55 $GLOBALS['network_display'] = true;
56
57 // Handle form here
58 doNetworkHandleForm();
59
60 // Display forms?
61 if ($GLOBALS['network_display'] === false) {
62         // Abort here
63         return;
64 } // END - if
65
66 // Query for networks
67 $result = SQL_QUERY('SELECT
68         `network_id`, `network_short_name`, `network_title`, `network_reflink`, `network_data_seperator`, `network_row_seperator`, `network_request_type`, `network_charset`
69 FROM
70         `{?_MYSQL_PREFIX?}_network_data`
71 ORDER BY
72         `network_short_name` ASC', __FILE__, __LINE__);
73
74 // Do we have entries?
75 if (SQL_NUMROWS($result) > 0) {
76         // List all
77         $OUT = '';
78         while ($content = SQL_FETCHARRAY($result)) {
79                 // Load row template
80                 $OUT .= loadTemplate('admin_list_networks_row', true, $content);
81         } // END - while
82
83         // Load main template
84         loadTemplate('admin_list_networks', false, $OUT);
85 } else {
86         // Display a message that there are sponsor networks supported, yet
87         loadTemplate('admin_settings_saved', false, '{--ADMIN_NETWORK_NONE_SUPPORTED--}');
88 }
89
90 // Free result
91 SQL_FREERESULT($result);
92
93 // Add form for adding new entry
94 loadTemplate('admin_add_network');
95
96 // [EOF]
97 ?>