# sequra/2.0.6/templates/invoice-teaser.php

seQura, version 2.0.6. 25 lines.

- Page: https://pluginprobe.com/plugins/sequra/2.0.6/code/templates/invoice-teaser.php
- Raw: https://pluginprobe.com/plugins/sequra/2.0.6/raw/templates/invoice-teaser.php
- Modified: 2023-07-19T15:38:42+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/2.0.6/code/templates/invoice-teaser.php#L10-L20`.

```php
<?php
/**
 * Invoice teaser template.
 *
 * @package woocommerce-sequra
 */

// phpcs:disable VariableAnalysis.CodeAnalysis.VariableAnalysis.UndefinedVariable
?>
<div id="sequra_invoice_teaser_container" style="clear:both"><div id="sequra_invoice_teaser"></div></div>
<script type="text/javascript">
	Sequra.onLoad(function(){
		SequraHelper.drawPromotionWidget(
			'<?php echo esc_js( $price_container ); ?>'.replace(/\&gt\;/g, ">"),
			'<?php echo esc_js( $dest ); ?>'.replace(/\&gt\;/g, ">"),
			'<?php echo esc_js( $product ); ?>',
			'<?php echo esc_js( $theme ); ?>'.replace(/\&quot\;/g, "\""),
			0,
			'<?php echo esc_js( $campaign ); ?>'
		);
		Sequra.refreshComponents();
	});
</script>


```
