Your IP : 216.73.216.47


Current Path : /proc/1908984/root/proc/thread-self/root/proc/self/root/proc/1908984/root/var/tmp/
Upload File :
Current File : //proc/1908984/root/proc/thread-self/root/proc/self/root/proc/1908984/root/var/tmp/phpUhyoWf

public_html/components/com_virtuemart/views/productdetails/tmpl/default_images_additional.php000064400000003242152440114730031761 0ustar00home/digilove<?php
/**
 *
 * Show the product details page
 *
 * @package	VirtueMart
 * @subpackage
 * @author Max Milbers, Valerie Isaksen

 * @link https://virtuemart.net
 * @copyright Copyright (c) 2004 - 2010 VirtueMart Team. All rights reserved.
 * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
 * VirtueMart is free software. This version may have been modified pursuant
 * to the GNU General Public License, and as distributed it includes or
 * is derivative of works licensed under the GNU General Public License or
 * other free or open source software licenses.
 * @version $Id: default_images.php 7784 2014-03-25 00:18:44Z Milbo $
 */
// Check to ensure this file is included in Joomla!
defined('_JEXEC') or die('Restricted access');
?>
<div class="additional-images">
	<?php
	$start_image = VmConfig::get('add_img_main', 1) ? 0 : 1;
	for ($i = $start_image; $i < count($this->product->images); $i++) {
		$image = $this->product->images[$i];
		$descr = '';// $image->file_description;
		?>
		<div class="floatleft">
			<?php
			if(VmConfig::get('add_img_main', 1)) {
				echo $image->displayMediaThumb(array('class'=>"product-image", 'style'=>"cursor: pointer", 'data-descr'=>$image->file_description), false, '', true,$descr);
				echo '<a href="'. $image->file_url .'"  class="product-image image-'. $i .'" style="display:none;" title="'. $image->file_meta .'" rel="vm-additional-images"></a>';
			} else {
				if(VmConfig::get('add_thumb_use_descr', false)) {
					$image->file_meta = $image->file_description;
				}
				echo $image->displayMediaThumb('',true,"rel='vm-additional-images'",true,$descr);
			}
			?>
		</div>
	<?php
	}
	?>
	<div class="clear"></div>
</div>