A lot has been rewritten, ext-teams added, ext-forced continued:
[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  * -------------------------------------------------------------------- *
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 // 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 // Query for networks
65 $result = SQL_QUERY('SELECT
66         `network_id`,
67         `network_short_name`,
68         `network_title`,
69         `network_reflink`,
70         `network_data_seperator`,
71         `network_row_seperator`,
72         `network_request_type`,
73         `network_charset`,
74         `network_requires_id`
75 FROM
76         `{?_MYSQL_PREFIX?}_network_data`
77 ORDER BY
78         `network_short_name` ASC', __FILE__, __LINE__);
79
80 // Do we have entries?
81 if (!SQL_HASZERONUMS($result)) {
82         // List all
83         $OUT = '';
84         while ($content = SQL_FETCHARRAY($result)) {
85                 // Load row template
86                 $OUT .= loadTemplate('admin_list_networks_row', true, $content);
87         } // END - while
88
89         // Load main template
90         loadTemplate('admin_list_networks', false, $OUT);
91 } else {
92         // Display a message that there are sponsor networks supported, yet
93         displayMessage('{--ADMIN_NETWORK_NONE_SUPPORTED--}');
94 }
95
96 // Free result
97 SQL_FREERESULT($result);
98
99 // Add form for adding new entry
100 loadTemplate('admin_add_network');
101
102 // [EOF]
103 ?>