Index: /mods/wpsg_mod_orderupload.class.php
===================================================================
--- /mods/wpsg_mod_orderupload.class.php	(revision 6223)
+++ /mods/wpsg_mod_orderupload.class.php	(revision 6227)
@@ -50,4 +50,8 @@
 			$this->shop->update_option('wpsg_mod_orderupload_multifiles', $_REQUEST['wpsg_mod_orderupload_multifiles']);
 			$this->shop->update_option('wpsg_mod_orderupload_optional', $_REQUEST['wpsg_mod_orderupload_optional']);
+			$this->shop->update_option('wpsg_mod_orderupload_zip', $_REQUEST['wpsg_mod_orderupload_zip']);
+			$this->shop->update_option('wpsg_mod_orderupload_maxweight', $_REQUEST['wpsg_mod_orderupload_maxweight']);
+			$this->shop->update_option('wpsg_mod_orderupload_mail', $_REQUEST['wpsg_mod_orderupload_mail']);
+			$this->shop->update_option('wpsg_mod_orderupload_maxweight_text', $_REQUEST['wpsg_mod_orderupload_maxweight_text']);
 			
 		} // public function settings_save()
Index: /views/mods/mod_orderupload/checkout_inner_prebutton.phtml
===================================================================
--- /views/mods/mod_orderupload/checkout_inner_prebutton.phtml	(revision 6223)
+++ /views/mods/mod_orderupload/checkout_inner_prebutton.phtml	(revision 6227)
@@ -8,6 +8,6 @@
 <div class="wpsg_box wpsg_mod_orderupload">
 
-	<div class="wpsg_head"><?php echo __('Dateiupload', 'wpsg'); ?> 
-	
+	<div class="wpsg_head"><?php echo __('Dateiupload:', 'wpsg'); ?> 
+		
 		<?php if ($this->get_option('wpsg_mod_orderupload_optional') != '1') { ?>
 		
@@ -44,3 +44,8 @@
 	</div>
 	
+	<?php /* Counter, wie viel MB noch ÃŒbrig sind */?>
+	<label class="wpsg_fileweight">
+		<?php echo __('Es stehen Ihnen #1# Mb von #2# Mb fÃŒr den Upload zur VerfÃŒgung', 'wpsg'), $this->view['wpsg_mod_orderupload']['uploadsum'],$this->view['wpsg_mod_orderupload']['maxweight'];?>
+	</label>
+	
 </div>
Index: /views/mods/mod_orderupload/settings_edit.phtml
===================================================================
--- /views/mods/mod_orderupload/settings_edit.phtml	(revision 6223)
+++ /views/mods/mod_orderupload/settings_edit.phtml	(revision 6227)
@@ -6,8 +6,49 @@
 
 ?>
+
 <br/>
+
+<?php /* Platzhalter fÃŒr Dateiname */ ?>
 <?php echo wpsg_drawForm_Input('wpsg_mod_orderupload_filename', __('Neuer Dateiname', 'wpsg'), $this->get_option('wpsg_mod_orderupload_filename'), array('help' => 'wpsg_mod_orderupload_filename')); ?>
+
+<?php /* erlaubte Dateitypen*/ ?>
 <?php echo wpsg_drawForm_Input('wpsg_mod_orderupload_allowedext', __('Erlaubte Endungen (kommagetrennt)', 'wpsg'), $this->get_option('wpsg_mod_orderupload_allowedext'), array('help' => 'wpsg_mod_orderupload_allowedext')); ?>
+
 <br />
+
+<?php /* maximale Upload-GrÃ¶Ãe */?>
+<?php echo wpsg_drawForm_Input('wpsg_mod_orderupload_maxweight', __('maximale GrÃ¶Ãe des Uploads (Angaben in MB)', 'wpsg'), $this->get_option('wpsg_mod_orderupload_maxweight'), array('help' => 'wpsg_mod_orderupload_maxweight'));?>
+<?php echo wpsg_drawForm_Input('wpsg_mod_orderupload_maxweight_text', __('Text bei Ãberschreiten der max. Uploadgrenze', 'wpsg'), $this->get_option('wpsg_mod_orderupload_maxweight_text'), array('help' => '"wpsg_mod_orderupload_text')); ?>
+<br />
+
+<?php /* mehrere Dateien */?>
 <?php echo wpsg_drawForm_Checkbox('wpsg_mod_orderupload_multifiles', __('Mehr als eine Datei erlauben', 'wpsg'), $this->get_option('wpsg_mod_orderupload_multifiles'), array('help' => 'wpsg_mod_orderupload_multifiles')); ?>
+
+<br />
+
+<?php /* Pflichtfeld*/ ?>
 <?php echo wpsg_drawForm_Checkbox('wpsg_mod_orderupload_optional', __('Upload ist kein Pflichtfeld', 'wpsg'), $this->get_option('wpsg_mod_orderupload_optional'), array('help' => 'wpsg_mod_orderupload_optional')); ?>
+
+<?php /* Anhang an Adminmail */ ?>
+<?php echo wpsg_drawForm_Checkbox('wpsg_mod_orderupload_mail', __('Upload an Anhang an Adminmail', 'wpsg'), $this->get_option('wpsg_mod_orderupload_mail'), array('help' => 'wpsg_mod_orderupload_mail')); ?>
+
+<?php /* mehrere AnhÃ€nge zippen (wenn "mehrere Dateien" und wenn "Adminmail"*/ ?>
+<div class="wpsg_mod_orderupload_mail_activ" style="display:none;">
+<?php echo wpsg_drawForm_Checkbox('wpsg_mod_orderupload_zip', __('Datei(en) als Zip anhÃ€ngen', 'wpsg'), $this->get_option('wpsg_mod_orderupload_zip'), array('help' => 'wpsg_mod_orderupload_zip'));?>
+</div>
+
+
+<script type="text/javascript">/* <![CDATA[ */
+
+	jQuery(document).ready(function() {
+
+		jQuery('#wpsg_mod_orderupload_mail').bind('change', function() {
+
+			if (jQuery(this).is(':checked')) jQuery('.wpsg_mod_orderupload_mail_activ').show();
+			else jQuery('.wpsg_mod_orderupload_mail_activ').hide();
+			
+		} ).change();
+		
+	} );
+
+/* ]]> */</script>
