# usc-e-shop/2.12.4/includes/admin_system_status.php

Welcart e-Commerce, version 2.12.4. 794 lines.

- Page: https://pluginprobe.com/plugins/usc-e-shop/2.12.4/code/includes/admin_system_status.php
- Raw: https://pluginprobe.com/plugins/usc-e-shop/2.12.4/raw/includes/admin_system_status.php
- Modified: 2024-08-20T07:41:16+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/usc-e-shop/2.12.4/code/includes/admin_system_status.php#L10-L20`.

```php
<?php
/**
 * Admin - System Environment Status Page.
 *
 * @package Welcart
 */

$wp_environment      = usces_get_wp_environment();
$environment         = $wp_environment['environment'];
$theme               = $wp_environment['theme'];
$active_plugins      = $wp_environment['active_plugins'];
$inactive_plugins    = $wp_environment['inactive_plugins'];
$welcart_information = get_welcart_system_information();
$loaded_extensions   = get_loaded_extensions();
$ini_confs           = ini_get_all();

$version_check = wp_remote_get( 'https://api.wordpress.org/core/version-check/1.7/' );
$api_response  = json_decode( wp_remote_retrieve_body( $version_check ), true );
if ( $api_response && isset( $api_response['offers'], $api_response['offers'][0], $api_response['offers'][0]['version'] ) ) {
	$latest_version = $api_response['offers'][0]['version'];
} else {
	$latest_version = $environment['wp_version'];
}
?>
<div id="download_env_info">
	<button id="btn_download_env_info" class="button" ><?php esc_html_e( 'Download environment information', 'usces' ); ?></button>
</div>
<table class="wc_status_table widefat" cellspacing="0" id="wp_environment_status">
	<thead>
	<tr>
		<th colspan="3" data-export-label="WordPress Settings"><h2><?php esc_html_e( 'WordPress Settings', 'usces' ); ?></h2></th>
	</tr>
	</thead>
	<tbody>
	<tr>
		<td data-export-label="WordPress Address (URL)"><?php esc_html_e( 'WordPress Address (URL)', 'usces' ); ?> :</td>
		<td><?php echo esc_url( $environment['site_url'] ); ?></td>
	</tr>
	<tr>
		<td data-export-label="Site Address (URL)"><?php esc_html_e( 'Site Address (URL)', 'usces' ); ?> :</td>
		<td><?php echo esc_url( $environment['home_url'] ); ?></td>
	</tr>
	<tr>
		<td data-export-label="WordPress Version"><?php esc_html_e( 'WordPress Version', 'usces' ); ?> :</td>
<?php
$wordpress_version = $environment['wp_version'];
if ( version_compare( $environment['wp_version'], $latest_version, '<' ) ) {
	$wordpress_version .= sprintf( __( '( A new version %1$s of WordPress is available. )', 'usces' ), $latest_version );
}
?>
		<td><?php echo esc_html( $wordpress_version ); ?></td>
	</tr>
	<tr>
		<td data-export-label="Site Language"><?php esc_html_e( 'Site Language', 'usces' ); ?> :</td>
		<td><?php echo esc_html( $environment['site_language'] ); ?></td>
	</tr>
	<tr>
		<td data-export-label="Timezone"><?php esc_html_e( 'Timezone', 'usces' ); ?> :</td>
		<td><?php echo esc_html( $environment['timezone'] ); ?></td>
	</tr>
	<tr>
		<td data-export-label="Number of media files"><?php esc_html_e( 'Number of media files', 'usces' ); ?> :</td>
		<td><?php echo esc_html( $environment['number_of_media'] ); ?></td>
	</tr>
	<tr>
		<td data-export-label="Blog pages show at most"><?php esc_html_e( 'Blog pages show at most', 'usces' ); ?> :</td>
		<td><?php echo esc_html( $environment['number_of_post'] ); ?></td>
	</tr>
	<tr>
		<td data-export-label="Search engine visibility"><?php esc_html_e( 'Search engine visibility', 'usces' ); ?> :</td>
		<td> <?php echo esc_html( ( $environment['blog_public'] ) ? '' : __( 'Discourage search engines from indexing this site', 'usces' ) ); ?></td>
	</tr>
	<tr>
		<td data-export-label="Thumbnail size"><?php esc_html_e( 'Thumbnail size', 'usces' ); ?> :</td>
		<td><?php esc_html_e( 'Width', 'usces' ); ?> <?php echo esc_html( $environment['thumbnail_size']['width'] ); ?>, <?php esc_html_e( 'Height', 'usces' ); ?> <?php echo esc_html( $environment['thumbnail_size']['height'] ); ?></td>
	</tr>
	<tr>
		<td data-export-label="Image medium size"><?php esc_html_e( 'Image medium size', 'usces' ); ?> :</td>
		<td><?php esc_html_e( 'Width', 'usces' ); ?> <?php echo esc_html( $environment['medium_size']['width'] ); ?>, <?php esc_html_e( 'Height', 'usces' ); ?> <?php echo esc_html( $environment['medium_size']['height'] ); ?></td>
	</tr>
	<tr>
		<td data-export-label="Image large size"><?php esc_html_e( 'Image large size', 'usces' ); ?> :</td>
		<td><?php esc_html_e( 'Width', 'usces' ); ?> <?php echo esc_html( $environment['large_size']['width'] ); ?>, <?php esc_html_e( 'Height', 'usces' ); ?> <?php echo esc_html( $environment['large_size']['height'] ); ?></td>
	</tr>
	<tr>
		<td data-export-label="Permalink Settings"><?php esc_html_e( 'Permalink Settings', 'usces' ); ?> :</td>
		<td><?php echo esc_html( $environment['permalinks'] ); ?></td>
	</tr>
	<tr>
		<td data-export-label="WP Multisite"><?php esc_html_e( 'WordPress Multisite', 'usces' ); ?> :</td>
		<td><?php echo esc_html( ( $environment['wp_multisite'] ) ? __( 'ON', 'usces' ) : '' ); ?></td>
	</tr>
	<tr>
		<td data-export-label="WP Memory Limit"><?php esc_html_e( 'WordPress Memory Limit', 'usces' ); ?> :</td>
		<td><?php echo esc_html( size_format( $environment['wp_memory_limit'] ) ); ?></td>
	</tr>
	<tr>
		<td data-export-label="WP Debug Mode"><?php esc_html_e( 'WordPress Debug Mode', 'usces' ); ?> :</td>
		<td><?php echo esc_html( ( $environment['wp_debug_mode'] ) ? __( 'ON', 'usces' ) : __( 'OFF', 'usces' ) ); ?></td>
	</tr>
	</tbody>
</table>

<table class="wc_status_table widefat" cellspacing="0" id="theme_status">
	<thead>
	<tr>
		<th colspan="3" data-export-label="Theme"><h2><?php esc_html_e( 'Theme', 'usces' ); ?></h2></th>
	</tr>
	</thead>
	<tbody>
	<tr>
		<td data-export-label="Theme name"><?php esc_html_e( 'Theme name', 'usces' ); ?> :</td>
		<td><?php echo esc_html( $theme['name'] ); ?></td>
	</tr>
	<tr>
		<td data-export-label="Theme version"><?php esc_html_e( 'Theme version', 'usces' ); ?> :</td>
		<td><?php echo esc_html( $theme['version'] ); ?></td>
	</tr>
	<tr>
		<td data-export-label="Author URL"><?php esc_html_e( 'Author URL', 'usces' ); ?> :</td>
		<td><?php echo esc_html( $theme['author_url'] ); ?></td>
	</tr>
<?php
if ( isset( $theme['is_child_theme'] ) && $theme['is_child_theme'] ) :
	?>
	<tr>
		<td data-export-label="Parent theme name"><?php esc_html_e( 'Parent theme name', 'usces' ); ?> :</td>
		<td><?php echo esc_html( $theme['parent_name'] ); ?></td>
	</tr>
	<tr>
		<td data-export-label="Parent theme version"><?php esc_html_e( 'Parent theme version', 'usces' ); ?> :</td>
		<td><?php echo esc_html( $theme['parent_version'] ); ?></td>
	</tr>
	<tr>
		<td data-export-label="Parent author URL"><?php esc_html_e( 'Parent author URL', 'usces' ); ?> :</td>
		<td><?php echo esc_html( $theme['parent_author_url'] ); ?></td>
	</tr>
	<?php
endif;
?>
	</tbody>
</table>

<table class="wc_status_table widefat" cellspacing="0" id="active_plugin_status">
	<thead>
	<tr>
		<th colspan="3" data-export-label="Active Plugins"><h2><?php esc_html_e( 'Active Plugins', 'usces' ); ?></h2></th>
	</tr>
	</thead>
	<tbody>
<?php
foreach ( $active_plugins as $plugin ) :
	?>
	<tr>
		<td><a href="<?php echo esc_url( $plugin['url'] ); ?>"><?php echo esc_html( $plugin['name'] ); ?></a></td>
		<td>
			<?php echo esc_html( __( 'by', 'usces' ) . ' ' . $plugin['author_name'] . ' - ' . $plugin['version'] ); ?>
			<?php echo esc_html( ( $plugin['version'] != $plugin['version_latest'] ) ? sprintf( __( '( Update to version %1$s is available. )', 'usces' ), $plugin['version_latest'] ) : '' ); ?>
		</td>
	</tr>
	<?php
endforeach;
?>
	</tbody>
</table>

<table class="wc_status_table widefat" cellspacing="0" id="inactive_plugin_status">
	<thead>
	<tr>
		<th colspan="3" data-export-label="Inactive Plugins"><h2><?php esc_html_e( 'Inactive Plugins', 'usces' ); ?></h2></th>
	</tr>
	</thead>
	<tbody>
<?php
foreach ( $inactive_plugins as $plugin ) :
	?>
	<tr>
		<td><a href="<?php echo esc_url( $plugin['url'] ); ?>"><?php echo esc_html( $plugin['name'] ); ?></a></td>
		<td>
			<?php echo esc_html( __( 'by', 'usces' ) . ' ' . $plugin['author_name'] . ' - ' . $plugin['version'] ); ?>
			<?php echo esc_html( ( $plugin['version'] != $plugin['version_latest'] ) ? sprintf( __( '( Update to version %1$s is available. )', 'usces' ), $plugin['version_latest'] ) : '' ); ?>
		</td>
	</tr>
	<?php
endforeach;
?>
	</tbody>
</table>

<table class="wc_status_table widefat" cellspacing="0" id="Welcart_status">
	<thead>
	<tr>
		<th colspan="3" data-export-label="General Setting"><h2><?php esc_html_e( 'General Setting', 'usces' ); ?></h2></th>
	</tr>
	</thead>
	<tbody>
	<tr>
		<td data-export-label="Welcart Version"><?php esc_html_e( 'Welcart Version', 'usces' ); ?> :</td>
		<td><?php echo esc_html( $welcart_information['version'] ); ?></td>
	</tr>
	<tr>
		<td data-export-label="number of item"><?php esc_html_e( 'number of item', 'usces' ); ?> :</td>
		<td><?php echo esc_html( $welcart_information['total_items'] ); ?></td>
	</tr>
	<tr>
		<td data-export-label="SKU total number"><?php esc_html_e( 'SKU total number', 'usces' ); ?> :</td>
		<td><?php echo esc_html( $welcart_information['total_sku'] ); ?></td>
	</tr>
	<tr>
		<td data-export-label="Display mode"><?php esc_html_e( 'Display mode', 'usces' ); ?> :</td>
		<td><?php echo esc_html( ( $welcart_information['maintenance_mode'] ) ? __( 'Under Maintenance', 'usces' ) : __( 'Normal business', 'usces' ) ); ?></td>
	</tr>
	<tr>
		<td data-export-label="Campaign Schedule"><?php esc_html_e( 'Campaign Schedule', 'usces' ); ?> :</td>
		<td>
			<p><?php echo esc_html__( 'starting time', 'usces' ); ?> :
<?php
foreach ( $welcart_information['campaign_schedule']['start'] as $key => $value ) :
	?>
				<span> <?php echo esc_html( $value ); ?> <?php esc_html_e( $key, 'usces' ); ?> </span>
	<?php
endforeach;
?>
			</p>
			<p><?php echo esc_html__( 'date and time of termination', 'usces' ); ?> :
<?php
foreach ( $welcart_information['campaign_schedule']['end'] as $key => $value ) :
	?>
				<span> <?php echo esc_html( $value ); ?> <?php esc_html_e( $key, 'usces' ); ?> </span>
	<?php
endforeach;
?>
			</p>
		</td>
	</tr>
	<tr>
		<td data-export-label="E-mail address for ordering"><?php esc_html_e( 'E-mail address for ordering', 'usces' ); ?> :</td>
		<td><?php echo esc_html( $welcart_information['order_mail'] ); ?></td>
	</tr>
	<tr>
		<td data-export-label="Sender's e-mail address"><?php esc_html_e( 'Sender\'s e-mail address', 'usces' ); ?> :</td>
		<td><?php echo esc_html( $welcart_information['sender_mail'] ); ?></td>
	</tr>
	<tr>
		<td data-export-label="Conditions for free shipping"><?php esc_html_e( 'Conditions for free shipping', 'usces' ); ?> :</td>
		<td><?php echo esc_html( ( ! empty( $welcart_information['postage_privilege'] ) ) ? $welcart_information['postage_privilege'] . __( 'Above', 'usces' ) : '' ); ?></td>
	</tr>
	<tr>
		<td data-export-label="default limitation number of purchase"><?php esc_html_e( 'default limitation number of purchase', 'usces' ); ?> :</td>
		<td><?php echo esc_html( ( ! empty( $welcart_information['purchase_limit'] ) ) ? $welcart_information['purchase_limit'] . __( 'maximum amount', 'usces' ) : '' ); ?></td>
	</tr>
	<tr>
		<td data-export-label="initial value of date of sending out."><?php esc_html_e( 'initial value of date of sending out.', 'usces' ); ?> :</td>
		<td><?php echo esc_html( ( isset( $welcart_information['shipping_rule_text'][ $welcart_information['shipping_rule'] ] ) ) ? $welcart_information['shipping_rule_text'][ $welcart_information['shipping_rule'] ] : '' ); ?></td>
	</tr>
	<tr>
		<td data-export-label="Tax treatment"><?php esc_html_e( 'Tax treatment', 'usces' ); ?> :</td>
		<td><?php echo esc_html( ( 'include' == $welcart_information['tax_mode'] ) ? __( 'Included', 'usces' ) : __( 'Excluded', 'usces' ) ); ?></td>
	</tr>
	<tr>
		<td data-export-label="Tax target"><?php esc_html_e( 'Tax target', 'usces' ); ?> :</td>
		<td><?php echo esc_html( ( 'products' == $welcart_information['tax_target'] ) ? __( 'Only Products', 'usces' ) : __( 'All Amount', 'usces' ) ); ?></td>
	</tr>
	<tr>
		<td data-export-label="Applicable tax rate"><?php esc_html_e( 'Applicable tax rate', 'usces' ); ?> :</td>
		<td><?php echo esc_html( ( 'reduced' == $welcart_information['applicable_taxrate'] ) ? __( 'Reduced tax rate', 'usces' ) : __( 'Standard tax rate', 'usces' ) ); ?></td>
	</tr>
	<tr>
		<td data-export-label="Percentage of Consumption tax"><?php esc_html_e( 'Percentage of Consumption tax', 'usces' ); ?> :</td>
		<td><?php echo esc_html( ucfirst( $welcart_information['tax_rate'] ) ); ?> %</td>
	</tr>
	<tr>
		<td data-export-label="Reduced tax rate"><?php esc_html_e( 'Reduced tax rate', 'usces' ); ?> :</td>
		<td><?php echo esc_html( $welcart_information['reduced_tax_rate'] ); ?> %</td>
	</tr>
	<tr>
		<td data-export-label="method of Calculation of the tax"><?php esc_html_e( 'method of Calculation of the tax', 'usces' ); ?> :</td>
<?php
$tax_method = '';
switch ( $welcart_information['tax_method'] ) {
	case 'cutting':
		$tax_method = __( 'drop fractions', 'usces' );
		break;
	case 'bring':
		$tax_method = __( 'raise to a unit', 'usces' );
		break;
	case 'rounding':
		$tax_method = __( 'round up numbers of five and above and round down anything under', 'usces' );
		break;
	default:
		break;
}
?>
		<td><?php echo esc_html( $tax_method ); ?></td>
	</tr>
	<tr>
		<td data-export-label="Subject to fees"><?php esc_html_e( 'Subject to fees', 'usces' ); ?> :</td>
		<td><?php echo esc_html( ( 'products' == $welcart_information['fee_subject'] ) ? __( 'Only Products', 'usces' ) : __( 'All Amount', 'usces' ) ); ?></td>
	</tr>
	<tr>
		<td data-export-label="membership syetem"><?php esc_html_e( 'membership syetem', 'usces' ); ?> :</td>
		<td><?php echo esc_html( ( 'activate' == $welcart_information['membership_system'] ) ? __( 'to use', 'usces' ) : __( 'not to use', 'usces' ) ); ?></td>
	</tr>
	<tr>
		<td data-export-label="membership points"><?php esc_html_e( 'membership points', 'usces' ); ?> :</td>
		<td><?php echo esc_html( ( 'activate' == $welcart_information['membership_point'] ) ? __( 'to grant', 'usces' ) : __( 'not to grant', 'usces' ) ); ?></td>
	</tr>

	<tr>
		<td data-export-label="Areas of Point Redemption"><?php esc_html_e( 'Areas of Point Redemption', 'usces' ); ?> :</td>
		<td><?php echo esc_html( ( $welcart_information['point_coverage'] ) ? __( 'Applicable to Total Merchandise Price and Handling Fee', 'usces' ) : __( 'Limited Only to Total Merchandise Price', 'usces' ) ); ?></td>
	</tr>

	<tr>
		<td data-export-label="Timing point of grant"><?php esc_html_e( 'Timing point of grant', 'usces' ); ?> :</td>
		<td><?php echo esc_html( ( $welcart_information['point_assign'] ) ? __( 'Payment at the time', 'usces' ) : __( 'Immediately', 'usces' ) ); ?></td>
	</tr>
	</tbody>
</table>

<table class="wc_status_table widefat" cellspacing="0" id="payment_methods_status">
	<thead>
	<tr>
		<th colspan="3" data-export-label="payment method"><h2><?php esc_html_e( 'payment method', 'usces' ); ?></h2></th>
	</tr>
	</thead>
	<tbody>
	<tr>
		<td><strong><?php esc_html_e( 'A payment method name', 'usces' ); ?></strong></td>
		<td><strong><?php esc_html_e( 'Type of payment', 'usces' ); ?></strong></td>
		<td><strong><?php esc_html_e( 'Usage conditions', 'usces' ); ?></strong></td>
	</tr>
<?php
foreach ( $welcart_information['payment_methods'] as $payment ) :
	?>
	<tr>
		<td><?php echo esc_html( $payment['name'] ); ?></td>
		<td><?php echo esc_html( ( isset( $welcart_information['payment_structure'][ $payment['settlement'] ] ) ) ? $welcart_information['payment_structure'][ $payment['settlement'] ] : '' ); ?></td>
		<td><?php echo esc_html( ( 'activate' == $payment['use'] ) ? __( 'Activate', 'usces' ) : __( 'Deactivate', 'usces' ) ); ?></td>
	</tr>
	<?php
endforeach;
?>
	</tbody>
</table>

<table class="wc_status_table widefat" cellspacing="0" id="common_options_status">
	<thead>
	<tr>
		<th colspan="4" data-export-label="Common Options"><h2><?php esc_html_e( 'Common Options', 'usces' ); ?></h2></th>
	</tr>
	</thead>
	<tbody>
	<tr>
		<td><strong><?php esc_html_e( 'option name', 'usces' ); ?></strong></td>
		<td><strong><?php esc_html_e( 'selected amount', 'usces' ); ?></strong></td>
		<td><strong><?php esc_html_e( 'Type of option', 'usces' ); ?></strong></td>
		<td><strong><?php esc_html_e( 'Required', 'usces' ); ?></strong></td>
	</tr>
<?php
foreach ( $welcart_information['common_options'] as $option ) :
	?>
	<tr>
		<td><?php echo esc_html( $option['name'] ); ?></td>
		<td><?php echo esc_html( $option['value'] ); ?></td>
		<td><?php echo esc_html( ( isset( $welcart_information['common_options_type'][ $option['means'] ] ) ) ? $welcart_information['common_options_type'][ $option['means'] ] : '' ); ?></td>
		<td><?php echo esc_html( ( $option['essential'] ) ? __( 'Essential', 'usces' ) : '' ); ?></td>
	</tr>
	<?php
endforeach;
?>
	</tbody>
</table>

<table class="wc_status_table widefat" cellspacing="0" id="shipping_method_status">
	<thead>
	<tr>
		<th colspan="6" data-export-label="shipping option"><h2><?php esc_html_e( 'shipping option', 'usces' ); ?></h2></th>
	</tr>
	</thead>
	<tbody>
	<tr>
		<td><strong><?php esc_html_e( 'Shipping name', 'usces' ); ?></strong></td>
		<td><strong><?php esc_html_e( 'Deliverly time', 'usces' ); ?></strong></td>
		<td><strong><?php esc_html_e( 'Possible Delivery Area', 'usces' ); ?></strong></td>
		<td><strong><?php esc_html_e( 'Postage fixation', 'usces' ); ?></strong></td>
		<td><strong><?php esc_html_e( 'Delivery Days', 'usces' ); ?></strong></td>
		<td><strong><?php esc_html_e( 'No COD', 'usces' ); ?></strong></td>
	</tr>
<?php
foreach ( $welcart_information['shipping_methods'] as $shipping ) :
	$charge       = '';
	$delivery_day = '';
	if ( 0 > $shipping['charge'] ) {
		$charge = esc_html__( 'Not fixing shipping.', 'usces' );
	} else {
		foreach ( $welcart_information['shipping_charge'] as $shipping_charge ) {
			if ( $shipping['charge'] == $shipping_charge['id'] ) {
				$charge = $shipping_charge['name'];
				break;
			}
		}
	}
	if ( 0 > $shipping['days'] ) {
		$delivery_day = esc_html__( 'Delivery Date Not Specified', 'usces' );
	} else {
		foreach ( $welcart_information['delivery_days'] as $day ) {
			if ( $shipping['days'] == $day['id'] ) {
				$delivery_day = $day['name'];
				break;
			}
		}
	}
	?>
	<tr>
		<td><?php echo esc_html( $shipping['name'] ); ?></td>
		<td><?php echo esc_html( $shipping['time'] ); ?></td>
		<td><?php echo esc_html( ( $shipping['intl'] ) ? __( 'International Shipment', 'usces' ) : __( 'Domestic Shipment', 'usces' ) ); ?></td>
		<td><?php echo esc_html( $charge ); ?> </td>
		<td><?php echo esc_html( $delivery_day ); ?> </td>
		<td><?php echo esc_html( ( $shipping['nocod'] ) ? __( 'not available', 'usces' ) : '' ); ?></td>
	</tr>
	<?php
endforeach;
?>
	</tbody>
</table>

<table class="wc_status_table widefat" cellspacing="0" id="shipping_cost_status">
	<thead>
	<tr>
		<th colspan="3" data-export-label="Shipping"><h2><?php esc_html_e( 'Shipping', 'usces' ); ?></h2></th>
	</tr>
	</thead>
	<tbody>
	<tr>
		<td><strong><?php esc_html_e( 'Shipping charge name', 'usces' ); ?></strong></td>
	</tr>
<?php
foreach ( $welcart_information['shipping_charge'] as $shipping_charge ) :
	?>
	<tr>
		<td><?php echo esc_html( $shipping_charge['name'] ); ?></td>
	</tr>
	<?php
endforeach;
?>
	</tbody>
</table>

<table class="wc_status_table widefat" cellspacing="0" id="mail_options_status">
	<thead>
	<tr>
		<th colspan="2" data-export-label="Mail Options"><h2><?php esc_html_e( 'Mail Options', 'usces' ); ?></h2></th>
	</tr>
	</thead>
	<tbody>
	<tr>
		<td data-export-label="New sign-in completion email"><?php esc_html_e( 'New sign-in completion email', 'usces' ); ?> :</td>
		<td><?php echo esc_html( ( $welcart_information['newmem_admin_mail'] ) ? __( 'Send', 'usces' ) : __( 'Don\'t send', 'usces' ) ); ?></td>
	</tr>
	<tr>
		<td data-export-label="Member update completion email to admin"><?php esc_html_e( 'Member update completion email to admin', 'usces' ); ?> :</td>
		<td><?php echo esc_html( ( $welcart_information['updmem_admin_mail'] ) ? __( 'Send', 'usces' ) : __( 'Don\'t send', 'usces' ) ); ?></td>
	</tr>
	<tr>
		<td data-export-label="Member update completion email to customer"><?php esc_html_e( 'Member update completion email to customer', 'usces' ); ?> :</td>
		<td><?php echo esc_html( ( $welcart_information['updmem_customer_mail'] ) ? __( 'Send', 'usces' ) : __( 'Don\'t send', 'usces' ) ); ?></td>
	</tr>
	<tr>
		<td data-export-label="Member removal completion email to admin"><?php esc_html_e( 'Member removal completion email to admin', 'usces' ); ?> :</td>
		<td><?php echo esc_html( ( $welcart_information['delmem_admin_mail'] ) ? __( 'Send', 'usces' ) : __( 'Don\'t send', 'usces' ) ); ?></td>
	</tr>
	<tr>
		<td data-export-label="Member removal completion email to customer"><?php esc_html_e( 'Member removal completion email to customer', 'usces' ); ?> :</td>
		<td><?php echo esc_html( ( $welcart_information['delmem_customer_mail'] ) ? __( 'Send', 'usces' ) : __( 'Don\'t send', 'usces' ) ); ?></td>
	</tr>
	<tr>
		<td data-export-label="Customer name"><?php esc_html_e( 'Customer name', 'usces' ); ?> :</td>
		<td><?php echo esc_html( ( $welcart_information['put_customer_name'] ) ? __( 'Indication', 'usces' ) : __( 'Non-indication', 'usces' ) ); ?></td>
	</tr>
	<tr>
		<td data-export-label="Attachment file for administrator email"><?php esc_html_e( 'Attachment file for administrator email', 'usces' ); ?> :</td>
		<td><?php echo esc_html( ( $welcart_information['email_attach_feature'] ) ? __( 'Use', 'usces' ) : __( 'Do not Use', 'usces' ) ); ?></td>
	</tr>
<?php
if ( $welcart_information['email_attach_feature'] ) :
	?>
	<tr>
		<td data-export-label="Extensions of attachments"><?php esc_html_e( 'Extensions of attachments', 'usces' ); ?> :</td>
		<td><?php echo esc_html( $welcart_information['email_attach_file_extension'] ); ?></td>
	</tr>
	<tr>
		<td data-export-label="Maximum size of email attachment"><?php esc_html_e( 'Maximum size of email attachment', 'usces' ); ?> :</td>
		<td><?php echo esc_html( $welcart_information['email_attach_file_size'] ); ?> Mb</td>
	</tr>
	<?php
endif;
?>
	<tr>
		<td data-export-label="HTML mail format"><?php esc_html_e( 'HTML mail format', 'usces' ); ?> :</td>
		<td><?php echo esc_html( ( $welcart_information['add_html_email_option'] ) ? __( 'Use', 'usces' ) : __( 'Do not Use', 'usces' ) ); ?></td>
	</tr>
	</tbody>
</table>

<table class="wc_status_table widefat" cellspacing="0" id="item_name_rules_status">
	<thead>
	<tr>
		<th colspan="3" data-export-label="Rule of the column for a item name"><h2><?php esc_html_e( 'Rule of the column for a item name', 'usces' ); ?></h2></th>
	</tr>
	</thead>
	<tbody>
<?php
foreach ( $welcart_information['indi_item_name'] as $key => $value ) :
	?>
		<tr>
			<td><?php esc_html_e( "Indication of {$welcart_information['indi_item_name_text'][ $key ]}", 'usces' ); ?> : <?php echo esc_html( ( $value ) ? __( 'Show', 'usces' ) : '' ); ?></td>
			<td><?php esc_html_e( "Position of {$welcart_information['indi_item_name_text'][ $key ]}", 'usces' ); ?> : <?php echo esc_html( $welcart_information['pos_item_name'][ $key ] ); ?></td>
		</tr>
	<?php
endforeach;
?>
	</tbody>
</table>

<table class="wc_status_table widefat" cellspacing="0" id="system_setting_status">
	<thead>
	<tr>
		<th colspan="2" data-export-label="System Setting"><h2><?php esc_html_e( 'System Setting', 'usces' ); ?></h2></th>
	</tr>
	</thead>
	<tbody>
	<tr>
		<td data-export-label="Display Modes"><?php esc_html_e( 'Display Modes', 'usces' ); ?> :</td>
		<td><?php echo esc_html( ( $welcart_information['divide_item'] ) ? __( 'Not display an article in blog', 'usces' ) : '' ); ?></td>
	</tr>
	<tr>
		<td data-export-label="rel attribute"><?php esc_html_e( 'rel attribute', 'usces' ); ?> :</td>
		<td><?php echo esc_html( ( isset( $welcart_information['itemimg_anchor_rel'] ) ) ? $welcart_information['itemimg_anchor_rel'] : '' ); ?></td>
	</tr>
	<tr>
		<td data-export-label="compound category sort item"><?php esc_html_e( 'compound category sort item', 'usces' ); ?> :</td>
		<td><?php echo esc_html( ( 'name' == $welcart_information['fukugo_category_orderby'] ) ? __( 'category name', 'usces' ) : __( 'category ID', 'usces' ) ); ?></td>
	</tr>
	<tr>
		<td data-export-label="compound category sort order"><?php esc_html_e( 'compound category sort order', 'usces' ); ?> :</td>
		<td><?php echo esc_html( ( 'DESC' == $welcart_information['fukugo_category_order'] ) ? __( 'Descendin', 'usces' ) : __( 'Ascending', 'usces' ) ); ?></td>
	</tr>
	<tr>
		<td data-export-label="Switching SSL"><?php esc_html_e( 'Switching SSL', 'usces' ); ?> :</td>
		<td><?php echo esc_html( ( $welcart_information['use_ssl'] ) ? __( 'Switching', 'usces' ) : '' ); ?></td>
	</tr>
	<tr>
		<td data-export-label="The page_id of the inquiry-form"><?php esc_html_e( 'The page_id of the inquiry-form', 'usces' ); ?> :</td>
		<td><?php echo esc_html( $welcart_information['inquiry_id'] ); ?></td>
	</tr>
	<tr>
		<td data-export-label="To disable usces_cart.css"><?php esc_html_e( 'To disable usces_cart.css', 'usces' ); ?> :</td>
		<td><?php echo esc_html( ( $welcart_information['no_cart_css'] ) ? __( 'To disable', 'usces' ) : '' ); ?></td>
	</tr>
	<tr>
		<td data-export-label="Product sub-image rule"><?php esc_html_e( 'Product sub-image rule', 'usces' ); ?> :</td>
		<td><?php echo ( ( $welcart_information['subimage_rule'] ) ? __( 'Put two _ (underscores) between the product code and the sequential number', 'usces' ) : __( 'Product Code Forward Matching', 'usces' ) ); ?></td>
	</tr>
	<tr>
		<td data-export-label="Described method of invoice"><?php esc_html_e( 'Described method of invoice', 'usces' ); ?> :</td>
		<td><?php echo esc_html( ( $welcart_information['pdf_delivery'] ) ? __( 'To address the shipping information', 'usces' ) : __( 'To address the purchaser information', 'usces' ) ); ?></td>
	</tr>
	<tr>
		<td data-export-label="Character code in the CSV file"><?php esc_html_e( 'Character code in the CSV file', 'usces' ); ?> :</td>
		<td><?php echo esc_html( ( $welcart_information['csv_encode_type'] ) ? __( 'UTF-8', 'usces' ) : __( 'Shift_JIS', 'usces' ) ); ?></td>
	</tr>
	<tr>
		<td data-export-label="'Category' of CSV product data file"><?php esc_html_e( "'Category' of CSV product data file", 'usces' ); ?> :</td>
		<td><?php echo esc_html( ( $welcart_information['csv_category_format'] ) ? __( 'slug (slug)', 'usces' ) : __( 'ID (tag_ID)', 'usces' ) ); ?></td>
	</tr>
	<tr>
		<td data-export-label="Order data re-created from the settlement log"><?php esc_html_e( 'Order data re-created from the settlement log', 'usces' ); ?> :</td>
		<td><?php echo esc_html( ( $welcart_information['settlement_backup'] ) ? __( 'Use', 'usces' ) : __( 'Do not Use', 'usces' ) ); ?></td>
	</tr>
	<tr>
		<td data-export-label="Settlement error message"><?php esc_html_e( 'Settlement error message', 'usces' ); ?> :</td>
		<td><?php echo esc_html( ( $welcart_information['settlement_notice'] ) ? __( 'Display', 'usces' ) : __( 'Do not display', 'usces' ) ); ?></td>
	</tr>
	<tr>
		<td data-export-label="The language of the front-end"><?php esc_html_e( 'The language of the front-end', 'usces' ); ?> :</td>
		<td><?php echo esc_html( $welcart_information['front_lang'] ); ?></td>
	</tr>
	<tr>
		<td data-export-label="Currencies"><?php esc_html_e( 'Currencies', 'usces' ); ?> :</td>
		<td><?php echo esc_html( ( isset( $welcart_information['country'][ $welcart_information['currency'] ] ) ) ? $welcart_information['country'][ $welcart_information['currency'] ] : $welcart_information['currency'] ); ?></td>
	</tr>
	<tr>
		<td data-export-label="The name and address form"><?php esc_html_e( 'The name and address form', 'usces' ); ?> :</td>
		<td><?php echo esc_html( ( isset( $welcart_information['country'][ $welcart_information['addressform'] ] ) ) ? $welcart_information['country'][ $welcart_information['addressform'] ] : $welcart_information['currency'] ); ?></td>
	</tr>
	<tr>
		<td data-export-label="Target Market"><?php esc_html_e( 'Target Market', 'usces' ); ?> :</td>
<?php
$target_market_country = array();
foreach ( $welcart_information['target_market'] as $key => $value ) {
	if ( isset( $welcart_information['country'][ $value ] ) ) {
		$target_market_country[] = $welcart_information['country'][ $value ];
	}
}
?>
		<td><?php echo esc_html( implode( ', ', $target_market_country ) ); ?></td>
	</tr>
	</tbody>
</table>

<table class="wc_status_table widefat" cellspacing="0" id="system_extension_status">
	<thead>
	<tr>
		<th colspan="2" data-export-label="System extension"><h2><?php esc_html_e( 'System extension', 'usces' ); ?></h2></th>
	</tr>
	</thead>
	<tbody>
	<tr>
		<td data-export-label="Ganbare Tencho"><?php esc_html_e( 'Ganbare Tencho', 'usces' ); ?> :</td>
		<td><?php echo esc_html( ( $welcart_information['ganbare_activate_flag'] ) ? __( 'Enabled', 'usces' ) : __( 'Disabled', 'usces' ) ); ?></td>
	</tr>
	<tr>
		<td data-export-label="Linkage Order Upadate"><?php esc_html_e( 'Linkage Order Upadate', 'usces' ); ?> :</td>
		<td><?php echo esc_html( ( $welcart_information['stocklink_orderedit_flag'] ) ? __( 'Enabled', 'usces' ) : __( 'Disabled', 'usces' ) ); ?></td>
	</tr>
	<tr>
		<td data-export-label="Linkage Order Collective Upadate"><?php esc_html_e( 'Linkage Order Collective Upadate', 'usces' ); ?> :</td>
		<td><?php echo esc_html( ( $welcart_information['stocklink_collective_flag'] ) ? __( 'Enabled', 'usces' ) : __( 'Disabled', 'usces' ) ); ?></td>
	</tr>
	<tr>
		<td data-export-label="[New] Order List"><?php esc_html_e( '[New] Order List', 'usces' ); ?> :</td>
		<td><?php echo esc_html( ( $welcart_information['datalistup_orderlist_flag'] ) ? __( 'Enabled', 'usces' ) : __( 'Disabled', 'usces' ) ); ?></td>
	</tr>
	<tr>
		<td data-export-label="[New] Member List"><?php esc_html_e( '[New] Member List', 'usces' ); ?> :</td>
		<td><?php echo esc_html( ( $welcart_information['datalistup_memberlist_flag'] ) ? __( 'Enabled', 'usces' ) : __( 'Disabled', 'usces' ) ); ?></td>
	</tr>
	<tr>
		<td data-export-label="Email verification for new registration"><?php esc_html_e( 'Email verification for new registration', 'usces' ); ?> :</td>
		<td><?php echo esc_html( ( $welcart_information['verifyemail_switch_flag'] ) ? __( 'Enabled', 'usces' ) : __( 'Disabled', 'usces' ) ); ?></td>
	</tr>
	<tr>
		<td data-export-label="Email verification for editing information"><?php esc_html_e( 'Email verification for editing information', 'usces' ); ?> :</td>
		<td><?php echo esc_html( ( $welcart_information['verifyemail_edit_flag'] ) ? __( 'Enabled', 'usces' ) : __( 'Disabled', 'usces' ) ); ?></td>
	</tr>
	<tr>
		<td data-export-label="Login Notification"><?php esc_html_e( 'Login Notification', 'usces' ); ?> :</td>
		<td><?php echo esc_html( ( $welcart_information['verifyemail_login_notify'] ) ? __( 'Enabled', 'usces' ) : __( 'Disabled', 'usces' ) ); ?></td>
	</tr>
	<tr>
		<td data-export-label="Google reCAPTCHA v3"><?php esc_html_e( 'Google reCAPTCHA v3', 'usces' ); ?> :</td>
		<td><?php echo esc_html( ( $welcart_information['google_recaptcha_status'] ) ? __( 'Enabled', 'usces' ) : __( 'Disabled', 'usces' ) ); ?></td>
	</tr>
	<tr>
		<td data-export-label="Brute-force attack countermeasures"><?php esc_html_e( 'Brute-force attack countermeasures', 'usces' ); ?> :</td>
		<td><?php echo esc_html( ( $welcart_information['brute_force_status'] ) ? __( 'Enabled', 'usces' ) : __( 'Disabled', 'usces' ) ); ?></td>
	</tr>
	<tr>
		<td data-export-label="Structured data measures"><?php esc_html_e( 'Structured data measures', 'usces' ); ?> :</td>
		<td><?php echo esc_html( ( $welcart_information['structured_data_product_status'] ) ? __( 'Enabled', 'usces' ) : __( 'Disabled', 'usces' ) ); ?></td>
	</tr>
	<tr>
		<td data-export-label="New product image registration"><?php esc_html_e( 'New product image registration', 'usces' ); ?> :</td>
		<td><?php echo esc_html( ( $welcart_information['newproductimage_switch_flag'] ) ? __( 'Enabled', 'usces' ) : __( 'Disabled', 'usces' ) ); ?></td>
	</tr>
	<tr>
		<td data-export-label="Operation Log"><?php esc_html_e( 'Operation Log', 'usces' ); ?> :</td>
		<td><?php echo esc_html( ( $welcart_information['operation_log_switch_flag'] ) ? __( 'Enabled', 'usces' ) : __( 'Disabled', 'usces' ) ); ?></td>
	</tr>
	<tr>
		<td data-export-label="Credit Card Security Measures"><?php esc_html_e( 'Credit Card Security Measures', 'usces' ); ?> :</td>
		<td><?php echo esc_html( ( $welcart_information['credit_security'] ) ? __( 'Enabled', 'usces' ) : __( 'Disabled', 'usces' ) ); ?></td>
	</tr>
	</tbody>
</table>

<table class="wc_status_table widefat" cellspacing="0" id="settlement_status">
	<thead>
	<tr>
		<th colspan="2" data-export-label="Settlement Setting"><h2><?php esc_html_e( 'Settlement Setting', 'usces' ); ?></h2></th>
	</tr>
	</thead>
	<tbody>
	<tr>
		<td data-export-label="Settlement modules in use"><?php esc_html_e( 'Settlement modules in use', 'usces' ); ?> :</td>
<?php
$settlement_selected_text = array();
if ( is_array( $welcart_information['settlement_selected'] ) ) {
	foreach ( $welcart_information['settlement_selected'] as $key => $value ) {
		if ( isset( $welcart_information['available_settlement'][ $value ] ) ) {
			$settlement_selected_text[] = __( $welcart_information['available_settlement'][ $value ], 'usces' );
		}
	}
}
?>
		<td><?php echo esc_html( implode( ', ', $settlement_selected_text ) ); ?></td>
	</tr>
	</tbody>
</table>

<table class="wc_status_table widefat" cellspacing="0" id="management_status">
	<thead>
	<tr>
		<th colspan="2" data-export-label="Management Information"><h2><?php esc_html_e( 'Management Information', 'usces' ); ?></h2></th>
	</tr>
	</thead>
	<tbody>
	<tr>
		<td data-export-label="Number of orders"><?php esc_html_e( 'Number of orders', 'usces' ); ?> :</td>
		<td><?php echo esc_html( $welcart_information['number_of_orders'] ); ?></td>
	</tr>
	<tr>
		<td data-export-label="Number of members"><?php esc_html_e( 'Number of members', 'usces' ); ?> :</td>
		<td><?php echo esc_html( $welcart_information['number_of_members'] ); ?></td>
	</tr>
	</tbody>
</table>

<table class="wc_status_table widefat" cellspacing="0" id="server_environment_status">
	<thead>
	<tr>
		<th colspan="2" data-export-label="Server environment"><h2><?php esc_html_e( 'Server environment', 'usces' ); ?></h2></th>
	</tr>
	</thead>
	<tbody>
	<tr>
		<td data-export-label="Server"><?php esc_html_e( 'Server', 'usces' ); ?> :</td>
		<td><?php echo esc_html( $environment['server'] ); ?></td>
	</tr>
	<tr>
		<td data-export-label="PHP version"><?php esc_html_e( 'PHP version', 'usces' ); ?> :</td>
		<td><?php echo esc_html( $environment['php_version'] ); ?></td>
	</tr>
	<tr>
		<td data-export-label="PHP global memory"><?php esc_html_e( 'PHP global memory', 'usces' ); ?> :</td>
		<td><?php echo esc_html( $ini_confs['memory_limit']['global_value'] ); ?></td>
	</tr>
	<tr>
		<td data-export-label="PHP locale memory"><?php esc_html_e( 'PHP locale memory', 'usces' ); ?> :</td>
		<td><?php echo esc_html( $ini_confs['memory_limit']['local_value'] ); ?></td>
	</tr>
	<tr>
		<td data-export-label="PHP post max size"><?php esc_html_e( 'PHP post max size', 'usces' ); ?> :</td>
		<td><?php echo esc_html( $environment['php_post_max_size'] ); ?></td>
	</tr>
	<tr>
		<td data-export-label="PHP time limit"><?php esc_html_e( 'PHP time limit', 'usces' ); ?> :</td>
		<td><?php echo esc_html( $environment['php_max_execution_time'] ); ?></td>
	</tr>
	<tr>
		<td data-export-label="PHP Max Input Vars"><?php esc_html_e( 'PHP Max Input Vars', 'usces' ); ?> :</td>
		<td><?php echo esc_html( $environment['php_max_input_vars'] ); ?></td>
	</tr>
	<tr>
		<td data-export-label="cURL"><?php esc_html_e( 'cURL', 'usces' ); ?> :</td>
		<td><?php echo ( in_array( 'curl', $loaded_extensions ) ? 'ON' : '-' ); ?></td>
	</tr>
	<tr>
		<td data-export-label="cURL version"><?php esc_html_e( 'cURL version', 'usces' ); ?> :</td>
		<td><?php echo esc_html( $environment['curl_version']['version'] . ' ' . $environment['curl_version']['host'] ); ?></td>
	</tr>
	<tr>
		<td data-export-label="MySQL version"><?php esc_html_e( 'MySQL version', 'usces' ); ?> :</td>
		<td><?php echo esc_html( $environment['mysql_version'] ); ?></td>
	</tr>
	<tr>
		<td data-export-label="Maximum upload size"><?php esc_html_e( 'Maximum upload size', 'usces' ); ?> :</td>
		<td><?php echo esc_html( $environment['upload_max_filesize'] ); ?></td>
	</tr>
	<tr>
		<td data-export-label="SimpleXML"><?php esc_html_e( 'SimpleXML', 'usces' ); ?> :</td>
		<td><?php echo ( in_array( 'SimpleXML', $loaded_extensions ) ? 'ON' : '-' ); ?></td>
	</tr>
	<tr>
		<td data-export-label="gd"><?php esc_html_e( 'gd', 'usces' ); ?> :</td>
		<td><?php echo ( in_array( 'gd', $loaded_extensions ) ? 'ON' : '-' ); ?></td>
	</tr>
	<tr>
		<td data-export-label="json"><?php esc_html_e( 'json', 'usces' ); ?> :</td>
		<td><?php echo ( in_array( 'json', $loaded_extensions ) ? 'ON' : '-' ); ?></td>
	</tr>
	<tr>
		<td data-export-label="mbstring"><?php esc_html_e( 'mbstring', 'usces' ); ?> :</td>
		<td><?php echo ( in_array( 'mbstring', $loaded_extensions ) ? 'ON' : '-' ); ?></td>
	</tr>
	<tr>
		<td data-export-label="openssl"><?php esc_html_e( 'openssl', 'usces' ); ?> :</td>
		<td><?php echo ( in_array( 'openssl', $loaded_extensions ) ? 'ON' : '-' ); ?></td>
	</tr>
	</tbody>
</table>

```
