]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-config_birthday.php
A lot rewrites from double-quote to single-quote, some fixes for extension handling...
[mailer.git] / inc / modules / admin / what-config_birthday.php
index 0eedd1e1a201b74377e3374bb6e1f1caa18fdef8..bbfc37fae71121336197b0d5760a536b60a624a9 100644 (file)
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Geburtstagsgruesse einstellen                    *
  * -------------------------------------------------------------------- *
- *                                                                      *
+ * $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                  *
@@ -38,36 +43,36 @@ if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
 }
 
 // Add description as navigation point
-ADD_DESCR("admin", basename(__FILE__));
+ADD_DESCR('admin', __FILE__);
 
-if (isset($_POST['ok'])) {
+if (IS_FORM_SENT()) {
        // Save configuration
-       ADMIN_SAVE_SETTINGS($_POST);
+       ADMIN_SAVE_SETTINGS_POST();
 } else {
        // Prepare data for the template
-       define('__POINTS_VALUE', $_CONFIG['birthday_points']);
-       switch ($_CONFIG['birthday_active'])
+       define('__POINTS_VALUE', getConfig('birthday_points'));
+       switch (getConfig('birthday_active'))
        {
        case 'Y':
-               define('__BIRTHDAY_ACTIVE_Y', " checked");
-               define('__BIRTHDAY_ACTIVE_N', "");
+               define('__BIRTHDAY_ACTIVE_Y', ' chkecked="checked"');
+               define('__BIRTHDAY_ACTIVE_N', '');
                break;
 
        case 'N':
-               define('__BIRTHDAY_ACTIVE_Y', "");
-               define('__BIRTHDAY_ACTIVE_N', " checked");
+               define('__BIRTHDAY_ACTIVE_Y', '');
+               define('__BIRTHDAY_ACTIVE_N', ' chkecked="checked"');
                break;
        }
-       switch ($_CONFIG['birthday_mode'])
+       switch (getConfig('birthday_mode'))
        {
        case "DIRECT":
-               define('__BIRTHDAY_MODE_DIRECT', " checked");
-               define('__BIRTHDAY_MODE_REF'   , "");
+               define('__BIRTHDAY_MODE_DIRECT', ' chkecked="checked"');
+               define('__BIRTHDAY_MODE_REF'   , '');
                break;
 
        case "REF":
-               define('__BIRTHDAY_MODE_DIRECT', "");
-               define('__BIRTHDAY_MODE_REF'   , " checked");
+               define('__BIRTHDAY_MODE_DIRECT', '');
+               define('__BIRTHDAY_MODE_REF'   , ' chkecked="checked"');
                break;
        }