X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-logs.php;h=23c10716c380ae20cdf4bae5db7143795314d5f4;hp=14ab44f1151343e44e64cff93e56d3b5ebbec1e0;hb=155492a5b96cec674846973a8524238b0365a848;hpb=357b2ca133fc1f89db74097955c366cb4bee6996 diff --git a/inc/modules/admin/what-logs.php b/inc/modules/admin/what-logs.php index 14ab44f115..23c10716c3 100644 --- a/inc/modules/admin/what-logs.php +++ b/inc/modules/admin/what-logs.php @@ -1,7 +1,7 @@ "); - $handle = @opendir($dir) or mxchange_die("Cannot open directory ".LOGS_BASE."!"); - while($file = @readdir($handle)) { - // We currenly only like files with "access" as prefix, should be more flexible! - if (substr($file, 0, 6) == "access") { - // Okay, let us print it out - OUTPUT_HTML("
  • ".$file."
  • "); - } - } - @closedir($handle); - OUTPUT_HTML(""); - } - else - { + // Is the directory there? + if (isDirectory(getPath() . getConfig('logs_base'))) { + // Logs directory does exist so begin the list + outputHtml('
      '); + + // Read all files + foreach (getArrayFromDirectory(getConfig('logs_base'), 'access') as $file) { + // Cut dirname away + $file = basename($file); + + // Okay, add it + outputHtml('
    1. ' . $file . '
    2. '); + } // END - foreach + + // Finish list + outputHtml('
    '); + } else { // logs directory does not exist - LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_LOGS_DIR_404_1.LOGS_BASE.ADMIN_LOGS_DIR_404_2); + displayMessage('{--ADMIN_LOGS_DIR_404--}'); } } -// +// [EOF] ?>