Line 53... |
Line 53... |
53 |
</div>
|
53 |
</div>
|
54 |
</div>
|
54 |
</div>
|
55 |
|
55 |
|
56 |
<div class="panel panel-default">
|
56 |
<div class="panel panel-default">
|
57 |
<div class="panel-heading clearfix">
|
57 |
<div class="panel-heading clearfix">
|
- |
|
58 |
<h3 class="panel-title"><?php echo __('Zweigstelle', 'wpsg'); ?></h3>
|
- |
|
59 |
</div>
|
- |
|
60 |
<div class="panel-body">
|
- |
|
61 |
<?php echo wpsg_drawForm_Checkbox('wpsg_shopdata_2', __('Zweigstelle vorhanden', 'wpsg'), $this->get_option('wpsg_shopdata_2')); ?>
|
- |
|
62 |
<div class="wpsg_shopdata_2_activ" style="display:none;">
|
- |
|
63 |
<?php echo wpsg_drawForm_Input('wpsg_shopdata_2_street', __('Straße', 'wpsg'), $this->get_option('wpsg_shopdata_2_street'), array('help' => 'wpsg_shopdata_2_street')); ?>
|
- |
|
64 |
<?php echo wpsg_drawForm_Input('wpsg_shopdata_2_zip', __('Postleitzahl', 'wpsg'), $this->get_option('wpsg_shopdata_2_zip'), array('help' => 'wpsg_shopdata_2_zip')); ?>
|
- |
|
65 |
<?php echo wpsg_drawForm_Input('wpsg_shopdata_2_city', __('Ort', 'wpsg'), $this->get_option('wpsg_shopdata_2_city'), array('help' => 'wpsg_shopdata_2_city')); ?>
|
- |
|
66 |
<?php echo wpsg_drawForm_Input('wpsg_shopdata_2_country', __('Land', 'wpsg'), $this->get_option('wpsg_shopdata_2_country'), array('help' => 'wpsg_shopdata_2_country')); ?>
|
- |
|
67 |
<?php echo wpsg_drawForm_Input('wpsg_shopdata_2_tel', __('Telefon', 'wpsg'), $this->get_option('wpsg_shopdata_2_tel'), array('help' => 'wpsg_shopdata_2_tel')); ?>
|
- |
|
68 |
<?php echo wpsg_drawForm_Input('wpsg_shopdata_2_fax', __('Fax', 'wpsg'), $this->get_option('wpsg_shopdata_2_fax'), array('help' => 'wpsg_shopdata_2_fax')); ?>
|
- |
|
69 |
<?php echo wpsg_drawForm_Input('wpsg_shopdata_2_email', __('E-Mail', 'wpsg'), $this->get_option('wpsg_shopdata_2_email'), array('help' => 'wpsg_shopdata_2_email')); ?>
|
- |
|
70 |
</div>
|
- |
|
71 |
</div>
|
- |
|
72 |
</div>
|
- |
|
73 |
|
- |
|
74 |
<div class="panel panel-default">
|
- |
|
75 |
<div class="panel-heading clearfix">
|
58 |
<h3 class="panel-title"><?php echo __('Bankdaten', 'wpsg'); ?></h3>
|
76 |
<h3 class="panel-title"><?php echo __('Bankdaten', 'wpsg'); ?></h3>
|
59 |
</div>
|
77 |
</div>
|
60 |
<div class="panel-body">
|
78 |
<div class="panel-body">
|
61 |
|
79 |
|
62 |
<?php echo wpsg_drawForm_Input('wpsg_shopdata_bank_name', __('Name der Bank', 'wpsg'), $this->get_option('wpsg_shopdata_bank_name'), array('help' => 'wpsg_shopdata_bank_name')); ?>
|
80 |
<?php echo wpsg_drawForm_Input('wpsg_shopdata_bank_name', __('Name der Bank', 'wpsg'), $this->get_option('wpsg_shopdata_bank_name'), array('help' => 'wpsg_shopdata_bank_name')); ?>
|
Line 92... |
Line 110... |
92 |
|
110 |
|
93 |
<script type="text/javascript">/* <![CDATA[ */
|
111 |
<script type="text/javascript">/* <![CDATA[ */
|
94 |
|
112 |
|
95 |
jQuery(document).ready(function() {
|
113 |
jQuery(document).ready(function() {
|
96 |
|
114 |
|
- |
|
115 |
jQuery('#wpsg_shopdata_2').bind('change', function() {
|
- |
|
116 |
|
- |
|
117 |
if (jQuery(this).is(':checked')) jQuery('.wpsg_shopdata_2_activ').show();
|
- |
|
118 |
else jQuery('.wpsg_shopdata_2_activ').hide();
|
- |
|
119 |
|
- |
|
120 |
} ).change();
|
- |
|
121 |
|
97 |
|
122 |
|
98 |
} );
|
123 |
} );
|
99 |
|
124 |
|
100 |
/* ]]> */</script>
|
125 |
/* ]]> */</script>
|
101 |
|
126 |
|