de637747b868d93655809e190010915bc77fffca
[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:: 856                                                    $ *
14  * $Date:: 2009-03-06 20:24:32 +0100 (Fr, 06. March 2009)             $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author:: stelzi                                                   $ *
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 // Was the form sent?
51 if ((isFormSent()) || (isPostRequestElementSet('edit')) || (isPostRequestElementSet('del')) || (isPostRequestElementSet('change')) || (isPostRequestElementSet('remove'))) {
52         // Do we have a 'do'?
53         if (isGetRequestElementSet('do')) {
54                 // Process the request
55                 doAdminNetworkProcessForm();
56         } else {
57                 // No 'do' found
58                 loadTemplate('admin_settings_saved', false, getMessage('ADMIN_NETWORK_DO_404'));
59         }
60 } // END - if
61
62 // Display forms?
63 if ($GLOBALS['network_display'] === false) {
64         // Abort here
65         return;
66 } // END - if
67
68 // Query for networks
69 $result = SQL_QUERY('SELECT
70         `network_id`, `network_short_name`, `network_title`, `network_reflink`, `network_data_seperator`, `network_row_seperator`, `network_request_type`, `network_charset`
71 FROM
72         `{?_MYSQL_PREFIX?}_network_data`
73 ORDER BY
74         `network_title` ASC', __FILE__, __LINE__);
75
76 // Do we have entries?
77 if (SQL_NUMROWS($result) > 0) {
78         // List all
79         $SW = 2; $OUT = '';
80         while ($content = SQL_FETCHARRAY($result)) {
81                 // Add/translate entries
82                 $content['sw'] = $SW;
83
84                 // Load row template
85                 $OUT .= loadTemplate('admin_list_networks_row', true, $content);
86
87                 // Switch color
88                 $SW = 3 - $SW;
89         } // END - while
90
91         // Load main template
92         loadTemplate('admin_list_networks', false, $OUT);
93 } else {
94         // Display a message that there are sponsor networks supported, yet
95         loadTemplate('admin_settings_saved', false, getMessage('ADMIN_NETWORK_NONE_SUPPORTED'));
96 }
97
98 // Free result
99 SQL_FREERESULT($result);
100
101 // Add form for adding new entry
102 loadTemplate('admin_add_network');
103
104 // [EOF]
105 ?>