Subversion Repositories wpShopGermany4

Rev

Rev 6134 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6134 Rev 6320
Line 5... Line 5...
5
	 * Template für die Ansicht einer einzelnen Produktgruppe
5
	 * Template für die Ansicht einer einzelnen Produktgruppe
6
	 * 
6
	 * 
7
	 */
7
	 */
8
 
8
 
9
	if (!$this->hasMod("wpsg_mod_produktbilder")) die(__("Dieses Template erfordert das Modul mod_produktbilder.", "wpsg"));
9
	if (!$this->hasMod("wpsg_mod_produktbilder")) die(__("Dieses Template erfordert das Modul mod_produktbilder.", "wpsg"));
10
		
10
		 
11
	// Dimension der Bilder
-
 
12
	$picW = 200;
-
 
13
	$picH = 200;	
-
 
14
	$picMode = 'c';
-
 
15
 
-
 
16
	//$p['produktattribute'][$index]['name'];		Der Name des Attributs
-
 
17
	//$p['produktattribute'][$index]['value'];		Der Wert des Attributs
-
 
18
	//$index ist die Nummer des Produktattributs
-
 
19
	
-
 
20
	//Ausgabemöglichkeit bei aktiviertem Debug Modus
-
 
21
	//wpsg_debug($this->view['data']);	
-
 
22
	
-
 
23
?>
11
?>
24
<div class="wpsg_pgruppen_single">
12
<div class="wpsg_pgruppen_single">
25
	<div class="wpsg_pgruppen_single_produkte_wrap">
13
	<div class="wpsg_pgruppen_single_produkte_wrap">
26
		<div class="wpsg_pgruppen_single_produkte">
14
		<div class="wpsg_pgruppen_single_produkte">
27
		<?php foreach ((array)$this->view['data']['produkte'] as $p) { ?>
15
		<?php foreach ((array)$this->view['data']['produkte'] as $p) { ?> 
28
		<?php //wpsg_debug($p) ?>
-
 
29
			<?php if (sizeof($p['bilder']) > 0) { ?>
16
			<?php if (sizeof($p['bilder']) > 0) { ?>
30
			<?php $image = array_rand($p['bilder']); ?>			
17
			<?php $image = array_rand($p['bilder']); ?>			
31
			<div class="wpsg_pgruppen_single_list_image">
18
			<div class="wpsg_pgruppen_single_list_image">								
32
				<?php $image_path = $this->callMod('wpsg_mod_produktbilder', 'makeTn', array($p['id'], $p['bilder'][$image], $picW, $picH, $picMode)) ?>				
-
 
33
				<a href="<?php echo $p['url'] ?>">
19
				<a href="<?php echo $p['url'] ?>">
34
					<img src="<?php echo $image_path; ?>" alt="<?php echo $p['name']; ?>"/>
20
					<?php echo wp_get_attachment_image($g['bilder'][$image]['post_id'], 'sto_productimage_555', false, array()); ?>
35
				</a>
21
				</a>
36
			</div>
22
			</div>
37
			<?php } ?>
23
			<?php } ?>
38
		<?php } ?>
24
		<?php } ?>
39
		</div>
25
		</div>