Subversion Repositories wpShopGermany4

Rev

Rev 5234 | Rev 5382 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
4993 daniel 1
<?php
2
 
3
	/**
4
	 * Template um die Zahlungsarten mittels PayPal PLUS im Checkout zu integrieren
5
	 */
6
 
7
?>
8
 
9
<?php if ($this->view['wpsg_mod_paypalapi']['show'] == 1) { ?>
10
 
5017 daniel 11
	<div class="wpsg_payment">
12
		<h2><?php echo __('Zahlungsarten', 'wpsg'); ?></h2>
5018 daniel 13
		<div class="wpsg_payment_textwrap">
14
			<p><?php echo __('Ihr PayPal Konto wird nach Bestellabschluß belastet.', 'wpsg'); ?></p>
15
		</div>
5017 daniel 16
	</div>
4993 daniel 17
 
18
<?php } else if ($this->view['wpsg_mod_paypalapi']['show'] == 2) { ?>
19
 
5017 daniel 20
	<div class="wpsg_payment">
21
		<h2><?php echo __('Zahlung erneut authorisieren', 'wpsg'); ?></h2>
5018 daniel 22
		<div class="wpsg_payment_textwrap">
23
 
24
			<p><?php echo __('Der Betrag der Bestellung hat sich verändert. Sie müssen die Zahlung mit PayPal erneut authorisieren.', 'wpsg'); ?></p>
25
			<p><?php echo __('Dies können Sie über folgenden Button erledigen oder nach Bestellabschluß. Alternativ können Sie unten auch eine andere Zahlungsart wählen.', 'wpsg'); ?>
4993 daniel 26
 
5018 daniel 27
			<div class="wrap_paypalapi_expressbutton">
28
				<a href="<?php echo $this->getUrl(wpsg_ShopController::URL_BASKET, 'wpsg_mod_paypalapi', 'startPayPalExpress'); ?>" title="<?php echo __('Direkt mit PayPal bezahlen', 'wpsg'); ?>"><img src="<?php echo $this->getRessourceURL('mods/mod_paypalapi/gfx/checkout-logo-small-de.png'); ?>" alt="<?php echo __('Direkt zu PayPal', 'wpsg'); ?>" /></a>
29
			</div>
5017 daniel 30
		</div>
4993 daniel 31
	</div>
32
 
33
<?php } else { ?>
34
 
5010 daniel 35
	<script src="https://www.paypalobjects.com/webstatic/ppplus/ppplus.min.js" type="text/javascript"></script>
4993 daniel 36
 
5016 daniel 37
	<div class="wpsg_payment">
4993 daniel 38
 
5016 daniel 39
		<h2><?php echo __('Zahlungsarten', 'wpsg'); ?></h2>
5010 daniel 40
 
41
		<div id="wpsg_ppplus"></div>
5233 daniel 42
 
5234 daniel 43
		<?php if (wpsg_isSizedString($this->view['wpsg_mod_paypalapi']['error'])) { ?>
5233 daniel 44
		<div id="wpsg_error" class="published error">
5234 daniel 45
			<p><?php echo $this->view['wpsg_mod_paypalapi']['error']; ?>
46
		</div>
5233 daniel 47
		<?php } ?>
5010 daniel 48
 
49
	</div>
50
 
51
	<script type="application/javascript">/* <![CDATA[ */
52
 
53
		var wpsg_mod_paypalapi_shipping_id = '<?php echo wpsg_getStr($this->view['basket']['checkout']['shipping']); ?>';
54
 
55
		jQuery(document).ready(function() {
56
 
57
			jQuery('input[name="wpsg_checkout2"], input[name="wpsg_checkout"]').hide();
58
 
59
			jQuery('.wpsg_shipping input[type="radio"]').bind('change', function() {
60
 
61
				if (jQuery(this).val() != wpsg_mod_paypalapi_shipping_id)
62
				{
63
 
64
					jQuery('input[name="wpsg_checkout2"]').hide()
65
					jQuery('#wpsg_checkout_form').attr("action", "<?php echo $this->getUrl(wpsg_ShopController::URL_BASKET, 'wpsg_mod_paypalapi', 'ShippingSelect'); ?>").submit();
66
 
67
				}
4993 daniel 68
 
5010 daniel 69
			} );
4993 daniel 70
 
71
		} );
5010 daniel 72
 
73
		/**
74
		 * Wird vom PayPal PLUS IFrame aufgerufen wenn fertig geladen
75
		 */
76
		function wpsg_mod_paypalapi_load()
77
		{
78
 
79
			jQuery('input[name="wpsg_checkout2"], input[name="wpsg_checkout"]').show().bind('click', function() {
80
 
81
				var test = ppp.doContinue();
82
				return false;
83
 
84
			} );
4993 daniel 85
 
5010 daniel 86
		}
4993 daniel 87
 
5010 daniel 88
		<?php echo $this->render(WPSG_PATH_VIEW.'/mods/mod_paypalapi/paypalplus.phtml')?>
89
 
90
	/* ]]> */</script>
91
 
4993 daniel 92
<?php } ?>