3497 |
daniel |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
/**
|
|
|
4 |
* Template für die Einstellungen des Moduls "Mindestbestellwert"
|
|
|
5 |
* @author Daschmi
|
|
|
6 |
*/
|
|
|
7 |
|
|
|
8 |
?>
|
4238 |
daniel |
9 |
|
7483 |
thomas |
10 |
<?php echo wpsg_drawForm_Checkbox('wpsg_mod_minrequest_productamount', __('Minimaler Produktwert aktivieren', 'wpsg'), $this->get_option('wpsg_mod_minrequest_productamount'), array('help' => 'wpsg_mod_minrequest_productamount')); ?>
|
|
|
11 |
<?php echo wpsg_drawForm_Checkbox('wpsg_mod_minrequest_productamount_max', __('Maximaler Produktwert aktivieren', 'wpsg'), $this->get_option('wpsg_mod_minrequest_productamount_max'), array('help' => 'wpsg_mod_minrequest_productamount_max')); ?>
|
|
|
12 |
|
|
|
13 |
<br />
|
|
|
14 |
|
4433 |
daniel |
15 |
<?php echo wpsg_drawForm_Input('wpsg_mod_minrequest_basketamount', __('Minimaler Warenkorbwert', 'wpsg'), wpsg_ff($this->get_option('wpsg_mod_minrequest_basketamount')), array('hint' => __('Gilt für den Brutto Produktpreis. (Ohne Versand- und Zahlungskosten)', 'wpsg'), 'help' => 'wpsg_mod_minrequest_basketamount', 'unit' => $this->get_option('wpsg_currency'))); ?>
|
|
|
16 |
<?php echo wpsg_drawForm_Input('wpsg_mod_minrequest_basketmaxamount', __('Maximaler Warenkorbwert', 'wpsg'), wpsg_ff($this->get_option('wpsg_mod_minrequest_basketmaxamount')), array('hint' => __('Gilt für den Brutto Produktpreis. (Ohne Versand- und Zahlungskosten)', 'wpsg'), 'help' => 'wpsg_mod_minrequest_basketmaxamount', 'unit' => $this->get_option('wpsg_currency'))); ?>
|