fooRequestElementBar() functions renamed, adding of request parameters added:
[mailer.git] / inc / modules / admin / what-logs.php
index 9af39581e6650fe458c2e4618d88603683ee522f..93a38da324f25b7af74d4b7ab5415f4564e31d61 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 11/15/2003 *
- * ===============                              Last change: 04/02/2004 *
+ * Mailer v0.2.1-FINAL                                Start: 11/15/2003 *
+ * ===================                          Last change: 04/02/2004 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : what-logs.php                                    *
@@ -17,7 +17,7 @@
  * 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__);
 
-if (REQUEST_ISSET_GET('access')) {
+if (isGetRequestParameterSet('access')) {
        // Secure input and construct FQFN
-       $access = SQL_ESCAPE(strip_tags(REQUEST_GET('access')));
-       $target = sprintf("%slogs/%s", constant('PATH'), $access);
+       $access = SQL_ESCAPE(secureString(getRequestParameter('access')));
+       $target = sprintf("%slogs/%s", getConfig('PATH'), $access);
 
        // Is the file valid and readable?
        if (isFileReadable($target)) {
@@ -73,10 +72,10 @@ if (REQUEST_ISSET_GET('access')) {
                        sendHeader('Content-Type: text/plain');
                } else {
                        // Restore old content
-                       OUTPUT_HTML($OUTPUT);
+                       outputHtml($OUTPUT);
 
                        // Output message
-                       LOAD_TEMPLATE('admin_settings_saved', false, sprintf(getMessage('ADMIN_UNKNOWN_LOGFILE_FORMAT'), $access));
+                       loadTemplate('admin_settings_saved', false, getMaskedMessage('ADMIN_UNKNOWN_LOGFILE_FORMAT', $access));
                        return;
                }
 
@@ -85,13 +84,13 @@ if (REQUEST_ISSET_GET('access')) {
                shutdown();
        } else {
                // Not readable!
-               LOAD_TEMPLATE('admin_settings_saved', false, sprintf(getMessage('LOGFILE_NOT_READABLE'), $access));
+               loadTemplate('admin_settings_saved', false, getMaskedMessage('LOGFILE_NOT_READABLE', $access));
        }
 } else {
        // Is the directory there?
-       if (isDirectory(constant('PATH') . getConfig('logs_base'))) {
+       if (isDirectory(getConfig('PATH') . getConfig('logs_base'))) {
                // Logs directory does exist so begin the list
-               OUTPUT_HTML('<ol>');
+               outputHtml('<ol>');
 
                // Read all files
                $files = getArrayFromDirectory(getConfig('logs_base'), 'access');
@@ -102,14 +101,14 @@ if (REQUEST_ISSET_GET('access')) {
                        $file = basename($file);
 
                        // Okay, add it
-                       OUTPUT_HTML("<li><a href=\"{!URL!}/modules.php?module=admin&amp;what=".getWhat()."&amp;access=".urlencode($file)."\">".$file."</a></li>");
+                       outputHtml('<li><a href="{%url=modules.php?module=admin&amp;what=' . getWhat() . '&amp;access=' . urlencode($file) . '%}">' . $file . '</a></li>');
                } // END - foreach
 
                // Finish list
-               OUTPUT_HTML('</ol>');
+               outputHtml('</ol>');
        } else {
                // logs directory does not exist
-               LOAD_TEMPLATE('admin_settings_saved', false, sprintf(getMessage('ADMIN_LOGS_DIR_404'), getConfig('logs_base')));
+               loadTemplate('admin_settings_saved', false, getMessage('ADMIN_LOGS_DIR_404'));
        }
 }