]> git.mxchange.org Git - mailer.git/blob - inc/modules/admin/what-list_network_types.php
Adding of network advert types partly finished, hard-coded table type fixed to dynamic
[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 // Handle form here
48 doNetworkHandleForm();
49
50 // Do we have a network selected?
51 if (isGetRequestElementSet('network')) {
52         // Get its data for template
53         $networkData = getNetworkDataById(getRequestElement('network'));
54
55         // Load all advert types for given network
56         $result = SQL_QUERY_ESC("SELECT
57         `network_type_id`, `network_type_handle`, `network_type_request_url`, `network_type_click_url`, `network_type_banner_url`
58 FROM
59         `{?_MYSQL_PREFIX?}_network_types`
60 WHERE
61         `network_id`=%s
62 ORDER BY
63         `network_type_id` ASC",
64                 array(getRequestElement('network')), __FILE__, __LINE__);
65
66         // Do we have entries?
67         if (SQL_NUMROWS($result) > 0) {
68                 // List all entries
69                 $OUT = ''; $SW = 2;
70                 while ($row = SQL_FETCHARRAY($result)) {
71                         // Add/translate some data
72                         $row['sw'] = $SW;
73
74                         // Add row template and switch color
75                         $OUT .= loadTemplate('admin_list_network_types_row', true, $row);
76                         $SW = 3 - $SW;
77                 } // END - while
78
79                 // Load main template
80                 loadTemplate('admin_list_network_types', false, $OUT);
81         } else {
82                 // No entries found
83                 loadTemplate('admin_settings_saved', false, sprintf(getMessage('ADMIN_NETWORK_TYPES_404'), $networkData['network_title']));
84         }
85
86         // Free result
87         SQL_FREERESULT($result);
88
89         // Add form for adding new types
90         loadTemplate('admin_add_network_type', false, $networkData);
91 } else {
92         // Generate network list for this script
93         outputHtml(generateAdminNetworkList());
94 }
95
96 // [EOF]
97 ?>