Subversion Repositories wpShopGermany4

Rev

Rev 7410 | 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">
7586 daniel 16
			<label for=""><?php echo __('PaymentID', 'wpsg'); ?>: [<a href="<?php
17
 
18
				echo wpsg_admin_url('Order', 'view', ['action' => 'ajax', 'mod' => 'wpsg_mod_paypal', 'do' => 'refresh', 'edit_id' => $this->view['oOrder']->getId()], ['noheader' => '1']);
19
 
20
			?>"><?php echo __('Status Aktualisieren', 'wpsg'); ?></a>]</label>
4842 daniel 21
		</div>
22
		<div class="wpsg_form_right">
23
			<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>
24
		</div>
25
		<div class="wpsg_clear"></div>
26
	</div>
27
 
28
<?php } ?>
29
 
7410 daniel 30
<?php if (wpsg_isSizedString($wpsg_mod_paypal_saleid)) { ?>
4842 daniel 31
 
32
	<?php echo wpsg_drawForm_Input('', __('SaleID', 'wpsg'), $this->view['oOrder']->getMeta('wpsg_mod_paypal_saleid'), array('text' => true)); ?>
33
 
34
<?php } ?>