Subversion Repositories wpShopGermany4

Rev

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

<?php
        
        /**
         * Template für die Einstellungen des Gutscheinmoduls
         */

?>
<?php echo wpsg_drawForm_Input('wpsg_mod_gutschein_size', __('Länge der Gutscheincodes', 'wpsg'), $this->get_option('wpsg_mod_gutschein_size'), array ('help' => 'wpsg_mod_gutschein_size')); ?>
<?php echo wpsg_drawForm_Input('wpsg_mod_gutschein_perPage', __('Gutscheine pro Seite (Backend)', 'wpsg'), $this->get_option('wpsg_mod_gutschein_perPage'), array ('help' => 'wpsg_mod_gutschein_perPage')); ?>

<br />

<?php echo wpsg_drawForm_Checkbox('wpsg_mod_gutschein_wert', __('Wertgutschein als Zahlungsart aktiv', 'wpsg'), $this->get_option('wpsg_mod_gutschein_wert'), array ('help' => 'wpsg_mod_gutschein_wert')); ?>
<div class="wpsg_mod_gutschein_wert_activ" style="display:none;">
    
    <?php echo wpsg_drawForm_Input('wpsg_mod_gutschein_wert_bezeichnung', __('Bezeichnung', 'wpsg'), $this->get_option('wpsg_mod_gutschein_wert_bezeichnung'), array('help' => 'wpsg_mod_gutschein_wert_bezeichnung')); ?>
    <?php echo wpsg_drawForm_Textarea('wpsg_mod_gutschein_wert_hint', __('Hinweistext', 'wpsg'), $this->get_option('wpsg_mod_gutschein_wert_hint'), array('help' => 'wpsg_mod_gutschein_wert_hint')); ?>
    
    <br />
    <?php echo wpsg_drawForm_Input('wpsg_mod_gutschein_wert_gebuehr', __('Gebühr/Rabatt', 'wpsg'), wpsg_ff($this->get_option('wpsg_mod_gutschein_wert_gebuehr'), true), array('help' => 'wpsg_mod_gutschein_wert_gebuehr','unit' => $this->get_option('wpsg_currency').' / %')); ?>
    <?php echo wpsg_drawForm_Select('wpsg_mod_gutschein_wert_mwst', __('Mehrwertsteuersatz', 'wpsg'), wpsg_tax_groups(), $this->get_option('wpsg_mod_gutschein_wert_mwst'), array('help' => 'wpsg_mod_gutschein_wert_mwst')); ?>
    <?php echo wpsg_drawForm_Checkbox('wpsg_mod_gutschein_wert_mwstland', __('Keine MwSt. wenn Land steuerfrei', 'wpsg'), $this->get_option('wpsg_mod_gutschein_wert_mwstland'), array('help' => 'wpsg_mod_gutschein_wert_mwstland')); ?>

</div>

<script type="text/javascript">/* <![CDATA[ */

        jQuery(document).ready(function() {

                jQuery('#wpsg_mod_gutschein_wert').bind('change', function() {

                        if (jQuery(this).is(':checked')) jQuery('.wpsg_mod_gutschein_wert_activ').show();
                        else jQuery('.wpsg_mod_gutschein_wert_activ').hide();
                        
                } ).change();
                
        } );

/* ]]> */</script>