| Current File : /home/digitaw/www/wp-content/plugins/event-tickets/src/admin-views/commerce/reports/seats.php |
<?php
/**
* The template used to render the Seats Report tab.
*
* @since 5.16.0
*
* @var string $iframe_url The URL to the service iframe.
* @var string $token The ephemeral token used to secure the iframe communication with the service.
* @var string $error The error message returned by the service.
*/
?>
<div class="tec-tickets__seating-tab-wrapper wrap">
<div id="tec-tickets-seating-notice" class="notice" style="display: none;"></div>
<div
class="tec-tickets-seating__iframe-container"
data-token="<?php echo esc_attr( $token ); ?>"
data-error="<?php echo esc_attr( $error ); ?>"
>
<iframe
data-src="<?php echo esc_url( $iframe_url ); ?>"
id="tec-tickets-seating-iframe-layout-edit"
class="tec-tickets-seating__iframe tec-tickets-seating__iframe--layout-edit"
title="<?php echo esc_attr__( 'Seats Assignment', 'event-tickets' ); ?>">
</iframe>
</div>
</div>