Subversion Repositories wpShopGermany4

Rev

Rev 4943 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1435 daniel 1
<?php
2
 
3
	/**
4
	 * Dieses Template wird bei der Bezahlart "Billsafe" nach der Bestellung eingebunden um auf den Billsafe Gateway zu leiten
5
	 */
6
 
7
?>
8
<p><?php echo __('Um den Betrag mit Billsafe zu bezahlen klicken Sie bitte auf folgendes Logo.', 'wpsg'); ?></p>
9
<p>
10
	<a href="<?php echo $this->view['wpsg_mod_billsafe']['url']; ?>">
11
		<img src="https://images.billsafe.de/image/image/id/22227102a95c"/>
12
	</a>
13
</p>
3433 daniel 14
<?php if ($this->get_option('wpsg_mod_billsafe_autostart') == '1') { ?>
1435 daniel 15
<script type="text/javascript">
16
 
17
	jQuery(document).ready(function() {
18
		window.setTimeout(function() {
19
    	location.href = "<?php echo $this->view['wpsg_mod_billsafe']['url']; ?>";
20
		}, 1000);
21
	} );
22
 
23
</script>
24
<?php } ?>