*/ class ServerInfo_Error_Logs_Details { public function __construct() { $this->init(); } public function init() { ?>



' . esc_html( $file ) . ''; ?>

exists( $file ) ) { $content = $wp_filesystem->get_contents( $file ); // Check if the file content is empty if ( $wp_filesystem->get_contents( $file ) == '' ) { $content = esc_html__( 'File content is empty. No errors logged.', 'adminify' ); } } return $content; } }