__('The following files were added to your website.', 'all-in-one-wp-security-and-firewall'), 'files_removed' => __('The following files were removed from your website.', 'all-in-one-wp-security-and-firewall'), 'files_changed' => __('The following files were changed on your website.', 'all-in-one-wp-security-and-firewall') ); foreach ($file_change_types as $type => $description) { if (empty($last_scan_results[$type])) continue; echo '
' . $description . '
'; $output = '
'; $output .= ''; $output .= ''; $output .= ''; $output .= ''; $output .= ''; $output .= ''; $output .= ''; $output .= ''; foreach ($last_scan_results[$type] as $key => $value) { $output .= ''; $output .= ''; $file_size = AIOWPSecurity_Utility::convert_numeric_size_to_text($value['filesize']); $output .= ''; $last_modified = AIOWPSecurity_Utility::convert_timestamp($value['last_modified']); $output .= ''; $output .= ''; } $output .= '
' . __('File', 'all-in-one-wp-security-and-firewall') . '' . __('File size', 'all-in-one-wp-security-and-firewall') . '' . __('File modified', 'all-in-one-wp-security-and-firewall') . '
' . esc_html($key) . '' . esc_html($file_size) . '' . esc_html($last_modified) . '
'; $output .= '
'; echo $output; echo '
'; } ?>