Subversion Repositories wpShopGermany4

Rev

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

Rev 5261 Rev 7410
Line 1... Line 1...
1
<?php
1
<?php
2
 
2
 
3
	/**
3
	/**
4
	 * Template für die Integration der PayPal Zahlungsart in die Bestellverwaltung
4
	 * Template für die Integration der PayPal Zahlungsart in die Bestellverwaltung
5
	 */
5
	 */
6
 
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
	
7
?>
10
?>
8
 
11
 
9
<?php if (wpsg_isSizedString($this->view['oOrder']->getMeta('wpsg_mod_paypal_paymentid'))) { ?>
12
<?php if (wpsg_isSizedString($wpsg_mod_paypal_paymentid)) { ?>
10
	
13
	
11
	<div class="wpsg_form_field ">
14
	<div class="wpsg_form_field ">
12
		<div class="wpsg_form_left">
15
		<div class="wpsg_form_left">
13
			<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>
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>
14
		</div>
17
		</div>
Line 18... Line 21...
18
		<div class="wpsg_clear"></div>
21
		<div class="wpsg_clear"></div>
19
	</div>
22
	</div>
20
		
23
		
21
<?php } ?>
24
<?php } ?>
22
 
25
 
23
<?php if (wpsg_isSizedString($this->view['oOrder']->getMeta('wpsg_mod_paypal_saleid'))) { ?>
26
<?php if (wpsg_isSizedString($wpsg_mod_paypal_saleid)) { ?>
24
 
27
 
25
	<?php echo wpsg_drawForm_Input('', __('SaleID', 'wpsg'), $this->view['oOrder']->getMeta('wpsg_mod_paypal_saleid'), array('text' => true)); ?>
28
	<?php echo wpsg_drawForm_Input('', __('SaleID', 'wpsg'), $this->view['oOrder']->getMeta('wpsg_mod_paypal_saleid'), array('text' => true)); ?>
26
		
29
		
27
<?php } ?>
30
<?php } ?>