]> git.mxchange.org Git - mailer.git/blob - inc/modules/admin/what-list_networks.php
Adding of network advert types partly finished, hard-coded table type fixed to dynamic
[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 // By default we should display list/add new forms
48 $GLOBALS['network_display'] = true;
49
50 // Handle form here
51 doNetworkHandleForm();
52
53 // Display forms?
54 if ($GLOBALS['network_display'] === false) {
55         // Abort here
56         return;
57 } // END - if
58
59 // Query for networks
60 $result = SQL_QUERY('SELECT
61         `network_id`, `network_short_name`, `network_title`, `network_reflink`, `network_data_seperator`, `network_row_seperator`, `network_request_type`, `network_charset`
62 FROM
63         `{?_MYSQL_PREFIX?}_network_data`
64 ORDER BY
65         `network_title` ASC', __FILE__, __LINE__);
66
67 // Do we have entries?
68 if (SQL_NUMROWS($result) > 0) {
69         // List all
70         $SW = 2; $OUT = '';
71         while ($content = SQL_FETCHARRAY($result)) {
72                 // Add/translate entries
73                 $content['sw'] = $SW;
74
75                 // Load row template
76                 $OUT .= loadTemplate('admin_list_networks_row', true, $content);
77
78                 // Switch color
79                 $SW = 3 - $SW;
80         } // END - while
81
82         // Load main template
83         loadTemplate('admin_list_networks', false, $OUT);
84 } else {
85         // Display a message that there are sponsor networks supported, yet
86         loadTemplate('admin_settings_saved', false, getMessage('ADMIN_NETWORK_NONE_SUPPORTED'));
87 }
88
89 // Free result
90 SQL_FREERESULT($result);
91
92 // Add form for adding new entry
93 loadTemplate('admin_add_network');
94
95 // [EOF]
96 ?>