PluginProbe
seQura / 2.0.6
seQura v2.0.6
4.3.4 4.3.3 4.3.2 4.3.1 trunk 2.0.0 2.0.10 2.0.11 2.0.12 2.0.5 2.0.6 2.0.7 2.0.8 2.0.9 3.0.0 3.0.2 3.0.5 3.0.6 3.0.7 3.1.0 3.1.1 3.2.0 3.2.1 3.2.2 4.0.0 All 30 releases
sequra / templates / invoice-teaser.php

invoice-teaser.php in seQura 2.0.6, at templates/invoice-teaser.php

25 lines 698 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Invoice teaser template.
4 *
5 * @package woocommerce-sequra
6 */
7
8 // phpcs:disable VariableAnalysis.CodeAnalysis.VariableAnalysis.UndefinedVariable
9 ?>
10 <div id="sequra_invoice_teaser_container" style="clear:both"><div id="sequra_invoice_teaser"></div></div>
11 <script type="text/javascript">
12 Sequra.onLoad(function(){
13 SequraHelper.drawPromotionWidget(
14 '<?php echo esc_js( $price_container ); ?>'.replace(/\&gt\;/g, ">"),
15 '<?php echo esc_js( $dest ); ?>'.replace(/\&gt\;/g, ">"),
16 '<?php echo esc_js( $product ); ?>',
17 '<?php echo esc_js( $theme ); ?>'.replace(/\&quot\;/g, "\""),
18 0,
19 '<?php echo esc_js( $campaign ); ?>'
20 );
21 Sequra.refreshComponents();
22 });
23 </script>
24
25