]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-config_autopurge.php
Some menu points renamed to not conflict with configuration menus:
[mailer.git] / inc / modules / admin / what-config_autopurge.php
index f0f27c04358b2cd0d97606f9b2f8eb7379520c18..fb4d44811eee0f48f0725fad277ee85a904ec68f 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 06/25/2004 *
- * ================                             Last change: 05/05/2005 *
+ * Mailer v0.2.1-FINAL                                Start: 06/25/2004 *
+ * ===================                          Last change: 05/05/2005 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : what-autopurge.php                               *
  * $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 (isFormSent()) {
+if (isFormSent('save_config')) {
        // Data was submitted so we store it
-       ADMIN_SAVE_SETTINGS_POST();
+       adminSaveSettingsFromPostData();
 } else {
        // Output de-/activation selections
-       define('__AP_INACTIVE_SELECTION'   , ADD_SELECTION('yn', getConfig('autopurge_inactive')   , "autopurge_inactive"));
-       define('__AP_UNCONFIRMED_SELECTION', ADD_SELECTION('yn', getConfig('autopurge_unconfirmed'), "autopurge_unconfirmed"));
-       define('__AP_TASKS_SELECTION'      , ADD_SELECTION('yn', getConfig('ap_tasks')             , "autopurge_tasks"));
-       define('__AP_DEL_MAILS_SELECTION'  , ADD_SELECTION('yn', getConfig('ap_del_mails')         , "ap_del_mails"));
+       $content['ap_inactive_selection']    = addSelectionBox('yn', getAutopurgeInactive()   , 'autopurge_inactive');
+       $content['ap_unconfirmed_selection'] = addSelectionBox('yn', getConfig('autopurge_unconfirmed'), 'autopurge_unconfirmed');
+       $content['ap_tasks_selection']       = addSelectionBox('yn', getConfig('autopurge_tasks')      , 'autopurge_tasks');
+       $content['ap_del_mails_selection']   = addSelectionBox('yn', getConfig('ap_del_mails')         , 'ap_del_mails');
 
        // Output notification selections
-       define('__AP_NOTIFY_INACTIVE'      , ADD_SELECTION('yn', getConfig('ap_in_notify')   , "ap_in_notify"));
-       define('__AP_NOTIFY_UNCONFIRMED'   , ADD_SELECTION('yn', getConfig('ap_un_notify')   , "ap_un_notify"));
-       define('__AP_NOTIFY_TASKS'         , ADD_SELECTION('yn', getConfig('ap_tasks_notify'), "ap_tasks_notify"));
-       define('__AP_NOTIFY_DEL_MAILS'     , ADD_SELECTION('yn', getConfig('ap_dm_notify')   , "ap_dm_notify"));
+       $content['ap_notify_inactive']    = addSelectionBox('yn', getConfig('ap_in_notify')   , 'ap_in_notify');
+       $content['ap_notify_unconfirmed'] = addSelectionBox('yn', getConfig('ap_un_notify')   , 'ap_un_notify');
+       $content['ap_notify_tasks']       = addSelectionBox('yn', getConfig('ap_tasks_notify'), 'ap_tasks_notify');
+       $content['ap_notify_del_mails']   = addSelectionBox('yn', getConfig('ap_dm_notify')   , 'ap_dm_notify');
 
        // Output time selection boxes
-       define('__AP_IN_SINCE'      , createTimeSelections(getConfig('ap_inactive_since'), "ap_inactive_since"  , "MWDh"));
-       define('__AP_IN_TIME'       , createTimeSelections(getConfig('ap_in_time')       , "ap_inactive_time"   , "MWDh"));
-       define('__AP_UN_TIME'       , createTimeSelections(getConfig('ap_un_time')       , "ap_unconfirmed_time", "MWDh"));
-       define('__AP_TASK_TIME'     , createTimeSelections(getConfig('ap_tasks_time')    , "ap_tasks_time"      , "MWDh"));
-       define('__AP_DEL_MAILS_TIME', createTimeSelections(getConfig('ap_dm_timeout')    , "ap_dm_timeout"      , "MWDh"));
+       $content['ap_in_since']          = createConfigurationTimeSelections('ap_inactive_since'   , 'MWDh');
+       $content['ap_in_time']           = createConfigurationTimeSelections('ap_inactive_time'    , 'MWDh');
+       $content['ap_un_time']           = createConfigurationTimeSelections('ap_unconfirmed_time' , 'MWDh');
+       $content['ap_task_time']         = createConfigurationTimeSelections('ap_tasks_time'       , 'MWDh');
+       $content['ap_del_mails_time']    = createConfigurationTimeSelections('ap_dm_timeout'       , 'MWDh');
+       $content['ap_server_name_since'] = createConfigurationTimeSelections('ap_server_name_since', 'MWDh');
 
        // Mail confirmation links
-       define('_CFG_AUTO_PURGE', createTimeSelections(getConfig('auto_purge'), "auto_purge", "MWD"));
-       if (getConfig('auto_purge_active') != 'Y') {
-               define('_CFG_AP_ACTIVE_N', ' checked="checked"');
-               define('_CFG_AP_ACTIVE_Y', '');
-       } else {
-               define('_CFG_AP_ACTIVE_N', '');
-               define('_CFG_AP_ACTIVE_Y', ' checked="checked"');
-       }
+       $content['auto_purge'] = createConfigurationTimeSelections('auto_purge', 'MWD');
 
        // Output template
-       LOAD_TEMPLATE("admin_config_autopurge");
+       loadTemplate('admin_config_autopurge', FALSE, $content);
 }
-//
+
+// [EOF]
 ?>