More rewrites to make use of (cached) wrapper functions
[mailer.git] / inc / modules / admin / what-config_register.php
index 06b5cf4d383170b05014bce0893fabfafc683e48..0d65e88d6fb481cb28e3dfab614f1c61413a358c 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 07/10/2004 *
- * ===============                              Last change: 07/10/2004 *
+ * Mailer v0.2.1-FINAL                                Start: 07/10/2004 *
+ * ===================                          Last change: 07/10/2004 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : what-config_register.php                         *
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Einstellungen fuer das Anmeldeformular           *
  * -------------------------------------------------------------------- *
- *                                                                      *
+ * $Revision::                                                        $ *
+ * $Date::                                                            $ *
+ * $Tag:: 0.2.1-FINAL                                                 $ *
+ * $Author::                                                          $ *
+ * Needs to be in all Files and every File needs "svn propset           *
+ * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
  * -------------------------------------------------------------------- *
- * Copyright (c) 2003 - 2008 by Roland Haeder                           *
+ * Copyright (c) 2003 - 2009 by Roland Haeder                           *
+ * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
  * For more information visit: http://www.mxchange.org                  *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
  ************************************************************************/
 
 // Some security stuff...
-if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
-       require($INC);
-}
+if ((!defined('__SECURITY')) || (!isAdmin())) {
+       die();
+} // END - if
 
 // Add description as navigation point
-ADD_DESCR("admin", basename(__FILE__));
+addMenuDescription('admin', __FILE__);
 
 // Do we want to save changes?
-if (isset($_POST['ok'])) {
-       foreach ($_POST['sel'] as $id => $value) {
-               $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_must_register SET field_required='%s' WHERE id=%s AND field_required != '%s' LIMIT 1",
-                array($value, bigintval($id), $value),__FILE__, __LINE__);
-       }
-       LOAD_TEMPLATE("admin_settings_saved", false, REGISTER_ADMIN_CHANGES_SAVED);
-}
+if (isFormSent()) {
+       // Begin counting
+       $cnt = 0;
+
+       // Update all entries
+       foreach (postRequestParameter('sel') as $id => $value) {
+               // Update database
+               SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_must_register` SET `field_required`='%s' WHERE `id`=%s AND `field_required` != '%s' LIMIT 1",
+                       array($value, bigintval($id), $value),__FILE__, __LINE__);
+
+               // Get affected rows
+               $cnt += SQL_AFFECTEDROWS();
+       } // END - foreach
+
+       // Output message for updated entries
+       loadTemplate('admin_settings_saved', false, getMaskedMessage('REGISTER_ADMIN_CHANGES_SAVED', $cnt));
+} // END - if
 
 // List all register values
-$result = SQL_QUERY("SELECT id, field_name, field_required FROM "._MYSQL_PREFIX."_must_register ORDER BY id", __FILE__, __LINE__);
-$SW = 2; $OUT = "";
-while (list($id, $name, $required) = SQL_FETCHROW($result)) {
-       $eval = "\$name = ".strtoupper($name).";";
-       eval($eval);
-       $OUT .= "<TR>
-  <TD align=\"center\" class=\"switch_sw".$SW." bottom2 right2\">".$id."</TD>
-  <TD class=\"switch_sw".$SW." bottom2 right2\">&nbsp;&nbsp;".$name."</TD>
-  <TD align=\"center\" class=\"switch_sw".$SW." bottom2 right2\">
-    ".ADD_SELECTION("yn", $required, "sel[".$id."]")."
-  </TD>
-</TR>\n";
-       $SW = 3 - $SW;
-}
+$result = SQL_QUERY("SELECT `id`, `field_name`, `field_required` FROM `{?_MYSQL_PREFIX?}_must_register` ORDER BY `id` ASC", __FILE__, __LINE__);
+$OUT = '';
+while ($content = SQL_FETCHARRAY($result)) {
+       // Get language string
+       $content['field_name'] = '{--' . strtoupper($content['field_name']) . '--}';
+
+       // Add more data
+       $content['selection'] = addSelectionBox('yn', $content['field_required'], 'sel[' . $content['id'] . ']');
+
+       // @TODO Move this HTML code into a template
+       $OUT .= loadTemplate('admin_config_register_row', true, $content);
+} // END - while
 
 // Free memory
 SQL_FREERESULT($result);
 
-// Remember rows in constant
-define('__REGISTER_ROWS', $OUT);
-
 // Load template
-LOAD_TEMPLATE("admin_config_register");
+loadTemplate('admin_config_register', false, $OUT);
 
-//
+// [EOF]
 ?>