HEX
Server: Apache
System: Linux webd001.cluster127.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User: mciraet (192513)
PHP: 8.2.31
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/mciraet/www/wp-content/plugins/polylang-wc/src/admin/view-wizard-status-report.php
<?php
/**
 * Adds status report for translations of the default pages.
 *
 * @package Polylang-WC
 *
 * @since 1.4
 *
 * @var PLLWC_Admin_Status_Reports $this `PLLWC_Admin_Status_Reports` object.
 */

defined( 'ABSPATH' ) || exit; // Don't access directly.
?>
<table class="wc_status_table widefat" cellspacing="0">
	<thead>
		<tr>
			<th colspan="3" data-export-label="WC Pages Translations"><h2><?php esc_html_e( 'WooCommerce pages translations', 'polylang-wc' ); ?></h2></th>
		</tr>
	</thead>
	<tbody>
		<?php
		foreach ( $this->get_woocommerce_pages_status()->pages as $verified_page ) {
			?>
			<tr>
				<td><?php echo esc_html( $verified_page->page_name ); ?>:</td>
				<td>
				<?php if ( $verified_page->is_error ) : ?>
					<mark class="error"><span class="dashicons dashicons-warning"></span> <?php echo esc_html( $verified_page->error_message ); ?></mark>
				<?php else : ?>
						<mark class="yes"><span class="dashicons dashicons-yes"></span></mark>
				<?php endif; ?>
				</td>
			</tr>
			<?php
		}
		?>
	</tbody>
</table>