Subversion Repositories wpShopGermany4

Rev

Rev 6220 | Rev 6232 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
6220 hartmut 1
<?php
2
 
3
	/**
4
	 * Template für die Integration des Bestelluploads in den Bestellprozess
5
	 */
6
 
7
?>
8
<div class="wpsg_box wpsg_mod_orderupload">
9
 
6227 thomas 10
	<div class="wpsg_head"><?php echo __('Dateiupload:', 'wpsg'); ?>
11
 
6220 hartmut 12
		<?php if ($this->get_option('wpsg_mod_orderupload_optional') != '1') { ?>
13
 
14
			<span class="wpsg_required">*</span>
15
 
16
		<?php } ?>
17
 
18
	</div>
19
 
20
	<div class="wpsg_inner">
21
 
22
		<input class="wpsg_orderupload_checkout_button" type="file" name="wpsg_mod_orderupload_file" />
23
 
24
 		<?php /* Auflistung der bereits hochgeladenen Dokumente */ ?>
25
		<?php if (wpsg_isSizedArray($_SESSION['wpsg']['wpsg_mod_orderupload'])) { ?>
26
 
27
			<br />
28
 
29
			<label class="wpsg_checkout"><?php echo __('Bisher hochgeladene Dokumente', 'wpsg'); ?>:</label><br />
30
 
31
			<?php foreach ($_SESSION['wpsg']['wpsg_mod_orderupload'] as $ou_index => $ou) { ?>
32
 
33
				<?php /* Dokument aus der Liste löschen */ ?>
34
				<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">
35
					<img src="<?php echo WPSG_URL; ?>views/gfx/bin_x.png" alt="<?php echo __('Löschen', 'wpsg'); ?>" />
36
				</a>
37
 
38
				<a href="<?php echo $ou[2]; ?>"><?php echo wpsg_hspc($ou[0]); ?></a>&nbsp;<?php echo '('.wpsg_formatSize($ou[3]).')'; ?><br />
39
 
40
			<?php } ?>
41
 
42
		<?php } ?>
43
 
44
	</div>
45
 
6227 thomas 46
	<?php /* Counter, wie viel MB noch übrig sind */?>
47
	<label class="wpsg_fileweight">
48
		<?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'];?>
49
	</label>
50
 
6220 hartmut 51
</div>