Subversion Repositories wpShopGermany4

Rev

Rev 8007 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2742 daniel 1
<?php
2
 
3
	/**
4
	 * Template für die Kundenvoreinstellungen im Backend
5
	 */
6
 
7
?>
8
 
8007 daniel 9
<?php
10
 
11
	echo wpsg_drawForm_Select('wpsg_customerpreset_shipping', __('Standard Versandart', 'wpsg'), [
12
		'-1' => __('günstigste Versandart', 'wpsg')
13
	] + $this->view['arShipping'], $this->get_option('wpsg_customerpreset_shipping'), array('help' => 'wpsg_customerpreset_shipping'));
14
 
15
?>
16
 
17
<?php
18
 
19
	echo wpsg_drawForm_Select('wpsg_customerpreset_payment', __('Standard Zahlungsart', 'wpsg'), [
8411 daniel 20
		'0' => __('Bitte wählen', 'wpsg'),
8007 daniel 21
		'-1' => __('günstigste Zahlungsart', 'wpsg')
22
	] + $this->view['arPayment'], $this->get_option('wpsg_customerpreset_payment'), array('help' => 'wpsg_customerpreset_payment'));
23
 
24
?>
25
 
5439 daniel 26
<?php echo wpsg_drawForm_Select('wpsg_defaultland', __('Standardland', 'wpsg'), $this->view['arLander'], $this->get_option('wpsg_defaultland'), array('help' => 'wpsg_defaultland', 'hint' =>
27
	'nohspc_'.wpsg_translate(__('Die Länder können in der <a href="#1#">Länderverwaltung</a> definiert werden.', 'wpsg'), WPSG_URL_WP.'wp-admin/admin.php?page=wpsg-Admin&subaction=laender')
28
)); ?>
29
<?php echo wpsg_drawForm_Select('wpsg_customerpreset_title', __('Standardanrede', 'wpsg'), $this->view['arTitle'], $this->get_option('wpsg_customerpreset_title'), array( 'help' => 'wpsg_customerpreset_title',
30
	'hint' => 'nohspc_'.wpsg_translate(__('Die Auswahl kann in den <a href="#1#">Kundendaten</a> definiert werden.', 'wpsg'), WPSG_URL_WP.'wp-admin/admin.php?page=wpsg-Admin&subaction=kundendaten'),
31
	'noIndex' => true
6283 hartmut 32
)); ?>