Subversion Repositories wpShopGermany4

Rev

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

Rev Author Line No. Line
1230 daniel 1
<?php
2
 
3
	/**
4
	 * Template für die Integration der Produktvariablen innerhalb des Warenkorbs
5
	 */
6
 
7
?>
6512 daniel 8
 
1230 daniel 9
<?php foreach ($this->view['wpsg_mod_productvars']['data'] as $pv) { ?>
6330 hartmut 10
<div class="product_info">
11
	<div
12
	<?php if ($this->view['$bPicture'] == true) { ?>class="titlep"><?php } else { ?>class="title"><?php } ?>
13
		<?php echo __($pv['name'], 'wpsg'); ?><?php if ($pv['pflicht'] == '1') { ?><span class="wpsg_required">*</span><?php } ?>
14
	</div>
15
	<div class="valuel">
1230 daniel 16
		<?php if ($pv['typ'] == '1') { // Auswahlfeld ?>
4084 daniel 17
		<select class="<?php echo ((in_array("wpsg_mod_productvars_".$pv['id']."_".$this->view['wpsg_mod_productvars']['p']['product_index'], (array)$this->view['error']))?'wpsg_error':''); ?>" name="wpsg_mod_productvars[<?php echo $pv['id']; ?>][<?php echo $this->view['wpsg_mod_productvars']['p']['product_index']; ?>]">
1230 daniel 18
			<option value="not_set"><?php echo __('Bitte wählen', 'wpsg'); ?></option>
19
			<?php foreach ((array)$pv['auswahl'] as $option) { ?>
6330 hartmut 20
			<option <?php echo ((@wpsg_hspc($this->view['wpsg_mod_productvars']['p']['wpsg_mod_productvars'][$pv['id']]) == wpsg_hspc($option))?'selected="selected"':''); ?> value="<?php echo wpsg_hspc($option); ?>"><?php echo wpsg_hspc($option); ?></option>
1230 daniel 21
			<?php } ?>
22
		</select>
23
		<?php } else if ($pv['typ'] == '2') { // Textfeld ?>
4160 daniel 24
		<input class="<?php echo ((in_array("wpsg_mod_productvars_".$pv['id']."_".$this->view['wpsg_mod_productvars']['p']['product_index'], (array)$this->view['error']))?'wpsg_error':''); ?>" type="text" name="wpsg_mod_productvars[<?php echo $pv['id']; ?>][<?php echo $this->view['wpsg_mod_productvars']['p']['product_index']; ?>]" value="<?php echo @wpsg_hspc($this->view['wpsg_mod_productvars']['p']['wpsg_mod_productvars'][$pv['id']]); ?>" />
1230 daniel 25
		<?php } else if ($pv['typ'] == '3') { // Checkbox ?>
4317 daniel 26
		<input type="hidden" value="0" name="wpsg_mod_productvars[<?php echo $pv['id']; ?>][<?php echo $this->view['wpsg_mod_productvars']['p']['product_index']; ?>]" />
6330 hartmut 27
		<input <?php echo ((@wpsg_hspc($this->view['wpsg_mod_productvars']['p']['wpsg_mod_productvars'][$pv['id']]) == '1')?'checked="checked"':''); ?> class="<?php echo ((in_array("wpsg_mod_productvars_".$pv['id']."_".$this->view['wpsg_mod_productvars']['p']['product_index'], (array)$this->view['error']))?'wpsg_error':''); ?>" type="checkbox" value="1" name="wpsg_mod_productvars[<?php echo $pv['id']; ?>][<?php echo $this->view['wpsg_mod_productvars']['p']['product_index']; ?>]" />
7824 daniel 28
		<?php } else if ($pv['typ'] == '4') { // Textfeld mehrzeilig ?>
29
            <textarea
30
                rows="5"
31
                name="wpsg_mod_productvars[<?php echo $pv['id']; ?>][<?php echo $this->view['wpsg_mod_productvars']['p']['product_index']; ?>]"
32
                class="<?php echo ((in_array("wpsg_mod_productvars_".$pv['id']."_".$this->view['wpsg_mod_productvars']['p']['product_index'], (array)$this->view['error']))?'wpsg_error':''); ?>"><?php echo @wpsg_hspc($this->view['wpsg_mod_productvars']['p']['wpsg_mod_productvars'][$pv['id']]); ?></textarea>
33
        <?php } ?>
6330 hartmut 34
	</div>
7824 daniel 35
 
6330 hartmut 36
</div>
1230 daniel 37
<?php } ?>