Added update_year.sh (still not fully flexible) and updated all years with it.
[mailer.git] / inc / modules / admin / what-list_network_data.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 11/04/2009 *
4  * ===================                          Last change: 11/04/2009 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-list_network_data.php                       *
8  * -------------------------------------------------------------------- *
9  * Short description : List all supported sponsor networks              *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Listet alle supportierten Werbenetzwerke auf     *
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 - 2015 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 // Query for networks
65 $result = sqlQuery('SELECT
66         `network_id`,
67         `network_short_name`,
68         `network_title`,
69         `network_reflink`,
70         `network_data_separator`,
71         `network_row_separator`,
72         `network_request_type`,
73         `network_charset`,
74         `network_require_id_card`,
75         `network_query_amount`
76 FROM
77         `{?_MYSQL_PREFIX?}_network_data`
78 ORDER BY
79         `network_short_name` ASC', __FILE__, __LINE__);
80
81 // Are there entries?
82 if (!ifSqlHasZeroNums($result)) {
83         // List all
84         $OUT = '';
85         while ($content = sqlFetchArray($result)) {
86                 // Load row template
87                 $OUT .= loadTemplate('admin_list_network_data_row', TRUE, $content);
88         } // END - while
89
90         // Load main template
91         loadTemplate('admin_list_network_data', FALSE, $OUT);
92 } else {
93         // Display a message that there are sponsor networks supported, yet
94         displayMessage('{--ADMIN_NETWORK_NONE_SUPPORTED--}');
95 }
96
97 // Free result
98 sqlFreeResult($result);
99
100 // Add form for adding new entry
101 loadTemplate('admin_add_network');
102
103 // [EOF]
104 ?>