fooRequestElementBar() functions renamed, adding of request parameters added:
[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  * For more information visit: http://www.mxchange.org                  *
22  *                                                                      *
23  * This program is free software; you can redistribute it and/or modify *
24  * it under the terms of the GNU General Public License as published by *
25  * the Free Software Foundation; either version 2 of the License, or    *
26  * (at your option) any later version.                                  *
27  *                                                                      *
28  * This program is distributed in the hope that it will be useful,      *
29  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
30  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
31  * GNU General Public License for more details.                         *
32  *                                                                      *
33  * You should have received a copy of the GNU General Public License    *
34  * along with this program; if not, write to the Free Software          *
35  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
36  * MA  02110-1301  USA                                                  *
37  ************************************************************************/
38
39 // Some security stuff...
40 if ((!defined('__SECURITY')) || (!isAdmin())) {
41         die();
42 } // END - if
43
44 // Add description as navigation point
45 addMenuDescription('admin', __FILE__);
46
47 // These are expert settings!
48 if (doVerifyExpertSettings() != 'agreed') {
49         // Abort here
50         return;
51 } // END - if
52
53 // By default we should display list/add new forms
54 $GLOBALS['network_display'] = true;
55
56 // Handle form here
57 doNetworkHandleForm();
58
59 // Display forms?
60 if ($GLOBALS['network_display'] === false) {
61         // Abort here
62         return;
63 } // END - if
64
65 // Query for networks
66 $result = SQL_QUERY('SELECT
67         `network_id`, `network_short_name`, `network_title`, `network_reflink`, `network_data_seperator`, `network_row_seperator`, `network_request_type`, `network_charset`
68 FROM
69         `{?_MYSQL_PREFIX?}_network_data`
70 ORDER BY
71         `network_title` ASC', __FILE__, __LINE__);
72
73 // Do we have entries?
74 if (SQL_NUMROWS($result) > 0) {
75         // List all
76         $SW = 2; $OUT = '';
77         while ($content = SQL_FETCHARRAY($result)) {
78                 // Add/translate entries
79                 $content['sw'] = $SW;
80
81                 // Load row template
82                 $OUT .= loadTemplate('admin_list_networks_row', true, $content);
83
84                 // Switch color
85                 $SW = 3 - $SW;
86         } // END - while
87
88         // Load main template
89         loadTemplate('admin_list_networks', false, $OUT);
90 } else {
91         // Display a message that there are sponsor networks supported, yet
92         loadTemplate('admin_settings_saved', false, getMessage('ADMIN_NETWORK_NONE_SUPPORTED'));
93 }
94
95 // Free result
96 SQL_FREERESULT($result);
97
98 // Add form for adding new entry
99 loadTemplate('admin_add_network');
100
101 // [EOF]
102 ?>