Guest User

Untitled

a guest
Jun 18th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.35 KB | None | 0 0
  1.     <?php
  2.         $img = 0;
  3.         if (isset($node->field_image_cache[0]['filepath'])) {
  4.             foreach($node->field_image_cache as $imageCache) {
  5.                 print "<a href='javascript:changePImg($img)' onMouseOver='changePImg($img)'>";
  6.                 print theme_imagecache('product_thumbnail', $imageCache['filepath']);
  7.                 print "</a>";
  8.                 $img++;        
  9.             }
  10.         }
  11.     ?>
Add Comment
Please, Sign In to add comment