Subversion Repositories wpShopGermany4

Rev

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

Rev Author Line No. Line
4842 daniel 1
<?php
2
 
3
	/**
5013 daniel 4
	 * Template für die Integration der PayPal Zahlungsart in die Bestellverwaltung
4842 daniel 5
	 */
7410 daniel 6
 
7
	$wpsg_mod_paypal_paymentid = $this->view['oOrder']->getMeta('wpsg_mod_paypal_paymentid');
8
	$wpsg_mod_paypal_saleid = $this->view['oOrder']->getMeta('wpsg_mod_paypal_saleid');
9
 
4842 daniel 10
?>
11
 
7410 daniel 12
<?php if (wpsg_isSizedString($wpsg_mod_paypal_paymentid)) { ?>
4842 daniel 13
 
14
	<div class="wpsg_form_field ">
15
		<div class="wpsg_form_left">
16
			<label for=""><?php echo __('PaymentID', 'wpsg'); ?>: [<a href="<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Order&action=ajax&noheader=1&mod=wpsg_mod_paypal&do=refresh&edit_id=<?php echo $this->view['oOrder']->id; ?>"><?php echo __('Status Aktualisieren', 'wpsg'); ?></a>]</label>
17
		</div>
18
		<div class="wpsg_form_right">
19
			<p class="" id=""><?php echo wpsg_translate(__('#1# (#2#)', 'wpsg'), $this->view['oOrder']->getMeta('wpsg_mod_paypal_paymentid'), $this->view['oOrder']->getMeta('wpsg_mod_paypal_paymentstate')); ?></p>
20
		</div>
21
		<div class="wpsg_clear"></div>
22
	</div>
23
 
24
<?php } ?>
25
 
7410 daniel 26
<?php if (wpsg_isSizedString($wpsg_mod_paypal_saleid)) { ?>
4842 daniel 27
 
28
	<?php echo wpsg_drawForm_Input('', __('SaleID', 'wpsg'), $this->view['oOrder']->getMeta('wpsg_mod_paypal_saleid'), array('text' => true)); ?>
29
 
30
<?php } ?>