branch prepared
[mailer.git] / inc / modules / admin / what-list_bank_package.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 02/12/2004 *
4  * ================                             Last change: 02/12/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-list_bank_package.php                       *
8  * -------------------------------------------------------------------- *
9  * Short description : List packages                                    *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Listet Angebotspakete auf                        *
12  * -------------------------------------------------------------------- *
13  *                                                                      *
14  * -------------------------------------------------------------------- *
15  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
16  * For more information visit: http://www.mxchange.org                  *
17  *                                                                      *
18  * This program is free software; you can redistribute it and/or modify *
19  * it under the terms of the GNU General Public License as published by *
20  * the Free Software Foundation; either version 2 of the License, or    *
21  * (at your option) any later version.                                  *
22  *                                                                      *
23  * This program is distributed in the hope that it will be useful,      *
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
26  * GNU General Public License for more details.                         *
27  *                                                                      *
28  * You should have received a copy of the GNU General Public License    *
29  * along with this program; if not, write to the Free Software          *
30  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
31  * MA  02110-1301  USA                                                  *
32  ************************************************************************/
33
34 // Some security stuff...
35 if ((ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) || (!is_admin())) {
36         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
37         require($INC);
38 }
39
40 // Add description as navigation point
41 ADD_DESCR("admin", basename(__FILE__));
42
43 // Check if there is enougth selected
44 $show = true;
45 if ((isset($_POST['id'])) && (is_array($_POST['id'])) && (count($_POST['id']) > 0)) {
46         // Okay, which button was pressed?
47         if (isset($_POST['change'])) {
48                 // Change permissions
49                 ADMIN_CHANGE_ACTIVATION_STATUS($_POST['id'], "bank_packages", "package_active");
50         } elseif (isset($_POST['delete'])) {
51                 // Delete entries (with confirmation)
52                 ADMIN_DELETE_ENTRIES_CONFIRM($_POST['id'], "bank_packages", "package_active", array("id", "title", "description", "account_fee"), array("bigintval", "", "", "TRANSLATE_COMMA"));
53                 $show = false;
54         } elseif (isset($_POST['remove'])) {
55                 // Delete entries (with confirmation)
56                 ADMIN_DELETE_ENTRIES_CONFIRM($_POST['id'], "bank_packages", "package_active", array(), array(), true);
57         }
58 }
59
60 // Skip showing old entries?
61 if (!$show) return;
62
63 // Load all banking packages from DB
64 $result = SQL_QUERY("SELECT id, title, description, account_fee AS 'fee', package_active AS 'active', interest_plus AS 'plus', interest_minus AS 'minus'
65 FROM "._MYSQL_PREFIX."_bank_packages
66 ORDER BY id", __FILE__, __LINE__);
67
68 // Is there at lease one package?
69 if (SQL_NUMROWS($result) > 0) {
70         // List all packages
71         $OUT = ""; $SW = 2;
72         while ($content = SQL_FETCHARRAY($result)) {
73                 // "Translate" some data
74                 $content['active'] = TRANSLATE_YESNO($content['active']);
75                 $content['fee']    = TRANSLATE_COMMA($content['fee']);
76                 $content['plus']   = TRANSLATE_COMMA($content['plus']);
77                 $content['minus']  = TRANSLATE_COMMA($content['minus']);
78                 $content['sw']     = $SW;
79
80                 // Load row template
81                 $OUT .= LOAD_TEMPLATE("admin_list_bank_package_row", true, $content);
82                 $SW = 3 - $SW;
83         }
84
85         // Prepare row(s) for output to template
86         define('__BANK_PACKAGE_ROWS', $OUT);
87
88         // Load main template
89         LOAD_TEMPLATE("admin_list_bank_package");
90 } else {
91         // No packages found!
92         LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_BANK_NO_PACKAGES_FOUND);
93 }
94
95 // Free the result
96 SQL_FREERESULT($result);
97
98 //
99 ?>