Subversion Repositories wpShopGermany4

Rev

Rev 6234 | Blame | Compare with Previous | Last modification | View Log | RSS feed

<?php

        /**
         * Template für die Integration des Bestelluploads in den Bestellprozess
         */

?>
<div class="wpsg_box wpsg_mod_orderupload">

        <div class="wpsg_head"><?php echo __('Dateiupload:', 'wpsg'); ?> 
                
                <?php if ($this->get_option('wpsg_mod_orderupload_optional') != '1') { ?>
                
                        <span class="wpsg_required">*</span>
                        
                <?php } ?>
                
        </div>
        
        <div class="wpsg_inner">

                <?php if ($this->view['wpsg_mod_orderupload']['uploadsum'] > 0) { ?>
                        <input class="wpsg_orderupload_checkout_button" type="file" name="wpsg_mod_orderupload_file" />
                <?php } ?>
 
                <?php /* Auflistung der bereits hochgeladenen Dokumente */ ?>
                <?php if (wpsg_isSizedArray($_SESSION['wpsg']['wpsg_mod_orderupload'])) { ?>
                
                        <br />
                        
                        <label class="wpsg_checkout"><?php echo __('Bisher hochgeladene Dokumente', 'wpsg'); ?>:</label><br />
                        
                        <?php foreach ($_SESSION['wpsg']['wpsg_mod_orderupload'] as $ou_index => $ou) { ?>
                        
                                <?php /* Dokument aus der Liste löschen */ ?>
                                <a onclick="return confirm('<?php echo __('Sind Sie sich sicher, dass Sie dieses Dokument aus der Bestellung entfernen möchten?', 'wpsg'); ?>');" href="?wpsg_plugin=wpsg_mod_orderupload&wpsg_action=remove&file_index=<?php echo $ou_index; ?>" class="wpsg_mod_orderupload_removelink">
                                        <img src="<?php echo WPSG_URL; ?>views/gfx/bin_x.png" alt="<?php echo __('Löschen', 'wpsg'); ?>" />
                                </a>
                                
                                <a href="<?php echo $ou[2]; ?>"><?php echo wpsg_hspc($ou[0]); ?></a>&nbsp;<?php echo '('.wpsg_formatSize($ou[3]).')'; ?><br />  
                                        
                        <?php } ?>
                        
                <?php } ?>
                        
        </div>
        
        <?php /* Counter, wie viel MB noch übrig sind */?>
        <label class="wpsg_fileweight">
                <?php echo wpsg_translate( __('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>