]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-config_register.php
New method generateExtensionInactiveMessage() introduced
[mailer.git] / inc / modules / admin / what-config_register.php
index 0a915107d1b2143055369f3e5ecc15d6da2babd5..f7c4016c45b096b477abc9be445544308af324d7 100644 (file)
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Einstellungen fuer das Anmeldeformular           *
  * -------------------------------------------------------------------- *
- * $Revision:: 856                                                    $ *
- * $Date:: 2009-03-06 20:24:32 +0100 (Fr, 06. Mär 2009)              $ *
+ * $Revision::                                                        $ *
+ * $Date::                                                            $ *
  * $Tag:: 0.2.1-FINAL                                                 $ *
- * $Author:: stelzi                                                   $ *
+ * $Author::                                                          $ *
  * Needs to be in all Files and every File needs "svn propset           *
  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
  * -------------------------------------------------------------------- *
 
 // Some security stuff...
 if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
+       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php';
        require($INC);
 }
 
 // Add description as navigation point
-ADD_DESCR("admin", __FILE__);
+ADD_DESCR('admin', __FILE__);
 
 // Do we want to save changes?
-if (IS_FORM_SENT()) {
+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",
-                       array($value, bigintval($id), $value),__FILE__, __LINE__);
+               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'));
+       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__);
-$OUT = ""; $SW = 2;
+$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']."]");
+       $content['selection'] = ADD_SELECTION('yn', $content['field_required'], "sel[".$content['id']."]");
 
        // @TODO Move this HTML code into a template
        $OUT .= "<tr>