A lot CSS classes rewritten, please update all your themes.
[mailer.git] / inc / modules / admin / what-config_beg.php
index b9911aab76fae93cfc6975df3316a0268092af56..c714674259b0fa6163de1462073db7dc3507517d 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 01/09/2005 *
- * ================                             Last change: 01/09/2005 *
+ * Mailer v0.2.1-FINAL                                Start: 01/09/2005 *
+ * ===================                          Last change: 01/09/2005 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : what-config_beg.php                              *
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Bettel-Link 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                           *
+ * 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();
 }
 
 // Add description as navigation point
-ADD_DESCR("admin", basename(__FILE__));
+addMenuDescription('admin', __FILE__);
 
-if (isset($_POST['ok'])) {
+if (isFormSent()) {
        // Translate german decimal commas to computer decimal dots
-       $_POST['beg_points']       = REVERT_COMMA($_POST['beg_points']      );
-       $_POST['beg_points_max']   = REVERT_COMMA($_POST['beg_points_max']  );
-       $_POST['beg_notify_bonus'] = REVERT_COMMA($_POST['beg_notify_bonus']);
+       setPostRequestParameter('beg_points'      , convertCommaToDot(postRequestParameter('beg_points')      ));
+       setPostRequestParameter('beg_points_max'  , convertCommaToDot(postRequestParameter('beg_points_max')  ));
+       setPostRequestParameter('beg_notify_bonus', convertCommaToDot(postRequestParameter('beg_notify_bonus')));
 
        // Save settings
-       ADMIN_SAVE_SETTINGS($_POST);
+       adminSaveSettingsFromPostData();
 
        // Remember new settings
-       $_CONFIG['beg_rallye']        = $_POST['beg_rallye'];
-       $_CONFIG['beg_ral_en_notify'] = $_POST['beg_ral_en_notify'];
-       $_CONFIG['beg_ral_di_notify'] = $_POST['beg_ral_di_notify'];
+       setConfigEntry('beg_rallye'               , postRequestParameter('beg_rallye'));
+       setConfigEntry('beg_rallye_enable_notify' , postRequestParameter('beg_rallye_enable_notify'));
+       setConfigEntry('beg_rallye_disable_notify', postRequestParameter('beg_rallye_disable_notify'));
 } else {
        // Prepare constants for the template
-       define('__BEG_POINTS'           , TRANSLATE_COMMA($_CONFIG['beg_points']      , false));
-       define('__BEG_POINTS_MAX'       , TRANSLATE_COMMA($_CONFIG['beg_points_max']  , false));
-       define('__BEG_NOTIFY_BONUS'     , TRANSLATE_COMMA($_CONFIG['beg_notify_bonus'], false));
-       define('__BEG_TIMEOUT'          , CREATE_TIME_SELECTIONS($_CONFIG['beg_timeout']    , "beg_timeout"    , "Dhm"));
-       define('__BEG_UID_TIMEOUT'      , CREATE_TIME_SELECTIONS($_CONFIG['beg_uid_timeout'], "beg_uid_timeout", "Dhm"));
-       define('__BEG_REMOTE_IP_TIMEOUT', CREATE_TIME_SELECTIONS($_CONFIG['beg_ip_timeout'] , "beg_ip_timeout" , "Dhm"));
-       define('__WAIT_SELECTION'       , CREATE_TIME_SELECTIONS($_CONFIG['beg_notify_wait'], "beg_notify_wait", "ms" ));
-       define('__BEG_RANKS', $_CONFIG['beg_ranks']);
-
-       // Activate / Deactivate beg rallye (Y/N)
-       switch ($_CONFIG['beg_rallye'])
-       {
-       case 'Y':
-               define('__BEG_RALLYE_Y', " checked=\"checked\"");
-               define('__BEG_RALLYE_N', "");
-               break;
-
-       case 'N':
-               define('__BEG_RALLYE_Y', "");
-               define('__BEG_RALLYE_N', " checked=\"checked\"");
-               break;
-       }
-       switch ($_CONFIG['beg_active'])
-       {
-       case 'Y':
-               define('__BEG_ACTIVE_Y', " checked=\"checked\"");
-               define('__BEG_ACTIVE_N', "");
-               break;
+       $content['points']           = translateComma(getConfig('beg_points')      , false);
+       $content['points_max']       = translateComma(getConfig('beg_points_max')  , false);
+       $content['notify_bonus']     = translateComma(getConfig('beg_notify_bonus'), false);
+       $content['timeout']          = createTimeSelections(getConfig('beg_timeout')       , 'beg_timeout'       , 'Dhm');
+       $content['userid_timeout']   = createTimeSelections(getConfig('beg_userid_timeout'), 'beg_userid_timeout', 'Dhm');
+       $content['ip_timeout']       = createTimeSelections(getConfig('beg_ip_timeout')    , 'beg_ip_timeout'    , 'Dhm');
+       $content['wait_selection']   = createTimeSelections(getConfig('beg_notify_wait')   , 'beg_notify_wait'   , 'ms' );
 
-       case 'N':
-               define('__BEG_ACTIVE_Y', "");
-               define('__BEG_ACTIVE_N', " checked=\"checked\"");
-               break;
-       }
-       switch ($_CONFIG['beg_mode'])
-       {
-       case "DIRECT":
-               define('__BEG_MODE_DIRECT', " checked=\"checked\"");
-               define('__BEG_MODE_REF'   , "");
-               break;
+       // Init all Y/N selections
+       foreach (array('rallye', 'active', 'mode', 'rallye_enable_notify', 'rallye_disable_notify', 'new_member_notify', 'include_own') as $entry) {
+               $content[$entry . '_y'] = '';
+               $content[$entry . '_n'] = '';
+               $content[$entry . '_' . strtolower(getConfig('beg_' . $entry))] = ' checked="checked"';
+       } // END - foreach
 
-       case "REF":
-               define('__BEG_MODE_DIRECT', "");
-               define('__BEG_MODE_REF'   , " checked=\"checked\"");
-               break;
-       }
-       switch ($_CONFIG['beg_ral_en_notify'])
-       {
-       case 'Y':
-               define('__BEG_RAL_EN_NOTIFY_Y', " checked=\"checked\"");
-               define('__BEG_RAL_EN_NOTIFY_N', "");
-               break;
+       // Init elements for faker-mode
+       foreach (array('pay_mode_img','pay_mode_js','pay_mode_both','pay_mode_none') as $entry) {
+               $content[$entry] = '';
+       } // END - foreach
 
-       case 'N':
-               define('__BEG_RAL_EN_NOTIFY_Y', "");
-               define('__BEG_RAL_EN_NOTIFY_N', " checked=\"checked\"");
-               break;
-       }
-       switch ($_CONFIG['beg_ral_di_notify'])
-       {
-       case 'Y':
-               define('__BEG_RAL_DI_NOTIFY_Y', " checked=\"checked\"");
-               define('__BEG_RAL_DI_NOTIFY_N', "");
-               break;
+       // Set default faker-mode
+       $content['pay_mode_' . strtolower(getConfig('beg_pay_mode'))] = ' selected="selected"';
 
-       case 'N':
-               define('__BEG_RAL_DI_NOTIFY_Y', "");
-               define('__BEG_RAL_DI_NOTIFY_N', " checked=\"checked\"");
-               break;
-       }
-       switch ($_CONFIG['beg_new_mem_notify'])
-       {
-       case 'Y':
-               define('__BEG_NEW_MEMBER_NOTIFY_Y', " checked=\"checked\"");
-               define('__BEG_NEW_MEMBER_NOTIFY_N', "");
-               break;
+       // Init beg_mode elements
+       foreach (array('direct', 'ref') as $entry) {
+               $content['beg_mode_' . $entry] = '';
+       } // END - foreach
 
-       case 'N':
-               define('__BEG_NEW_MEMBER_NOTIFY_Y', "");
-               define('__BEG_NEW_MEMBER_NOTIFY_N', " checked=\"checked\"");
-               break;
-       }
-       switch ($_CONFIG['beg_include_own'])
-       {
-       case 'Y':
-               define('__BEG_INCLUDE_OWN_Y', " checked=\"checked\"");
-               define('__BEG_INCLUDE_OWN_N', "");
-               break;
+       // Set default mode
+       $content['beg_mode_' . strtolower(getConfig('beg_mode'))] = ' checked="checked"';
 
-       case 'N':
-               define('__BEG_INCLUDE_OWN_Y', "");
-               define('__BEG_INCLUDE_OWN_N', " checked=\"checked\"");
-               break;
-       }
-
-       // Add data to constant __MEMBER_SELECTION
-       define('__MEMBER_SELECTION', ADD_MEMBER_SELECTION_BOX($_CONFIG['beg_uid'], false, true, true, "beg_uid"));
+       // Member selection box
+       $content['form_selection'] = addMemberSelectionBox(getConfig('beg_userid'), false, true, true, 'beg_userid');
 
        // Load form template
-       LOAD_TEMPLATE("admin_config_beg");
+       loadTemplate('admin_config_beg', false, $content);
 }
-//
+
+// [EOF]
 ?>