<div class="hikashop_products mycustomclass">
<?php
if(!empty($this->rows)){
if ($this->config->get('show_quantity_field')>=2) {
?>
<form action="<?php echo hikashop_completeLink('product&task=updatecart'); ?>" method="post" name="hikashop_product_form_<?php echo $this->params->get('main_div_name'); ?>" enctype="multipart/form-data">
<?php
}
if($enableCarousel){
$this->setLayout('carousel');
echo $this->loadTemplate();
}
else
{
$columns = (int)$this->params->get('columns');
if(empty($columns) || $columns<1) $columns = 1;
$width = (int)(100/$columns)-1;
$current_column = 1;
$current_row = 1;
if(HIKASHOP_RESPONSIVE) {
switch($columns) {
case 12:
case 6:
case 4:
case 3:
case 2:
case 1:
$row_fluid = 12;
$span = $row_fluid / $columns;
break;
case 10:
case 8:
case 7:
$row_fluid = $columns;
$span = 1;
break;
case 5:
$row_fluid = 10;
$span = 2;
break;
case 9: // special case
$row_fluid = 10;
$span = 1;
break;
}
$span = constant('HK_GRID_COL_'.$span);
if($row_fluid == 12)
echo '<div class="'.HK_GRID_ROW.'">';
else
echo '<div class="row-fluid-'.$row_fluid.'">';
if(HK_GRID_THUMBNAILS !== false && HK_GRID_THUMBNAILS != '')
echo '<ul class="'.HK_GRID_THUMBNAILS.'">';
}
foreach($this->rows as $row){
if(!HIKASHOP_RESPONSIVE) {
?>
<div class="ad-hikashop_product">
<div class="hikashop_container">
<div class="hikashop_subcontainer <?php echo $this->borderClass; ?>">
<?php
} else {
?>
<<?php echo (HK_GRID_THUMBNAILS !== false && HK_GRID_THUMBNAILS != '') ? 'li' : 'div'; ?> class="<?php echo $span; ?> hikashop_product hikashop_product_column_<?php echo $current_column; ?> hikashop_product_row_<?php echo $current_row; ?>">
<div class="hikashop_container">
<div class="hikashop_subcontainer <?php echo $this->borderClass; ?>">
<?php
}
if($row->product_parent_id != 0 && isset($row->main_product_quantity_layout)){
$row->product_quantity_layout = $row->main_product_quantity_layout;
}
if(!empty($row->product_quantity_layout) && $row->product_quantity_layout != 'inherit'){
$qLayout = $row->product_quantity_layout;
}else{
$categoryQuantityLayout = '';
if(!empty($row->categories) ) {
foreach($row->categories as $category) {
if(!empty($category->category_quantity_layout) && $this->quantityDisplayType->check($category->category_quantity_layout, $app->getTemplate())) {
$categoryQuantityLayout = $category->category_quantity_layout;
break;
}
}
}
if(!empty($categoryQuantityLayout) && $categoryQuantityLayout != 'inherit'){
$qLayout = $categoryQuantityLayout;
}else{
$qLayout = $this->config->get('product_quantity_display','show_default');
}
}
JRequest::setVar('quantitylayout',$qLayout);
$this->row =& $row;
$this->setLayout('listing_'.$this->params->get('div_item_layout_type'));
echo $this->loadTemplate();
if(!HIKASHOP_RESPONSIVE) {
?>
</div>
</div>
</div>
<?php
} else {
?>
</div>
</div>
</<?php echo (HK_GRID_THUMBNAILS !== false && HK_GRID_THUMBNAILS != '') ? 'li' : 'div'; ?>>
<?php
}
if($current_column>=$columns){
$current_row++;
if(!HIKASHOP_RESPONSIVE) {
?>
<?php
}
$current_column=0;
}
$current_column++;
}
if(HIKASHOP_RESPONSIVE) {
if(HK_GRID_THUMBNAILS !== false && HK_GRID_THUMBNAILS != '')
echo '</ul>';
echo '</div>';
}
}
?>
<?php
if ($this->config->get('show_quantity_field')>=2) {
$this->ajax = 'if(hikashopCheckChangeForm(\'item\',\'hikashop_product_form_'.$this->params->get('main_div_name').'\')){ return hikashopModifyQuantity(\'\',field,1,\'hikashop_product_form_'.$this->params->get('main_div_name').'\'); } return false;';
$this->row = new stdClass();
$this->row->prices = array($this->row);
$this->row->product_quantity = -1;
$this->row->product_min_per_order = 0;
$this->row->product_max_per_order = -1;
$this->row->product_sale_start = 0;
$this->row->product_sale_end = 0;
$this->row->prices = array('filler');
$this->params->set('show_quantity_field',2);
$this->setLayout('quantity');
echo $this->loadTemplate();
if(!empty($this->ajax) && $this->config->get('redirect_url_after_add_cart','stay_if_cart')=='ask_user'){
?>
<input type="hidden" name="popup" value="1"/>
<?php
}
?>
<input type="hidden" name="hikashop_cart_type_0" id="hikashop_cart_type_0" value="cart"/>
<input type="hidden" name="add" value="1"/>
<input type="hidden" name="ctrl" value="product"/>
<input type="hidden" name="task" value="updatecart"/>
<input type="hidden" name="return_url" value="<?php echo urlencode(base64_encode(urldecode($this->redirect_url)));?>"/>
</form>
<?php
}
}
?>
</div>