Subversion Repositories wpShopGermany4

Rev

Rev 6800 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6800 Rev 7587
Line 4... Line 4...
4
	 * Dieses Template wird nach einer PayPal Zahlung angezeigt
4
	 * Dieses Template wird nach einer PayPal Zahlung angezeigt
5
	 */
5
	 */
6
 
6
 
7
?>
7
?>
8
 
8
 
9
<p><?php echo __('Um den Betrag mit PayPal zu bezahlen klicken Sie bitte auf folgendes Logo.', 'wpsg'); ?></p> 
-
 
10
<p>
-
 
11
	<a title="<?php echo __('Mit PayPal bezahlen', 'wpsg'); ?>" href="<?php echo $this->view['paypalLink']; ?>">
-
 
12
		<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;">
-
 
13
	</a>
-
 
14
</p>
-
 
15
<?php if ($this->get_option('wpsg_mod_paypal_autostart') == '1') { ?>
9
<?php if (wpsg_isSizedInt($this->view['wpsg_mod_paypal']['done'])) { ?>
16
<script type="text/javascript">/* <![CDATA[ */
-
 
17
 
-
 
18
	jQuery(document).ready(function() { 
-
 
19
		window.setTimeout(function() {
-
 
20
    	location.href = "<?php echo $this->view['paypalLink']; ?>";
-
 
21
		}, 1000);
-
 
22
	} );
-
 
23
	
10
	
24
/* ]]> */</script>
-
 
25
<?php } ?>
-
 
26
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 } ?>
-
 
40