]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-config_stats.php
fooRequestElementBar() functions renamed, adding of request parameters added:
[mailer.git] / inc / modules / admin / what-config_stats.php
index ece898a4d2fae3c15df348881d3ed53c5b370449..0d2734633d1d8a55c8425c0a2c87081a7bf91a43 100644 (file)
@@ -1,7 +1,7 @@
 <?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                                   *
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Standart Modus der Statistiken 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                           *
  * 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", __FILE__);
+addMenuDescription('admin', __FILE__);
 
 // Was the form submitted?
-if (IS_FORM_SENT()) {
+if (isFormSent()) {
        // 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]
 ?>