芝麻web文件管理V1.00
编辑当前文件:/home/freeclou/optimyar/wp-content/plugins/ithemes-security-pro/core/modules/file-change/logs.php
display_name; } else { $by = "#{$code_data[0]}"; } $entry['description'] = sprintf( esc_html__( 'Scan Cancelled by %s', 'it-l10n-ithemes-security-pro' ), $by ); } else { $entry['description'] = esc_html__( 'Scan Failed', 'it-l10n-ithemes-security-pro' ); } } elseif ( 'rescheduling' === $code ) { if ( isset( $code_data[0] ) && 'no-lock' === $code_data[0] ) { $entry['description'] = esc_html__( 'Rescheduling: No Lock', 'it-l10n-ithemes-security-pro' ); } else { $entry['description'] = esc_html__( 'Rescheduling', 'it-l10n-ithemes-security-pro' ); } } $entry['remote_ip'] = ''; return $entry; } public function filter_entry_for_details_display( $details, $entry, $code, $code_data ) { $entry = $this->filter_entry_for_list_display( $entry, $code, $code_data ); $details['module']['content'] = $entry['module_display']; $details['description']['content'] = ! empty( $entry['description'] ) ? $entry['description'] : $code; if ( 'changes-found' === $code || 'no-changes-found' === $code ) { $details['memory'] = array( 'header' => esc_html__( 'Memory Used', 'it-l10n-ithemes-security-pro' ), 'content' => sprintf( esc_html_x( '%s MB', 'Megabytes of memory used', 'it-l10n-ithemes-security-pro' ), $entry['data']['memory'] ), ); if ( ! empty( $entry['data']['memory_peak'] ) ) { $details['memory_total'] = array( 'header' => esc_html__( 'Total Memory', 'it-l10n-ithemes-security-pro' ), 'content' => sprintf( esc_html_x( '%s MB', 'Megabytes of memory used', 'it-l10n-ithemes-security-pro' ), $entry['data']['memory_peak'] ), ); } $types = array( 'added' => esc_html__( 'Added', 'it-l10n-ithemes-security-pro' ), 'removed' => esc_html__( 'Removed', 'it-l10n-ithemes-security-pro' ), 'changed' => esc_html__( 'Changed', 'it-l10n-ithemes-security-pro' ), ); foreach ( $types as $type => $header ) { $details[ $type ] = array( 'header' => $header, 'content' => '
' . implode( "\n", array_keys( $entry['data'][ $type ] ) ) . '
', ); } } unset( $details['host'] ); return $details; } public function filter_highlight_title( $title, $entry ) { return esc_html__( 'Solid Security noticed file changes in your WordPress site.', 'it-l10n-ithemes-security-pro' ); } public function filter_highlight_message( $title, $entry ) { return sprintf( esc_html__( 'Please %1$sreview the logs%2$s to make sure your system has not been compromised.', 'it-l10n-ithemes-security-pro' ), '
', '
' ); } } new ITSEC_File_Change_Logs();