if ($scheduled_timestamp = wp_next_scheduled('wc_customer_order_csv_export_auto_export_orders')) {
        $scheduled_desc = sprintf(__('Scheduled on %s', 'woocommerce-customer-order-csv-export'), get_date_from_gmt(date('Y-m-d H:i:s', $scheduled_timestamp), wc_date_format() . ' ' . wc_time_format()));
    } else {
        $scheduled_desc = sprintf(__('%1$sNot scheduled%2$s', 'woocommerce-customer-order-csv-export'), '<mark class="error">', '</mark>');
    }
    echo $scheduled_desc;
    ?>
				</td>
			</tr>

			<tr>
				<td data-export-label="Order Statuses"><?php 
    _e('Order Statuses', 'woocommerce-customer-order-csv-export');
    ?>
:</td>
				<td class="help"><?php 
    echo SV_WC_Plugin_Compatibility::wc_help_tip(__('The order statuses to be included in the automatic export.', 'woocommerce-customer-order-csv-export'));
    ?>
</td>
				<td><?php 
    echo esc_html(implode(', ', get_option('wc_customer_order_csv_export_auto_export_statuses')));
    ?>
</td>
			</tr>

		<?php 
}
?>
	</tbody>
</table>
echo esc_html($environment);
?>
</td>
		</tr>

		<?php 
if ($gateway->supports_tokenization()) {
    ?>

			<tr>
				<td data-export-label="Tokenization Enabled"><?php 
    esc_html_e('Tokenization Enabled', 'woocommerce-plugin-framework');
    ?>
:</td>
				<td class="help"><?php 
    echo SV_WC_Plugin_Compatibility::wc_help_tip(__('Displays whether or not tokenization is enabled for this gateway.', 'woocommerce-plugin-framework'));
    ?>
</td>
				<td>
					<?php 
    if ($gateway->tokenization_enabled()) {
        ?>
						<mark class="yes">&#10004;</mark>
					<?php 
    } else {
        ?>
						<mark class="no">&ndash;</mark>
					<?php 
    }
    ?>
				</td>