Subversion Repositories wpShopGermany4

Rev

Rev 6234 | 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">
8299 karl 21
 
6234 hartmut 22
		<?php if ($this->view['wpsg_mod_orderupload']['uploadsum'] > 0) { ?>
23
			<input class="wpsg_orderupload_checkout_button" type="file" name="wpsg_mod_orderupload_file" />
24
 		<?php } ?>
6220 hartmut 25
 
26
 		<?php /* Auflistung der bereits hochgeladenen Dokumente */ ?>
27
		<?php if (wpsg_isSizedArray($_SESSION['wpsg']['wpsg_mod_orderupload'])) { ?>
28
 
29
			<br />
30
 
31
			<label class="wpsg_checkout"><?php echo __('Bisher hochgeladene Dokumente', 'wpsg'); ?>:</label><br />
32
 
33
			<?php foreach ($_SESSION['wpsg']['wpsg_mod_orderupload'] as $ou_index => $ou) { ?>
34
 
35
				<?php /* Dokument aus der Liste löschen */ ?>
36
				<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">
37
					<img src="<?php echo WPSG_URL; ?>views/gfx/bin_x.png" alt="<?php echo __('Löschen', 'wpsg'); ?>" />
38
				</a>
39
 
40
				<a href="<?php echo $ou[2]; ?>"><?php echo wpsg_hspc($ou[0]); ?></a>&nbsp;<?php echo '('.wpsg_formatSize($ou[3]).')'; ?><br />
41
 
42
			<?php } ?>
43
 
44
		<?php } ?>
45
 
46
	</div>
47
 
6227 thomas 48
	<?php /* Counter, wie viel MB noch übrig sind */?>
49
	<label class="wpsg_fileweight">
8299 karl 50
		<?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'] );?>
6227 thomas 51
	</label>
52
 
6220 hartmut 53
</div>