]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-config_register.php
Damn typo fixed... ;-)
[mailer.git] / inc / modules / admin / what-config_register.php
index 3dca07b7c99bfbae3717f3603c2097ef148d3576..9c49849aa0755e3bec7e197e8b8e5614e48d06ad 100644 (file)
  * -------------------------------------------------------------------- *
  * 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                           *
  * For more information visit: http://www.mxchange.org                  *
  ************************************************************************/
 
 // Some security stuff...
-if ((ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) || (!IS_ADMIN()))
-{
+if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
        $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
        require($INC);
 }
 
 // Add description as navigation point
-ADD_DESCR("admin", basename(__FILE__));
+ADD_DESCR("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=%d AND field_required != '%s' LIMIT 1",
-                array($value, bigintval($id), $value),__FILE__, __LINE__);
+if (IS_FORM_SENT()) {
+       foreach (REQUEST_POST('sel') as $id => $value) {
+               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);
+       LOAD_TEMPLATE("admin_settings_saved", false, getMessage('REGISTER_ADMIN_CHANGES_SAVED'));
 }
 
 // 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";
+$result = SQL_QUERY("SELECT id, field_name, field_required FROM `{!_MYSQL_PREFIX!}_must_register` ORDER BY `id`", __FILE__, __LINE__);
+$OUT = ""; $SW = 2;
+while ($content = SQL_FETCHARRAY($result)) {
+       // Get language string
+       $content['field_name'] =  getMessage(strtoupper($content['field_name']));
+
+       // Add more data
+       $content['sw']        = $SW;
+       $content['seleciton'] = ADD_SELECTION("yn", $content['field_required'], "sel[".$content['id']."]");
+
+       // @TODO Move this HTML code into a template
+       $OUT .= "<tr>
+  <td align=\"center\" class=\"switch_sw".$content['sw']." bottom2 right2\">".$content['id']."</td>
+  <td class=\"switch_sw".$content['sw']." bottom2 right2\">&nbsp;&nbsp;".$content['field_name']."</td>
+  <td align=\"center\" class=\"switch_sw".$content['sw']." bottom2 right2\">
+    ".$content['selection']."
+  </td>
+</tr>\n";
+
+       // Switch color
        $SW = 3 - $SW;
 }
 
@@ -73,6 +82,7 @@ while (list($id, $name, $required) = SQL_FETCHROW($result))
 SQL_FREERESULT($result);
 
 // Remember rows in constant
+// @TODO Rewrite this constant
 define('__REGISTER_ROWS', $OUT);
 
 // Load template