# sequra/4.1.0/templates/admin/order_details.php

seQura, version 4.1.0. 18 lines.

- Page: https://pluginprobe.com/plugins/sequra/4.1.0/code/templates/admin/order_details.php
- Raw: https://pluginprobe.com/plugins/sequra/4.1.0/raw/templates/admin/order_details.php
- Modified: 2024-10-29T15:19:22+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/sequra/4.1.0/code/templates/admin/order_details.php#L10-L20`.

```php
<?php
/**
 * Order details template
 *
 * @package    SeQura/WC
 * @var string $args The arguments. Must contains:
 * - 'sequra_link' The link to the order in the seQura back office.
 */

defined( 'WPINC' ) || die;
if ( ! isset( $args['sequra_link'] ) ) {
	return;
}
?>
<p class="form-field form-field-wide wc-order-status">
	<a class="sequra-link" target="_blank" href="<?php echo esc_url( $args['sequra_link'] ); ?>"><?php esc_html_e( 'View on seQura', 'sequra' ); ?></a>
</p>

```
