Rewrote 'we' word a little, rewrote mail order to use SQL_INSERTID() instead of anoth...
[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 type handlers    *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Verwaltet Werbearten-Handler                     *
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 - 2012 by Mailer Developer Team                   *
20  * For more information visit: http://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 // Is there a network selected?
65 if (isGetRequestElementSet('network_id')) {
66         // Get its data for template
67         $networkData = getNetworkDataById(getRequestElement('network_id'));
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`,
75         `network_type_handler`,
76         `network_type_api_url`,
77         `network_type_click_url`,
78         `network_type_banner_url`,
79         `network_type_reload_time_unit`
80 FROM
81         `{?_MYSQL_PREFIX?}_network_types`
82 WHERE
83         `network_id`=%s
84 ORDER BY
85         `network_type_handler` ASC',
86                 array(getRequestElement('network_id')), __FILE__, __LINE__);
87
88         // Are there entries?
89         if (!SQL_HASZERONUMS($result)) {
90                 // List all entries
91                 $OUT = '';
92                 while ($row = SQL_FETCHARRAY($result)) {
93                         // Add/translate some data
94                         $row['network_type_banner_url'] = fixNullEmptyToDashes($row['network_type_banner_url'], 3);
95
96                         // Set disabled entry
97                         $GLOBALS['network_types_disabled'][$row['network_type_handler']] = true;
98
99                         // Add row template and switch color
100                         $OUT .= loadTemplate('admin_list_network_types_row', true, $row);
101                 } // END - while
102
103                 // Load main template
104                 loadTemplate('admin_list_network_types', false, $OUT);
105         } else {
106                 // No entries found
107                 displayMessage('{%message,ADMIN_NETWORK_TYPE_HANDLER_404=' . $networkData['network_title'] . '%}');
108         }
109
110         // Free result
111         SQL_FREERESULT($result);
112
113         // Add content for reload time unit
114         $networkData['network_type_reload_time_unit'] = generateTimeUnitSelectionBox('h', 'network_type_reload_time_unit', array('W', 'D', 'h', 'm', 's'));
115
116         // Add form for adding new types
117         loadTemplate('admin_add_network_type', false, $networkData);
118 } else {
119         // Generate network list for this script
120         outputHtml(generateAdminNetworkList());
121 }
122
123 // [EOF]
124 ?>