New functions introduced, several rewrites:
[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_request_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_id` 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
80                         // Add row template and switch color
81                         $OUT .= loadTemplate('admin_list_network_types_row', true, $row);
82                         $SW = 3 - $SW;
83                 } // END - while
84
85                 // Load main template
86                 loadTemplate('admin_list_network_types', false, $OUT);
87         } else {
88                 // No entries found
89                 loadTemplate('admin_settings_saved', false, getMaskedMessage('ADMIN_NETWORK_TYPES_404', $networkData['network_title']));
90         }
91
92         // Free result
93         SQL_FREERESULT($result);
94
95         // Add form for adding new types
96         loadTemplate('admin_add_network_type', false, $networkData);
97 } else {
98         // Generate network list for this script
99         outputHtml(generateAdminNetworkList());
100 }
101
102 // [EOF]
103 ?>