Listing of network type handlers finished
[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  * 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 // These are expert settings!
48 if (doVerifyExpertSettings() != 'agreed') {
49         // Abort here
50         return;
51 } // END - if
52
53 // Handle form here
54 doNetworkHandleForm();
55
56 // Do we have a network selected?
57 if (isGetRequestElementSet('network')) {
58         // Get its data for template
59         $networkData = getNetworkDataById(getRequestElement('network'));
60
61         // Load all advert types for given network
62         $result = SQL_QUERY_ESC("SELECT
63         `network_type_id`, `network_type_handle`, `network_type_api_url`, `network_type_click_url`, `network_type_banner_url`
64 FROM
65         `{?_MYSQL_PREFIX?}_network_types`
66 WHERE
67         `network_id`=%s
68 ORDER BY
69         `network_type_handle` ASC",
70                 array(getRequestElement('network')), __FILE__, __LINE__);
71
72         // Do we have entries?
73         if (SQL_NUMROWS($result) > 0) {
74                 // List all entries
75                 $OUT = ''; $SW = 2;
76                 while ($row = SQL_FETCHARRAY($result)) {
77                         // Add/translate some data
78                         $row['sw'] = $SW;
79                         if (trim($row['network_type_banner_url']) == '') $row['network_type_banner_url'] = '---';
80
81                         // Add row template and switch color
82                         $OUT .= loadTemplate('admin_list_network_types_row', true, $row);
83                         $SW = 3 - $SW;
84                 } // END - while
85
86                 // Prepare data for template
87                 $content = array(
88                         'rows'            => $OUT,
89                         'network_id'      => getRequestElement('network_id'),
90                         'network_title'   => $networkData['network_title'],
91                         'network_reflink' => $networkData['network_reflink'],
92                 );
93
94                 // Load main template
95                 loadTemplate('admin_list_network_types', false, $content);
96         } else {
97                 // No entries found
98                 loadTemplate('admin_settings_saved', false, getMaskedMessage('ADMIN_NETWORK_TYPES_404', $networkData['network_title']));
99         }
100
101         // Free result
102         SQL_FREERESULT($result);
103
104         // Add form for adding new types
105         loadTemplate('admin_add_network_type', false, $networkData);
106 } else {
107         // Generate network list for this script
108         outputHtml(generateAdminNetworkList());
109 }
110
111 // [EOF]
112 ?>