Subversion Repositories wpShopGermany4

Rev

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

Rev Author Line No. Line
1067 daniel 1
<?php
2
 
3
	/**
4
	 * Dieses Template wird nach einer PayPal Zahlung angezeigt
5
	 */
6
 
7
?>
4842 daniel 8
 
7593 daniel 9
<?php if (!wpsg_isSizedInt($this->view['wpsg_mod_paypal']['done'])) { ?>
1403 daniel 10
 
7587 daniel 11
	<p><?php echo __('Um den Betrag mit PayPal zu bezahlen klicken Sie bitte auf folgendes Logo.', 'wpsg'); ?></p>
12
 
13
	<p>
14
		<a title="<?php echo __('Mit PayPal bezahlen', 'wpsg'); ?>" href="<?php echo $this->view['paypalLink']; ?>">
15
			<img src="<?php echo $this->getRessourceURL('mods/mod_paypal/gfx/pp-logo-big.png'); ?>" align="left" alt="<?php echo __('Mit PayPal bezahlen', 'wpsg'); ?>" style="margin-right:7px;">
16
		</a>
17
	</p>
18
 
19
	<?php if ($this->get_option('wpsg_mod_paypal_autostart') == '1') { ?>
20
 
21
		<script>
22
 
23
			jQuery(document).ready(function() {
24
				window.setTimeout(function() {
25
				location.href = "<?php echo $this->view['paypalLink']; ?>";
26
				}, 1000);
27
			} );
28
 
29
		</script>
30
 
31
	<?php } ?>
32
 
33
<?php } else { ?>
34
 
35
	<p>
36
		<?php echo __('Die Zahlung wurde bereits mit PayPal abgeschlossen.', 'wpsg'); ?>
37
	</p>
38
 
39
<?php } ?>