Huge script change, see http://forum.mxchange.org/topic-458.html for details:
[mailer.git] / inc / modules / admin / what-config_register.php
index f7c4016c45b096b477abc9be445544308af324d7..401ea9c85cf1ea83f96abe2ed82c3ef8745b9578 100644 (file)
@@ -17,7 +17,7 @@
  * 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                           *
  * 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();
 }
 
 // Add description as navigation point
-ADD_DESCR('admin', __FILE__);
+addMenuDescription('admin', __FILE__);
 
 // Do we want to save changes?
 if (isFormSent()) {
-       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",
+       foreach (postRequestElement('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, getMessage('REGISTER_ADMIN_CHANGES_SAVED'));
+       loadTemplate('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__);
+$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
@@ -63,7 +62,7 @@ while ($content = SQL_FETCHARRAY($result)) {
 
        // Add more data
        $content['sw']        = $SW;
-       $content['selection'] = ADD_SELECTION('yn', $content['field_required'], "sel[".$content['id']."]");
+       $content['selection'] = addSelectionBox('yn', $content['field_required'], "sel[".$content['id']."]");
 
        // @TODO Move this HTML code into a template
        $OUT .= "<tr>
@@ -81,12 +80,8 @@ while ($content = SQL_FETCHARRAY($result)) {
 // Free memory
 SQL_FREERESULT($result);
 
-// Remember rows in constant
-// @TODO Rewrite this constant
-define('__REGISTER_ROWS', $OUT);
-
 // Load template
-LOAD_TEMPLATE("admin_config_register");
+loadTemplate('admin_config_register', false, $OUT);
 
-//
+// [EOF]
 ?>