Mailer project continued:
[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         `network_text_encoding`
81 FROM
82         `{?_MYSQL_PREFIX?}_network_types`
83 WHERE
84         `network_id`=%s
85 ORDER BY
86         `network_type_handler` ASC',
87                 array(getRequestElement('network_id')), __FILE__, __LINE__);
88
89         // Are there entries?
90         if (!SQL_HASZERONUMS($result)) {
91                 // List all entries
92                 $OUT = '';
93                 while ($row = SQL_FETCHARRAY($result)) {
94                         // Set disabled entry
95                         $GLOBALS['network_types_disabled'][$row['network_type_handler']] = true;
96
97                         // Add row template and switch color
98                         $OUT .= loadTemplate('admin_list_network_types_row', true, $row);
99                 } // END - while
100
101                 // Load main template
102                 loadTemplate('admin_list_network_types', false, $OUT);
103         } else {
104                 // No entries found
105                 displayMessage('{%message,ADMIN_NETWORK_TYPE_HANDLER_404=' . $networkData['network_title'] . '%}');
106         }
107
108         // Free result
109         SQL_FREERESULT($result);
110
111         // Add content for reload time unit
112         $networkData['network_type_reload_time_unit'] = generateTimeUnitSelectionBox('h', 'network_type_reload_time_unit', array('W', 'D', 'h', 'm', 's'));
113
114         // Add form for adding new types
115         loadTemplate('admin_add_network_type', false, $networkData);
116 } else {
117         // Generate network list for this script
118         outputHtml(generateAdminNetworkList());
119 }
120
121 // [EOF]
122 ?>