X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=inline;f=inc%2Fmodules%2Fadmin%2Fwhat-logs.php;h=b4e22c82340c6de86eea4b4dc00be395e281e6d1;hb=f3d03c8c015fe8175b72a6a84c01a109622fa268;hp=c229c552f28c4b83152ff08644d799773959f1b6;hpb=27f65d023a3388a8bd85be8ee5991f776f541847;p=mailer.git diff --git a/inc/modules/admin/what-logs.php b/inc/modules/admin/what-logs.php index c229c552f2..b4e22c8234 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(""); + // Is the directory there? + if (isDirectory(getConfig('PATH') . getConfig('logs_base'))) { + // Logs directory does exist so begin the list + outputHtml('
      '); + + // Read all files + $files = getArrayFromDirectory(getConfig('logs_base'), 'access'); + + // And walk through them + foreach ($files 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); + loadTemplate('admin_settings_saved', false, getMessage('ADMIN_LOGS_DIR_404')); } } -// +// [EOF] ?>