0beaf4ddbb3e3a30d439710ce4e803663dc30c67
[mailer.git] / inc / modules / admin / what-config_autopurge.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 06/25/2004 *
4  * ===================                          Last change: 05/05/2005 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-autopurge.php                               *
8  * -------------------------------------------------------------------- *
9  * Short description : AutoPurge configuration                          *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : AutoPurge-Konfiguration                          *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * -------------------------------------------------------------------- *
18  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
19  * Copyright (c) 2009 - 2012 by Mailer Developer Team                   *
20  * For more information visit: http://mxchange.org                      *
21  *                                                                      *
22  * This program is free software; you can redistribute it and/or modify *
23  * it under the terms of the GNU General Public License as published by *
24  * the Free Software Foundation; either version 2 of the License, or    *
25  * (at your option) any later version.                                  *
26  *                                                                      *
27  * This program is distributed in the hope that it will be useful,      *
28  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
29  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
30  * GNU General Public License for more details.                         *
31  *                                                                      *
32  * You should have received a copy of the GNU General Public License    *
33  * along with this program; if not, write to the Free Software          *
34  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
35  * MA  02110-1301  USA                                                  *
36  ************************************************************************/
37
38 // Some security stuff...
39 if ((!defined('__SECURITY')) || (!isAdmin())) {
40         die();
41 } // END - if
42
43 // Add description as navigation point
44 addYouAreHereLink('admin', __FILE__);
45
46 if (isFormSent()) {
47         // Data was submitted so we store it
48         adminSaveSettingsFromPostData();
49 } else {
50         // Output de-/activation selections
51         $content['ap_inactive_selection']    = addSelectionBox('yn', getAutopurgeInactive()   , 'autopurge_inactive');
52         $content['ap_unconfirmed_selection'] = addSelectionBox('yn', getConfig('autopurge_unconfirmed'), 'autopurge_unconfirmed');
53         $content['ap_tasks_selection']       = addSelectionBox('yn', getConfig('autopurge_tasks')      , 'autopurge_tasks');
54         $content['ap_del_mails_selection']   = addSelectionBox('yn', getConfig('ap_del_mails')         , 'ap_del_mails');
55
56         // Output notification selections
57         $content['ap_notify_inactive']    = addSelectionBox('yn', getConfig('ap_in_notify')   , 'ap_in_notify');
58         $content['ap_notify_unconfirmed'] = addSelectionBox('yn', getConfig('ap_un_notify')   , 'ap_un_notify');
59         $content['ap_notify_tasks']       = addSelectionBox('yn', getConfig('ap_tasks_notify'), 'ap_tasks_notify');
60         $content['ap_notify_del_mails']   = addSelectionBox('yn', getConfig('ap_dm_notify')   , 'ap_dm_notify');
61
62         // Output time selection boxes
63         $content['ap_in_since']       = createConfigurationTimeSelections('ap_inactive_since'  , 'MWDh');
64         $content['ap_in_time']        = createConfigurationTimeSelections('ap_inactive_time'   , 'MWDh');
65         $content['ap_un_time']        = createConfigurationTimeSelections('ap_unconfirmed_time', 'MWDh');
66         $content['ap_task_time']      = createConfigurationTimeSelections('ap_tasks_time'      , 'MWDh');
67         $content['ap_del_mails_time'] = createConfigurationTimeSelections('ap_dm_timeout'      , 'MWDh');
68
69         // Mail confirmation links
70         $content['auto_purge'] = createConfigurationTimeSelections('auto_purge', 'MWD');
71
72         // Output template
73         loadTemplate('admin_config_autopurge', FALSE, $content);
74 }
75
76 // [EOF]
77 ?>