]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-config_transfer.php
Rewrote 'we' word a little, rewrote mail order to use SQL_INSERTID() instead of anoth...
[mailer.git] / inc / modules / admin / what-config_transfer.php
index 62e14fe2cb50ed4b0a049c3ed05cd756ff911906..e905ac3300debd444c4e5a2ac0d00302c9e6c2e8 100644 (file)
@@ -1,24 +1,23 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 10/06/2004 *
- * ================                             Last change: 10/06/2004 *
+ * Mailer v0.2.1-FINAL                                Start: 10/06/2004 *
+ * ===================                          Last change: 10/06/2004 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : what-config_transfer.php                         *
  * -------------------------------------------------------------------- *
  * Short description : Configuration of transfer system                 *
  * -------------------------------------------------------------------- *
- * Kurzbeschreibung  : Konfiguration des Punktetransfersystems          *
+ * Kurzbeschreibung  : Konfiguration des Punktetransfer-Systems         *
  * -------------------------------------------------------------------- *
  * $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                  *
+ * Copyright (c) 2003 - 2009 by Roland Haeder                           *
+ * Copyright (c) 2009 - 2012 by Mailer Developer Team                   *
+ * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
  * it under the terms of the GNU General Public License as published by *
  ************************************************************************/
 
 // 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();
+} // END - if
 
 // Add description as navigation point
-ADD_DESCR('admin', __FILE__);
+addYouAreHereLink('admin', __FILE__);
 
-if (IS_FORM_SENT()) {
+if (isFormSent()) {
        // Save settings...
-       ADMIN_SAVE_SETTINGS_POST();
+       adminSaveSettingsFromPostData();
+} else {
+       // Time selection box
+       $content['age_selection']     = createConfigurationTimeSelections('transfer_age'    , 'MWDh');
+       $content['timeout_selection'] = createConfigurationTimeSelections('transfer_timeout', 'MWDh');
+
+       // Load template
+       loadTemplate('admin_config_transfer', false, $content);
 }
 
-// Prepare constants for template
-define('__TRANS_MAX_VALUE'    , getConfig(('transfer_max')));
-define('__TRANS_BALANCE_VALUE', getConfig(('transfer_balance')));
-define('__TRANS_CODE_VALUE'   , getConfig(('transfer_code')));
-
-// Autppurge expired transfer entries?
-switch (getConfig('ap_transfer')) {
-       case 'Y':
-               define('__YES_AP', " selected=\"selected\"");
-               define('__NO_AP', '');
-               break;
-
-       case 'N':
-               define('__YES_AP', '');
-               define('__NO_AP', " selected=\"selected\"");
-               break;
-}
-
-// Time selection box
-define('__TRANS_AGE_SELECTION'    , CREATE_TIME_SELECTIONS(getConfig('transfer_age'), "transfer_age", "MWDh"));
-define('__TRANS_TIMEOUT_SELECTION', CREATE_TIME_SELECTIONS(getConfig('transfer_timeout'), "transfer_timeout", "MWDh"));
-
-// Load template
-LOAD_TEMPLATE("admin_config_transfer");
-
-//
+// [EOF]
 ?>