]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-config_stats.php
Updated copyright notice as there are changes in this year
[mailer.git] / inc / modules / admin / what-config_stats.php
index ece898a4d2fae3c15df348881d3ed53c5b370449..8d486bfff7f23137167ef3bfd8725ab47306b4f0 100644 (file)
@@ -1,19 +1,23 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 04/09/2004 *
- * ================                             Last change: 04/09/2004 *
+ * Mailer v0.2.1-FINAL                                Start: 04/09/2004 *
+ * ===================                          Last change: 04/09/2004 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : what-stats.php                                   *
  * -------------------------------------------------------------------- *
  * Short description : Setup default statistics mode                    *
  * -------------------------------------------------------------------- *
- * Kurzbeschreibung  : Standart Modus der Statistiken einstellen        *
+ * Kurzbeschreibung  : Standard Modus der Statistiken einstellen        *
  * -------------------------------------------------------------------- *
- *                                                                      *
+ * $Revision::                                                        $ *
+ * $Date::                                                            $ *
+ * $Tag:: 0.2.1-FINAL                                                 $ *
+ * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
- * 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 - 2013 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__);
 
 // Was the form submitted?
-if (IS_FORM_SENT()) {
+if (isFormSent('save_config')) {
        // Save settings
-       ADMIN_SAVE_SETTINGS_POST();
+       adminSaveSettingsFromPostData();
 } else {
        // Guest stats
-       switch (getConfig('guest_stats'))
-       {
-       case "MEMBERS":
-               define('__MEMBERS_RADIO', " selected=\"selected\"");
-               define('__MODULES_RADIO', "");
-               define('__INACTIVE_RADIO', "");
-               break;
-
-       case "MODULES":
-               define('__MEMBERS_RADIO', "");
-               define('__MODULES_RADIO', " selected=\"selected\"");
-               define('__INACTIVE_RADIO', "");
-               break;
-
-       case "INACTIVE":
-               define('__MEMBERS_RADIO', "");
-               define('__MODULES_RADIO', "");
-               define('__INACTIVE_RADIO', " selected=\"selected\"");
-               break;
-       }
+       foreach (array('members','modules','inactive') as $entry) {
+               $content['guest_stats_' . $entry] = '';
+       } // END - foreach
 
-       // Max stats entries per page
-       define('__STATS_LIMIT', getConfig('stats_limit'));
+       // Prepare selected entry
+       $content['guest_stats_' . strtolower(getConfig('guest_stats'))]  = ' selected="selected"';
 
        // Load template
-       LOAD_TEMPLATE("admin_config_stats");
+       loadTemplate('admin_config_stats', FALSE, $content);
 }
 
-//
+// [EOF]
 ?>