More rewrites to make use of (cached) wrapper functions
[mailer.git] / inc / modules / admin / what-config_register.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 07/10/2004 *
4  * ===================                          Last change: 07/10/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-config_register.php                         *
8  * -------------------------------------------------------------------- *
9  * Short description : Setup for the registration form                  *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Einstellungen fuer das Anmeldeformular           *
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  * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
22  * For more information visit: http://www.mxchange.org                  *
23  *                                                                      *
24  * This program is free software; you can redistribute it and/or modify *
25  * it under the terms of the GNU General Public License as published by *
26  * the Free Software Foundation; either version 2 of the License, or    *
27  * (at your option) any later version.                                  *
28  *                                                                      *
29  * This program is distributed in the hope that it will be useful,      *
30  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
31  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
32  * GNU General Public License for more details.                         *
33  *                                                                      *
34  * You should have received a copy of the GNU General Public License    *
35  * along with this program; if not, write to the Free Software          *
36  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
37  * MA  02110-1301  USA                                                  *
38  ************************************************************************/
39
40 // Some security stuff...
41 if ((!defined('__SECURITY')) || (!isAdmin())) {
42         die();
43 } // END - if
44
45 // Add description as navigation point
46 addMenuDescription('admin', __FILE__);
47
48 // Do we want to save changes?
49 if (isFormSent()) {
50         // Begin counting
51         $cnt = 0;
52
53         // Update all entries
54         foreach (postRequestParameter('sel') as $id => $value) {
55                 // Update database
56                 SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_must_register` SET `field_required`='%s' WHERE `id`=%s AND `field_required` != '%s' LIMIT 1",
57                         array($value, bigintval($id), $value),__FILE__, __LINE__);
58
59                 // Get affected rows
60                 $cnt += SQL_AFFECTEDROWS();
61         } // END - foreach
62
63         // Output message for updated entries
64         loadTemplate('admin_settings_saved', false, getMaskedMessage('REGISTER_ADMIN_CHANGES_SAVED', $cnt));
65 } // END - if
66
67 // List all register values
68 $result = SQL_QUERY("SELECT `id`, `field_name`, `field_required` FROM `{?_MYSQL_PREFIX?}_must_register` ORDER BY `id` ASC", __FILE__, __LINE__);
69 $OUT = '';
70 while ($content = SQL_FETCHARRAY($result)) {
71         // Get language string
72         $content['field_name'] = '{--' . strtoupper($content['field_name']) . '--}';
73
74         // Add more data
75         $content['selection'] = addSelectionBox('yn', $content['field_required'], 'sel[' . $content['id'] . ']');
76
77         // @TODO Move this HTML code into a template
78         $OUT .= loadTemplate('admin_config_register_row', true, $content);
79 } // END - while
80
81 // Free memory
82 SQL_FREERESULT($result);
83
84 // Load template
85 loadTemplate('admin_config_register', false, $OUT);
86
87 // [EOF]
88 ?>