Renamed function so it might be more understandable
[mailer.git] / inc / modules / admin / what-list_network_types.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 11/11/2009 *
4  * ===================                          Last change: 11/11/2009 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-list_network_types.php                      *
8  * -------------------------------------------------------------------- *
9  * Short description : List/manage network advertising types            *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Verwaltet Werbearten                             *
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, 2010 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 // Do we have a network selected?
65 if (isGetRequestParameterSet('network')) {
66         // Get its data for template
67         $networkData = getNetworkDataById(getRequestParameter('network'));
68
69         // Init disabled list
70         $GLOBALS['network_types_disabled'] = array();
71
72         // Load all advert types for given network
73         $result = SQL_QUERY_ESC("SELECT
74         `network_type_id`, `network_type_handle`, `network_type_api_url`, `network_type_click_url`, `network_type_banner_url`
75 FROM
76         `{?_MYSQL_PREFIX?}_network_types`
77 WHERE
78         `network_id`=%s
79 ORDER BY
80         `network_type_handle` ASC",
81                 array(getRequestParameter('network')), __FILE__, __LINE__);
82
83         // Do we have entries?
84         if (!SQL_HASZERONUMS($result)) {
85                 // List all entries
86                 $OUT = '';
87                 while ($row = SQL_FETCHARRAY($result)) {
88                         // Add/translate some data
89                         $row['network_type_banner_url'] = fixNullEmptyToDashes($row['network_type_banner_url'], 3);
90
91                         // Set disabled entry
92                         $GLOBALS['network_types_disabled'][$row['network_type_handle']] = true;
93
94                         // Add row template and switch color
95                         $OUT .= loadTemplate('admin_list_network_types_row', true, $row);
96                 } // END - while
97
98                 // Load main template
99                 loadTemplate('admin_list_network_types', false, $OUT);
100         } else {
101                 // No entries found
102                 loadTemplate('admin_settings_saved', false, getMaskedMessage('ADMIN_NETWORK_TYPES_404', $networkData['network_title']));
103         }
104
105         // Free result
106         SQL_FREERESULT($result);
107
108         // Add form for adding new types
109         loadTemplate('admin_add_network_type', false, $networkData);
110 } else {
111         // Generate network list for this script
112         outputHtml(generateAdminNetworkList());
113 }
114
115 // [EOF]
116 ?>