User 'prodigitdoliba' has exceeded the 'max_questions' resource (current value: 40000)
SELECT `priority`, `id_specific_price_priority`
FROM `ps_specific_price_priority`
WHERE `id_product` = 5386
ORDER BY `id_specific_price_priority` DESC
LIMIT 1
at line 605 in file classes/db/Db.php
599. WebserviceRequest::getInstance()->setError(500, '[SQL Error] '.$this->getMsgError().'. From '.(isset($dbg[3]['class']) ? $dbg[3]['class'] : '').'->'.$dbg[3]['function'].'() Query was : '.$sql, 97);
600. }
601. else if (_PS_DEBUG_SQL_ && $errno && !defined('PS_INSTALLATION_IN_PROGRESS'))
602. {
603. if ($sql)
604. throw new PrestaShopDatabaseException($this->getMsgError().'<br /><br /><pre>'.$sql.'</pre>');
605. throw new PrestaShopDatabaseException($this->getMsgError());
606. }
607. }
608.
609. /**
301. if ($sql instanceof DbQuery)
302. $sql = $sql->build();
303.
304. $this->result = $this->_query($sql);
305. if (_PS_DEBUG_SQL_)
306. $this->displayError($sql);
307. return $this->result;
308. }
309.
310. /**
311. * Execute an INSERT query
Argument [0] SELECT `priority`, `id_specific_price_priority` FROM `ps_specific_price_priority` WHERE `id_product` = 5386 ORDER BY `id_specific_price_priority` DESC LIMIT 1
515. {
516. $this->last_cached = true;
517. return $result;
518. }
519.
520. $this->result = $this->query($sql);
521. if (!$this->result)
522. return false;
523.
524. $this->last_cached = false;
525. $result = $this->nextRow($this->result);
Argument [0] SELECT `priority`, `id_specific_price_priority` FROM `ps_specific_price_priority` WHERE `id_product` = 5386 ORDER BY `id_specific_price_priority` DESC LIMIT 1
538. public function getValue($sql, $use_cache = true)
539. {
540. if ($sql instanceof DbQuery)
541. $sql = $sql->build();
542.
543. if (!$result = $this->getRow($sql, $use_cache))
544. return false;
545. return array_shift($result);
546. }
547.
548. /**
Argument [0] SELECT `priority`, `id_specific_price_priority` FROM `ps_specific_price_priority` WHERE `id_product` = 5386 ORDER BY `id_specific_price_priority` DESC Argument [1] 1
183. self::$_cache_priorities[(int)$id_product] = Db::getInstance(_PS_USE_SQL_SLAVE_)->getValue('
184. SELECT `priority`, `id_specific_price_priority`
185. FROM `'._DB_PREFIX_.'specific_price_priority`
186. WHERE `id_product` = '.(int)$id_product.'
187. ORDER BY `id_specific_price_priority` DESC
188. ');
189. }
190.
191. $priority = self::$_cache_priorities[(int)$id_product];
192.
193. if (!$priority)
Argument [0] SELECT `priority`, `id_specific_price_priority` FROM `ps_specific_price_priority` WHERE `id_product` = 5386 ORDER BY `id_specific_price_priority` DESC
164. $select = '(';
165.
166. $now = date('Y-m-d H:i:s');
167. $select .= ' IF (\''.$now.'\' >= `from` AND \''.$now.'\' <= `to`, '.pow(2, 0).', 0) + ';
168.
169. $priority = SpecificPrice::getPriority($id_product);
170. foreach (array_reverse($priority) as $k => $field)
171. $select .= ' IF (`'.bqSQL($field).'` = '.(int)$$field.', '.pow(2, $k + 1).', 0) + ';
172.
173. return rtrim($select, ' +').') AS `score`';
174. }
Argument [0] 5386
209. $key = ((int)$id_product.'-'.(int)$id_shop.'-'.(int)$id_currency.'-'.(int)$id_country.'-'.(int)$id_group.'-'.(int)$quantity.'-'.(int)$id_product_attribute.'-'.(int)$id_cart.'-'.(int)$real_quantity);
210. if (!array_key_exists($key, self::$_specificPriceCache))
211. {
212. $now = date('Y-m-d H:i:s');
213. self::$_specificPriceCache[$key] = Db::getInstance(_PS_USE_SQL_SLAVE_)->getRow('
214. SELECT *, '.SpecificPrice::_getScoreQuery($id_product, $id_shop, $id_currency, $id_country, $id_group, $id_customer).'
215. FROM `'._DB_PREFIX_.'specific_price`
216. WHERE `id_product` IN (0, '.(int)$id_product.')
217. AND `id_product_attribute` IN (0, '.(int)$id_product_attribute.')
218. AND `id_shop` IN (0, '.(int)$id_shop.')
219. AND `id_currency` IN (0, '.(int)$id_currency.')
Argument [0] 5386 Argument [1] 41 Argument [2] 1 Argument [3] 8 Argument [4] 1 Argument [5]
2567. $quantity,
2568. $id_product_attribute,
2569. $id_customer,
2570. $id_cart,
2571. $real_quantity
2572. );
2573.
2574. if (isset(self::$_prices[$cache_id]))
2575. return self::$_prices[$cache_id];
2576.
2577. // fetch price & attribute price
Argument [0] 5386 Argument [1] 41 Argument [2] 1 Argument [3] 8 Argument [4] 1 Argument [5] 0 Argument [6] Argument [7] Argument [8] Argument [9] 1
2509. $use_group_reduction,
2510. $id_customer,
2511. $use_customer_price,
2512. $id_cart,
2513. $quantity
2514. );
2515. }
2516.
2517. /**
2518. * Price calculation / Get product price
2519. *
Argument [0] 41 Argument [1] 5386 Argument [2] Argument [3] 8 Argument [4] 0 Argument [5] 0 Argument [6] 1 Argument [7] 1 Argument [8] 0 Argument [9] Argument [10] 6 Argument [11] Argument [12] 1 Argument [13] 1 Argument [14] Argument [15] 1 Argument [16] Argument [17] 1 Argument [18] Argument [19] 1
3677. $row['price_tax_exc'] = Product::getPriceStatic(
3678. (int)$row['id_product'],
3679. false,
3680. ((isset($row['id_product_attribute']) && !empty($row['id_product_attribute'])) ? (int)$row['id_product_attribute'] : null),
3681. (self::$_taxCalculationMethod == PS_TAX_EXC ? 2 : 6)
3682. );
3683.
3684. if (self::$_taxCalculationMethod == PS_TAX_EXC)
3685. {
3686. $row['price_tax_exc'] = Tools::ps_round($row['price_tax_exc'], 2);
3687. $row['price'] = Product::getPriceStatic(
Argument [0] 5386 Argument [1] Argument [2] Argument [3] 6
3805. {
3806. $results_array = array();
3807.
3808. if (is_array($query_result))
3809. foreach ($query_result as $row)
3810. if ($row2 = Product::getProductProperties($id_lang, $row))
3811. $results_array[] = $row2;
3812.
3813. return $results_array;
3814. }
3815.
Argument [0]
5
Argument [1]
Array
(
[id_product] => 5386
[id_supplier] => 0
[id_manufacturer] => 0
[id_category_default] => 840
[id_shop_default] => 41
[id_tax_rules_group] => 1
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 33.333333
[wholesale_price] => 0.000000
[unity] =>
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => 62-77-SUR
[supplier_reference] => 62-77-SUR
[location] =>
[width] => 0.000000
[height] => 0.000000
[depth] => 0.000000
[weight] => 0.100000
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[redirect_type] => 404
[id_product_redirected] => 0
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2023-12-01 16:22:50
[date_upd] => 2023-12-12 15:21:06
[advanced_stock_management] => 0
[id_shop] => 41
[id_product_attribute] =>
[product_attribute_minimal_quantity] =>
[description] => La bague en laiton permet d'utiliser des filtres d'un diamètre différent de votre objectif. Elle a des côtés moletés pour offrir une prise plus texturée lors du montage ou du retrait d'un objectif. Elle est dotée d'une construction en laiton pour éviter les grippages et le blocage, et une finition noire mate pour minimiser les reflets. Un étui rigide de protection est inclus.aa
[description_short] => Permet d'utiliser des filtres de 77 mm sur un objectif de 62mm
[available_now] =>
[available_later] =>
[link_rewrite] => bague-adaptable-62mm-77mm
[meta_description] =>
[meta_keywords] =>
[meta_title] =>
[name] => Bague adaptable 62mm-77mm
[id_image] => 12002
[legend] =>
[manufacturer_name] =>
[category_default] => BAGUE ADAPTABLE
[new] => 0
[orderprice] => 33.333333
)
679.
680. if (!$result)
681. return array();
682.
683. /* Modify SQL result */
684. return Product::getProductsProperties($id_lang, $result);
685. }
686.
687. /**
688. * Return main categories
689. *
Argument [0]
5
Argument [1]
Array
(
[0] => Array
(
[id_product] => 5382
[id_supplier] => 0
[id_manufacturer] => 0
[id_category_default] => 840
[id_shop_default] => 41
[id_tax_rules_group] => 1
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 33.333333
[wholesale_price] => 0.000000
[unity] =>
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => 49-67-SUR
[supplier_reference] => 49-67-SUR
[location] =>
[width] => 0.000000
[height] => 0.000000
[depth] => 0.000000
[weight] => 0.100000
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[redirect_type] => 404
[id_product_redirected] => 0
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2023-12-01 16:22:50
[date_upd] => 2023-12-07 16:47:15
[advanced_stock_management] => 0
[id_shop] => 41
[id_product_attribute] =>
[product_attribute_minimal_quantity] =>
[description] => La bague en laiton permet d'utiliser des filtres de 67 mm sur un objectif de 49 mm. Elle a des côtés moletés pour offrir une prise plus texturée lors du montage ou du retrait d'un objectif. Elle est dotée d'une construction en laiton pour éviter les grippages et le blocage, et une finition noire mate pour minimiser les reflets. Un étui rigide de protection est inclus.
[description_short] => Permet d'utiliser des filtres de 67 mm sur un objectif de 49 mm.
[available_now] =>
[available_later] =>
[link_rewrite] => bague-adaptable-49-67mm
[meta_description] =>
[meta_keywords] =>
[meta_title] =>
[name] => Bague adaptable 49-67mm
[id_image] => 11998
[legend] =>
[manufacturer_name] =>
[category_default] => BAGUE ADAPTABLE
[new] => 0
[orderprice] => 33.333333
)
[1] => Array
(
[id_product] => 5383
[id_supplier] => 0
[id_manufacturer] => 0
[id_category_default] => 840
[id_shop_default] => 41
[id_tax_rules_group] => 1
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 33.333333
[wholesale_price] => 0.000000
[unity] =>
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => 52-67-SUR
[supplier_reference] => 52-67-SUR
[location] =>
[width] => 0.000000
[height] => 0.000000
[depth] => 0.000000
[weight] => 0.100000
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[redirect_type] => 404
[id_product_redirected] => 0
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2023-12-01 16:22:50
[date_upd] => 2023-12-07 16:47:15
[advanced_stock_management] => 0
[id_shop] => 41
[id_product_attribute] =>
[product_attribute_minimal_quantity] =>
[description] => La bague en laiton permet d'utiliser des filtres dun diamètre différent de votre objectif. Elle a des côtés moletés pour offrir une prise plus texturée lors du montage ou du retrait d'un objectif. Elle est dotée d'une construction en laiton pour éviter les grippages et le blocage, et une finition noire mate pour minimiser les reflets. Un étui rigide de protection est inclus.
[description_short] => Permet d'utiliser des filtres de 67 mm sur un objectif de 52 mm.
[available_now] =>
[available_later] =>
[link_rewrite] => bague-adaptable-52mm-67mm
[meta_description] =>
[meta_keywords] =>
[meta_title] =>
[name] => Bague adaptable 52mm-67mm
[id_image] => 11999
[legend] =>
[manufacturer_name] =>
[category_default] => BAGUE ADAPTABLE
[new] => 0
[orderprice] => 33.333333
)
[2] => Array
(
[id_product] => 5384
[id_supplier] => 0
[id_manufacturer] => 0
[id_category_default] => 840
[id_shop_default] => 41
[id_tax_rules_group] => 1
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 33.333333
[wholesale_price] => 0.000000
[unity] =>
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => 55-67-SUR
[supplier_reference] => 55-67-SUR
[location] =>
[width] => 0.000000
[height] => 0.000000
[depth] => 0.000000
[weight] => 0.100000
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[redirect_type] => 404
[id_product_redirected] => 0
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2023-12-01 16:22:50
[date_upd] => 2023-12-12 15:20:55
[advanced_stock_management] => 0
[id_shop] => 41
[id_product_attribute] =>
[product_attribute_minimal_quantity] =>
[description] => La bague en laiton permet d'utiliser des filtres d'un diamètre différent de votre objectif. Elle a des côtés moletés pour offrir une prise plus texturée lors du montage ou du retrait d'un objectif. Elle est dotée d'une construction en laiton pour éviter les grippages et le blocage, et une finition noire mate pour minimiser les reflets. Un étui rigide de protection est inclus.
[description_short] => Permet d'utiliser des filtres de 67 mm sur un objectif de 55 mm.
[available_now] =>
[available_later] =>
[link_rewrite] => bague-adaptable-55mm-67mm
[meta_description] =>
[meta_keywords] =>
[meta_title] =>
[name] => Bague adaptable 55mm-67mm
[id_image] => 12000
[legend] =>
[manufacturer_name] =>
[category_default] => BAGUE ADAPTABLE
[new] => 0
[orderprice] => 33.333333
)
[3] => Array
(
[id_product] => 5385
[id_supplier] => 0
[id_manufacturer] => 0
[id_category_default] => 840
[id_shop_default] => 41
[id_tax_rules_group] => 1
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 33.333333
[wholesale_price] => 0.000000
[unity] =>
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => 58-67-SUR
[supplier_reference] => 58-67-SUR
[location] =>
[width] => 0.000000
[height] => 0.000000
[depth] => 0.000000
[weight] => 0.100000
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[redirect_type] => 404
[id_product_redirected] => 0
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2023-12-01 16:22:50
[date_upd] => 2023-12-12 15:21:01
[advanced_stock_management] => 0
[id_shop] => 41
[id_product_attribute] =>
[product_attribute_minimal_quantity] =>
[description] => La bague en laiton permet d'utiliser des filtres d'un diamètre différent de votre objectif. Elle a des côtés moletés pour offrir une prise plus texturée lors du montage ou du retrait d'un objectif. Elle est dotée d'une construction en laiton pour éviter les grippages et le blocage, et une finition noire mate pour minimiser les reflets. Un étui rigide de protection est inclus.
[description_short] => Permet d'utiliser des filtres de 67 mm sur un objectif de 58 mm.
[available_now] =>
[available_later] =>
[link_rewrite] => bague-adaptable-58mm-67mm
[meta_description] =>
[meta_keywords] =>
[meta_title] =>
[name] => Bague adaptable 58mm-67mm
[id_image] => 12001
[legend] =>
[manufacturer_name] =>
[category_default] => BAGUE ADAPTABLE
[new] => 0
[orderprice] => 33.333333
)
[4] => Array
(
[id_product] => 5386
[id_supplier] => 0
[id_manufacturer] => 0
[id_category_default] => 840
[id_shop_default] => 41
[id_tax_rules_group] => 1
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 33.333333
[wholesale_price] => 0.000000
[unity] =>
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => 62-77-SUR
[supplier_reference] => 62-77-SUR
[location] =>
[width] => 0.000000
[height] => 0.000000
[depth] => 0.000000
[weight] => 0.100000
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[redirect_type] => 404
[id_product_redirected] => 0
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2023-12-01 16:22:50
[date_upd] => 2023-12-12 15:21:06
[advanced_stock_management] => 0
[id_shop] => 41
[id_product_attribute] =>
[product_attribute_minimal_quantity] =>
[description] => La bague en laiton permet d'utiliser des filtres d'un diamètre différent de votre objectif. Elle a des côtés moletés pour offrir une prise plus texturée lors du montage ou du retrait d'un objectif. Elle est dotée d'une construction en laiton pour éviter les grippages et le blocage, et une finition noire mate pour minimiser les reflets. Un étui rigide de protection est inclus.aa
[description_short] => Permet d'utiliser des filtres de 77 mm sur un objectif de 62mm
[available_now] =>
[available_later] =>
[link_rewrite] => bague-adaptable-62mm-77mm
[meta_description] =>
[meta_keywords] =>
[meta_title] =>
[name] => Bague adaptable 62mm-77mm
[id_image] => 12002
[legend] =>
[manufacturer_name] =>
[category_default] => BAGUE ADAPTABLE
[new] => 0
[orderprice] => 33.333333
)
[5] => Array
(
[id_product] => 5387
[id_supplier] => 0
[id_manufacturer] => 0
[id_category_default] => 840
[id_shop_default] => 41
[id_tax_rules_group] => 1
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 1
[minimal_quantity] => 1
[price] => 33.333333
[wholesale_price] => 0.000000
[unity] =>
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => 62-82-SUR
[supplier_reference] => 62-82-SUR
[location] =>
[width] => 0.000000
[height] => 0.000000
[depth] => 0.000000
[weight] => 0.100000
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[redirect_type] => 404
[id_product_redirected] => 0
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2023-12-01 16:22:50
[date_upd] => 2023-12-12 15:21:11
[advanced_stock_management] => 0
[id_shop] => 41
[id_product_attribute] =>
[product_attribute_minimal_quantity] =>
[description] => La bague en laiton permet d'utiliser des filtres d'un diamètre différent de votre objectif. Elle a des côtés moletés pour offrir une prise plus texturée lors du montage ou du retrait d'un objectif. Elle est dotée d'une construction en laiton pour éviter les grippages et le blocage, et une finition noire mate pour minimiser les reflets. Un étui rigide de protection est inclus.
[description_short] => Permet d'utiliser des filtres de 82 mm sur un objectif de 62 mm.
[available_now] =>
[available_later] =>
[link_rewrite] => bague-adaptable-62mm-82mm
[meta_description] =>
[meta_keywords] =>
[meta_title] =>
[name] => Bague adaptable 62mm-82mm
[id_image] => 12003
[legend] =>
[manufacturer_name] =>
[category_default] => BAGUE ADAPTABLE
[new] => 0
[orderprice] => 33.333333
)
[6] => Array
(
[id_product] => 5388
[id_supplier] => 0
[id_manufacturer] => 0
[id_category_default] => 840
[id_shop_default] => 41
[id_tax_rules_group] => 1
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 33.333333
[wholesale_price] => 0.000000
[unity] =>
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => 72-82-SUR
[supplier_reference] => 72-82-SUR
[location] =>
[width] => 0.000000
[height] => 0.000000
[depth] => 0.000000
[weight] => 0.100000
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[redirect_type] => 404
[id_product_redirected] => 0
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2023-12-01 16:22:50
[date_upd] => 2023-12-12 15:21:16
[advanced_stock_management] => 0
[id_shop] => 41
[id_product_attribute] =>
[product_attribute_minimal_quantity] =>
[description] => La bague en laiton permet d'utiliser des filtres d'un diamètre différent de votre objectif. Elle a des côtés moletés pour offrir une prise plus texturée lors du montage ou du retrait d'un objectif. Elle est dotée d'une construction en laiton pour éviter les grippages et le blocage, et une finition noire mate pour minimiser les reflets. Un étui rigide de protection est inclus.
[description_short] => Permet d'utiliser des filtres de 82 mm sur un objectif de 72 mm.
[available_now] =>
[available_later] =>
[link_rewrite] => bague-adaptable-72mm-82mm
[meta_description] =>
[meta_keywords] =>
[meta_title] =>
[name] => Bague adaptable 72mm-82mm
[id_image] => 12004
[legend] =>
[manufacturer_name] =>
[category_default] => BAGUE ADAPTABLE
[new] => 0
[orderprice] => 33.333333
)
[7] => Array
(
[id_product] => 5389
[id_supplier] => 0
[id_manufacturer] => 0
[id_category_default] => 840
[id_shop_default] => 41
[id_tax_rules_group] => 1
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 2
[minimal_quantity] => 1
[price] => 33.333333
[wholesale_price] => 0.000000
[unity] =>
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => 77-82-SUR
[supplier_reference] => 77-82-SUR
[location] =>
[width] => 0.000000
[height] => 0.000000
[depth] => 0.000000
[weight] => 0.100000
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[redirect_type] => 404
[id_product_redirected] => 0
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2023-12-01 16:22:50
[date_upd] => 2023-12-12 15:21:19
[advanced_stock_management] => 0
[id_shop] => 41
[id_product_attribute] =>
[product_attribute_minimal_quantity] =>
[description] => La bague en laiton permet d'utiliser des filtres d'un diamètre différent de votre objectif. Elle a des côtés moletés pour offrir une prise plus texturée lors du montage ou du retrait d'un objectif. Elle est dotée d'une construction en laiton pour éviter les grippages et le blocage, et une finition noire mate pour minimiser les reflets. Un étui rigide de protection est inclus.
[description_short] => Permet d'utiliser des filtres de 82 mm sur un objectif de 77 mm.
[available_now] =>
[available_later] =>
[link_rewrite] => bague-adaptable-77mm-82mm
[meta_description] =>
[meta_keywords] =>
[meta_title] =>
[name] => Bague adaptable 77mm-82mm
[id_image] => 12005
[legend] =>
[manufacturer_name] =>
[category_default] => BAGUE ADAPTABLE
[new] => 0
[orderprice] => 33.333333
)
[8] => Array
(
[id_product] => 5390
[id_supplier] => 0
[id_manufacturer] => 0
[id_category_default] => 840
[id_shop_default] => 41
[id_tax_rules_group] => 1
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 33.333333
[wholesale_price] => 0.000000
[unity] =>
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => 67-77-SUR
[supplier_reference] => 67-77-SUR
[location] =>
[width] => 0.000000
[height] => 0.000000
[depth] => 0.000000
[weight] => 0.100000
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[redirect_type] => 404
[id_product_redirected] => 0
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2023-12-01 16:22:50
[date_upd] => 2023-12-12 15:21:27
[advanced_stock_management] => 0
[id_shop] => 41
[id_product_attribute] =>
[product_attribute_minimal_quantity] =>
[description] => La bague en laiton permet d'utiliser des filtres d'un diamètre différent de votre objectif. Elle a des côtés moletés pour offrir une prise plus texturée lors du montage ou du retrait d'un objectif. Elle est dotée d'une construction en laiton pour éviter les grippages et le blocage, et une finition noire mate pour minimiser les reflets. Un étui rigide de protection est inclus.aa
[description_short] => Permet d'utiliser des filtres de 77 mm sur un objectif de 67mm
[available_now] =>
[available_later] =>
[link_rewrite] => bague-adaptable-77mm-67mm
[meta_description] =>
[meta_keywords] =>
[meta_title] =>
[name] => Bague adaptable 77mm-67mm
[id_image] => 12006
[legend] =>
[manufacturer_name] =>
[category_default] => BAGUE ADAPTABLE
[new] => 0
[orderprice] => 33.333333
)
[9] => Array
(
[id_product] => 5391
[id_supplier] => 0
[id_manufacturer] => 0
[id_category_default] => 840
[id_shop_default] => 41
[id_tax_rules_group] => 1
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 33.333333
[wholesale_price] => 0.000000
[unity] =>
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => 67-82-SUR
[supplier_reference] => 67-82-SUR
[location] =>
[width] => 0.000000
[height] => 0.000000
[depth] => 0.000000
[weight] => 0.100000
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[redirect_type] => 404
[id_product_redirected] => 0
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2023-12-01 16:22:50
[date_upd] => 2023-12-12 15:21:42
[advanced_stock_management] => 0
[id_shop] => 41
[id_product_attribute] =>
[product_attribute_minimal_quantity] =>
[description] => La bague en laiton permet d'utiliser des filtres d'un diamètre différent de votre objectif. Elle a des côtés moletés pour offrir une prise plus texturée lors du montage ou du retrait d'un objectif. Elle est dotée d'une construction en laiton pour éviter les grippages et le blocage, et une finition noire mate pour minimiser les reflets. Un étui rigide de protection est inclus.
[description_short] => Permet d'utiliser des filtres de 82 mm sur un objectif de 67 mm.
[available_now] =>
[available_later] =>
[link_rewrite] => bague-adaptable-67mm-82mm
[meta_description] =>
[meta_keywords] =>
[meta_title] =>
[name] => Bague adaptable 67mm-82mm
[id_image] => 12007
[legend] =>
[manufacturer_name] =>
[category_default] => BAGUE ADAPTABLE
[new] => 0
[orderprice] => 33.333333
)
[10] => Array
(
[id_product] => 5392
[id_supplier] => 0
[id_manufacturer] => 0
[id_category_default] => 840
[id_shop_default] => 41
[id_tax_rules_group] => 1
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 33.333333
[wholesale_price] => 0.000000
[unity] =>
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => 62-67-SUR
[supplier_reference] => 62-67-SUR
[location] =>
[width] => 0.000000
[height] => 0.000000
[depth] => 0.000000
[weight] => 0.100000
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[redirect_type] => 404
[id_product_redirected] => 0
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2023-12-01 16:22:50
[date_upd] => 2023-12-12 15:21:37
[advanced_stock_management] => 0
[id_shop] => 41
[id_product_attribute] =>
[product_attribute_minimal_quantity] =>
[description] => La bague en laiton permet d'utiliser des filtres d'un diamètre différent de votre objectif. Elle a des côtés moletés pour offrir une prise plus texturée lors du montage ou du retrait d'un objectif. Elle est dotée d'une construction en laiton pour éviter les grippages et le blocage, et une finition noire mate pour minimiser les reflets. Un étui rigide de protection est inclus.
[description_short] => Permet d'utiliser des filtres de 67 mm sur un objectif de 62 mm.
[available_now] =>
[available_later] =>
[link_rewrite] => bague-adaptable-62mm-67mm
[meta_description] =>
[meta_keywords] =>
[meta_title] =>
[name] => Bague adaptable 62mm-67mm
[id_image] => 12008
[legend] =>
[manufacturer_name] =>
[category_default] => BAGUE ADAPTABLE
[new] => 0
[orderprice] => 33.333333
)
[11] => Array
(
[id_product] => 5393
[id_supplier] => 0
[id_manufacturer] => 0
[id_category_default] => 840
[id_shop_default] => 41
[id_tax_rules_group] => 1
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 33.333333
[wholesale_price] => 0.000000
[unity] =>
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => 72-77-SUR
[supplier_reference] => 72-77-SUR
[location] =>
[width] => 0.000000
[height] => 0.000000
[depth] => 0.000000
[weight] => 0.100000
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[redirect_type] => 404
[id_product_redirected] => 0
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2023-12-01 16:22:50
[date_upd] => 2023-12-12 15:21:47
[advanced_stock_management] => 0
[id_shop] => 41
[id_product_attribute] =>
[product_attribute_minimal_quantity] =>
[description] => La bague en laiton permet d'utiliser des filtres d'un diamètre différent de votre objectif. Elle a des côtés moletés pour offrir une prise plus texturée lors du montage ou du retrait d'un objectif. Elle est dotée d'une construction en laiton pour éviter les grippages et le blocage, et une finition noire mate pour minimiser les reflets. Un étui rigide de protection est inclus.
[description_short] => Permet d'utiliser des filtres de 77 mm sur un objectif de 72 mm.
[available_now] =>
[available_later] =>
[link_rewrite] => bague-adaptable-72mm-77mm
[meta_description] =>
[meta_keywords] =>
[meta_title] =>
[name] => Bague adaptable 72mm-77mm
[id_image] => 12009
[legend] =>
[manufacturer_name] =>
[category_default] => BAGUE ADAPTABLE
[new] => 0
[orderprice] => 33.333333
)
)
678. else
679. {
680.
681. if((int)$id_shop != 2 && (int)$id_shop != 6 && (int)$id_shop != 7 && (int)$id_shop != 17 && (int)$id_shop != 18 && (int)$id_shop != 19 && (int)$id_shop != 20 ) //SEVENOAK [6] OPTECHUSA [5] MEIKE [14]
682. {
683. $products = $category->getProducts((int)$id_lang, 1,100000);
684.
685. if(count($products))
686. {
687. $this->_menu .= '<ul>';
688.
Argument [0] 5 Argument [1] 1 Argument [2] 100000
668. $this->_menu .= '<ul id="ssmenuss'.$pos.'" class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink" data-bs-popper="none">';
669.
670. foreach ($children as $child)
671. {
672. $pos ++;
673. $this->getCategory((int)$child['id_category'], (int)$id_lang, (int)$child['id_shop'], $pos +10);
674. }
675.
676. $this->_menu .= '</ul>';
677. }
678. else
Argument [0] 840 Argument [1] 5 Argument [2] 41 Argument [3] 23
523.
524. switch (substr($item, 0, strlen($value[1])))
525. {
526. case 'CAT':
527. $pos++;
528. $this->getCategory((int)$id,false,false,$pos);
529. break;
530.
531. case 'PRD':
532. $selected = ($this->page_name == 'product' && (Tools::getValue('id_product') == $id)) ? ' class="sfHover"' : '';
533. $product = new Product((int)$id, true, (int)$id_lang);
Argument [0] 838 Argument [1] Argument [2] Argument [3] 10
769. $smarty_cache_id = 'blocktopmenu-'.$this->page_name.'-'.(int)$this->context->shop->id.'-'.implode(', ',$this->user_groups).'-'.(int)$this->context->language->id.'-'.(int)Tools::getValue('id_category').'-'.(int)Tools::getValue('id_manufacturer').'-'.(int)Tools::getValue('id_supplier').'-'.(int)Tools::getValue('id_cms').'-'.(int)Tools::getValue('id_product');
770. $this->context->smarty->cache_lifetime = 31536000;
771. Tools::enableCache();
772. if (!$this->isCached('blocktopmenu.tpl', $smarty_cache_id))
773. {
774. $this->makeMenu();
775. $this->smarty->assign('MENU_SEARCH', Configuration::get('MOD_BLOCKTOPMENU_SEARCH'));
776. $this->smarty->assign('MENU', $this->_menu);
777. $this->smarty->assign('this_path', $this->_path);
778. }
779.
411. {
412. $hook_args['altern'] = ++$altern;
413.
414. // Call hook method
415. if ($hook_callable)
416. $display = $moduleInstance->{'hook'.$hook_name}($hook_args);
417. else if ($hook_retro_callable)
418. $display = $moduleInstance->{'hook'.$retro_hook_name}($hook_args);
419. // Live edit
420. if (!$array_return && $array['live_edit'] && Tools::isSubmit('live_edit') && Tools::getValue('ad') && Tools::getValue('liveToken') == Tools::getAdminToken('AdminModulesPositions'.(int)Tab::getIdFromClassName('AdminModulesPositions').(int)Tools::getValue('id_employee')))
421. {
Argument [0]
Array
(
[cookie] => Cookie Object
(
[_content:protected] => Array
(
[date_add] => 2026-04-03 00:43:35
[id_lang] => 5
[id_currency] => 1
)
[_name:protected] => 9a9cc3cf585b62297a3f0f00b33a9a3a
[_expire:protected] => 1776897815
[_domain:protected] => polarpro-france.fr
[_path:protected] => /
[_cipherTool:protected] => Blowfish Object
(
[_P] => Array
(
[0] => 1482974680
[1] => 1555620348
[2] => 1793668873
[3] => 1071837400
[4] => -1081655772
[5] => -998352277
[6] => 1947780959
[7] => -645230204
[8] => 207647236
[9] => 19144915
[10] => -144358597
[11] => 1113164208
[12] => -895606521
[13] => 1576671413
[14] => 1825072526
[15] => -1624950208
[16] => 857674500
[17] => 93773326
)
[_S] => Array
(
[0] => Array
(
[0] => -1380475472
[1] => 1705994999
[2] => 1735192059
[3] => 548764412
[4] => -1948326005
[5] => 460117559
[6] => 32503558
[7] => -1361949553
[8] => 467086849
[9] => -1432671818
[10] => -315321488
[11] => -184207161
[12] => 146787186
[13] => -192143131
[14] => 1751346347
[15] => -1695507260
[16] => 1325679093
[17] => -1984310226
[18] => -1723971119
[19] => -1738662491
[20] => 1261194445
[21] => -2113107113
[22] => 862635860
[23] => -1422086463
[24] => 1827288914
[25] => -1804430449
[26] => 789339877
[27] => -2066129863
[28] => 1913612288
[29] => 1560010478
[30] => -1058019936
[31] => -65405350
[32] => 1965159694
[33] => -1300244320
[34] => -1463347301
[35] => 1914783155
[36] => 383202314
[37] => 1796572802
[38] => 1685185166
[39] => 2112755676
[40] => 1697913043
[41] => 506531343
[42] => 1950420674
[43] => 1445384897
[44] => 2138857830
[45] => -313874393
[46] => 258171818
[47] => -1402548779
[48] => 1740508191
[49] => -1588797087
[50] => -999975438
[51] => -1131821433
[52] => 124933484
[53] => -823426456
[54] => 505051124
[55] => -1034924997
[56] => -1730338443
[57] => -1718759764
[58] => 1368544582
[59] => 767632936
[60] => 1087961897
[61] => -868547033
[62] => 602331615
[63] => 1733552771
[64] => -273863011
[65] => -2100852906
[66] => 1041054519
[67] => -1016994438
[68] => -480635587
[69] => 1928840615
[70] => -649526133
[71] => -186292229
[72] => -1623777721
[73] => 135175678
[74] => -695039577
[75] => -412502899
[76] => -1366958845
[77] => 2125213211
[78] => 1985876553
[79] => -1904382552
[80] => -1519359366
[81] => -1096476353
[82] => 1068924666
[83] => 747692736
[84] => -1970754215
[85] => -1422434388
[86] => -1315344909
[87] => -779985842
[88] => -276491574
[89] => -1864852592
[90] => 1910538742
[91] => -1727810390
[92] => -263534830
[93] => 1354802745
[94] => -299629967
[95] => 1577894399
[96] => 655805547
[97] => -1928199547
[98] => -1478680421
[99] => -2046635086
[100] => 884069436
[101] => 601091200
[102] => 129035584
[103] => -1222404266
[104] => -1252628338
[105] => 1637243710
[106] => -1744768006
[107] => -1743370827
[108] => 798387706
[109] => 924149125
[110] => -1770121970
[111] => -1992626739
[112] => 803334091
[113] => 171134606
[114] => -962135637
[115] => -1326798268
[116] => 1352962198
[117] => 2092441849
[118] => -1341855571
[119] => -719286706
[120] => 1842693282
[121] => -1679707026
[122] => 1708910359
[123] => -44362460
[124] => -2094760334
[125] => 2047319549
[126] => -960302978
[127] => -260529385
[128] => 1023576073
[129] => 882051105
[130] => 68073306
[131] => 343007739
[132] => -1230285667
[133] => -1087096451
[134] => 1622015334
[135] => -1773176035
[136] => -1604030955
[137] => -2094429227
[138] => 1984059084
[139] => -612144599
[140] => -1050670264
[141] => -1298129739
[142] => -206940870
[143] => -1588862064
[144] => -1541422623
[145] => -214334348
[146] => -741020088
[147] => -542540718
[148] => 2097618221
[149] => 1542699609
[150] => 1576704135
[151] => 1586652079
[152] => 1249333510
[153] => -1112141220
[154] => -56792593
[155] => 343098763
[156] => 1150194881
[157] => -2138710700
[158] => 434036106
[159] => -280056894
[160] => 376944389
[161] => -51597239
[162] => -1523671938
[163] => 982058723
[164] => 279989454
[165] => -2081736679
[166] => 1736351579
[167] => -1529523684
[168] => -1550256084
[169] => 2103874881
[170] => -1241966858
[171] => 807496348
[172] => -2759592
[173] => -1043562383
[174] => 1970956979
[175] => -1830720748
[176] => -1315998808
[177] => -995437254
[178] => -1672756389
[179] => 1599555278
[180] => -174091226
[181] => -1857225623
[182] => 1304388600
[183] => -926910077
[184] => 267498803
[185] => -1050138794
[186] => 1677034502
[187] => 357200303
[188] => 492438194
[189] => 1344757658
[190] => 259777894
[191] => -120852615
[192] => -526394906
[193] => 1282914598
[194] => 109751329
[195] => 2050579010
[196] => -484982923
[197] => -1590372838
[198] => 922280764
[199] => 1048777582
[200] => 458118934
[201] => -689687512
[202] => -414654023
[203] => -1773004886
[204] => -1790852628
[205] => -251537246
[206] => -539912356
[207] => 1105693242
[208] => 1871159287
[209] => 811633530
[210] => -12516189
[211] => 825413528
[212] => 680888332
[213] => -2067566509
[214] => -1735179773
[215] => -1943105828
[216] => 1396882321
[217] => -621187017
[218] => 1124730805
[219] => 128524067
[220] => 1896209799
[221] => 1520124903
[222] => 180443061
[223] => -558782979
[224] => 523489237
[225] => 817416508
[226] => -1411817836
[227] => 488264402
[228] => -193898872
[229] => 1187213610
[230] => -1476980900
[231] => 1049822156
[232] => -975762006
[233] => 918538011
[234] => 1476410902
[235] => 1014785952
[236] => -1749290805
[237] => 815866643
[238] => -1603551826
[239] => -76592855
[240] => 494792280
[241] => -1822232087
[242] => -1955470442
[243] => -1486574708
[244] => 1912707658
[245] => 651783269
[246] => 1695092820
[247] => -839227988
[248] => 248757348
[249] => 1402893625
[250] => -110697951
[251] => -1167452987
[252] => 618469609
[253] => -70658367
[254] => 1243356052
[255] => 1463795897
)
[1] => Array
(
[0] => -1415136303
[1] => 1900575242
[2] => 618962360
[3] => 1877328928
[4] => -1213124683
[5] => -1088514288
[6] => -2139274370
[7] => 124814700
[8] => 1614898143
[9] => 834986507
[10] => -1724945608
[11] => 1459854933
[12] => 1131982031
[13] => -567879944
[14] => 2045983499
[15] => 1249956444
[16] => 543050706
[17] => 105169250
[18] => 1964719824
[19] => -1500550017
[20] => 427383191
[21] => -2030610681
[22] => 622547221
[23] => 64794120
[24] => -51909496
[25] => 770630347
[26] => -334302639
[27] => 1320404215
[28] => 369309914
[29] => 1488464337
[30] => -1210849726
[31] => -1945838067
[32] => 881719234
[33] => 1377952373
[34] => -358642266
[35] => 1749368084
[36] => 2001207958
[37] => -421738283
[38] => 996102232
[39] => 1732095761
[40] => 90744599
[41] => 1666574789
[42] => 961001090
[43] => 1484269963
[44] => -1640201405
[45] => 40854917
[46] => -1435443627
[47] => 1036463488
[48] => 457925583
[49] => 615799015
[50] => -1830869790
[51] => 1588029945
[52] => 386660713
[53] => -415494475
[54] => 1063532671
[55] => -1041603792
[56] => 1906687537
[57] => -877518379
[58] => -1129400447
[59] => 891127883
[60] => -1268400322
[61] => -1111820639
[62] => 1168575759
[63] => 142196531
[64] => 1240426756
[65] => 465444984
[66] => -191453390
[67] => 621426674
[68] => -1904491911
[69] => 684207605
[70] => -1861493126
[71] => -1984663657
[72] => 1171279931
[73] => -195488916
[74] => 2067848418
[75] => -493104515
[76] => 609890406
[77] => 499219972
[78] => -1964124105
[79] => 1395029291
[80] => 371935918
[81] => 1857176515
[82] => -186823503
[83] => -1698694795
[84] => 1820378802
[85] => -13133653
[86] => 1666789275
[87] => -1252457092
[88] => 948621302
[89] => 1518182164
[90] => 784042891
[91] => -1417265350
[92] => -2100562919
[93] => 1752307526
[94] => -1533503349
[95] => 1140944490
[96] => 1056927110
[97] => 1939194243
[98] => 1812197017
[99] => 679764485
[100] => 735598860
[101] => -1554101104
[102] => 404052165
[103] => -51968568
[104] => 145352435
[105] => 1888717166
[106] => 1391551075
[107] => -303643081
[108] => -1586328585
[109] => -1612592802
[110] => 1348165579
[111] => -891849682
[112] => 524293086
[113] => 1769543726
[114] => -1919911259
[115] => 432344794
[116] => -1435473784
[117] => 549214548
[118] => 1344723021
[119] => 666272966
[120] => -646371791
[121] => 1797070587
[122] => 1580557142
[123] => 1705941765
[124] => 1815716218
[125] => -296301236
[126] => 1609002271
[127] => -579556440
[128] => 672288678
[129] => 828558712
[130] => 1267977616
[131] => -1153059497
[132] => -571616013
[133] => 800206053
[134] => -1809128314
[135] => -1100806782
[136] => -24246582
[137] => -1891906125
[138] => -1518543412
[139] => 1882388454
[140] => -565646217
[141] => 119780912
[142] => -665232622
[143] => 1891849686
[144] => 1038603047
[145] => 289398882
[146] => 1771449609
[147] => 2107904497
[148] => -689942127
[149] => 233082250
[150] => 1860080220
[151] => -754646612
[152] => -1635963874
[153] => -841508891
[154] => 127364905
[155] => -741913210
[156] => 1398024307
[157] => -2101045641
[158] => -742446774
[159] => -425613897
[160] => -1010712772
[161] => -311098184
[162] => -1899317853
[163] => 1776236049
[164] => 1154553045
[165] => 1389832224
[166] => -719501928
[167] => 270402826
[168] => -1681230564
[169] => 1406305596
[170] => 1025565440
[171] => -612408246
[172] => 1949009341
[173] => 181417566
[174] => -803304365
[175] => 1085652407
[176] => -1179744250
[177] => 573390666
[178] => -1961131100
[179] => 79564439
[180] => -1450428710
[181] => -1258943283
[182] => 971164546
[183] => 1263824861
[184] => 1853064725
[185] => -904061012
[186] => -336265968
[187] => -1807109204
[188] => -1334711321
[189] => -116864466
[190] => 1667628596
[191] => -339998547
[192] => -1850044306
[193] => 1546381708
[194] => -403973532
[195] => 293777556
[196] => 2060294787
[197] => -144229995
[198] => -1145765739
[199] => -586473228
[200] => -47435947
[201] => -46477303
[202] => 556153959
[203] => 970291653
[204] => -1179704562
[205] => 1229704227
[206] => 749210886
[207] => -976338865
[208] => 1231695819
[209] => 757174897
[210] => 952671621
[211] => 405558844
[212] => 1576937140
[213] => 177381532
[214] => 845219103
[215] => -218095579
[216] => 1156438367
[217] => 1306945559
[218] => 903335056
[219] => 256632200
[220] => 1449542615
[221] => -783226529
[222] => -1938726483
[223] => -116794973
[224] => 498823522
[225] => -1342757743
[226] => 1916199030
[227] => 1410372556
[228] => 96860691
[229] => 1592179107
[230] => 403676543
[231] => -813598651
[232] => -844448454
[233] => 365212021
[234] => -1964760871
[235] => -682032178
[236] => -771147247
[237] => -987263750
[238] => -1662524201
[239] => -1624010334
[240] => 564107880
[241] => 1432979754
[242] => -517036762
[243] => -1201197572
[244] => -413649353
[245] => 1891126575
[246] => -559667229
[247] => 643086335
[248] => 1972468744
[249] => -2126438716
[250] => 408871725
[251] => -1405412345
[252] => 935137096
[253] => -355025582
[254] => 1899340180
[255] => 1696384103
)
[2] => Array
(
[0] => -872337608
[1] => 1823714602
[2] => 915711717
[3] => -2138381960
[4] => 555482596
[5] => 1894447149
[6] => -1829284663
[7] => 1400324766
[8] => 694889540
[9] => -1628052329
[10] => 470657539
[11] => -1601871495
[12] => -673796680
[13] => 1407112038
[14] => 1986012917
[15] => 1465816992
[16] => -1751718597
[17] => -2084958588
[18] => 510196940
[19] => -450507593
[20] => -1188516279
[21] => -700176531
[22] => 1462610898
[23] => -1510830200
[24] => -26651763
[25] => 311773247
[26] => 1080757075
[27] => -2061449641
[28] => 735026471
[29] => -694899589
[30] => -1097281879
[31] => -17718291
[32] => -1301920195
[33] => 1086318426
[34] => 963644149
[35] => 1750159862
[36] => -915967238
[37] => -445087011
[38] => -2143397086
[39] => 511167871
[40] => 2118176882
[41] => -1890265521
[42] => -518461668
[43] => -952417173
[44] => -1770998502
[45] => -1998239616
[46] => 1601815649
[47] => -800744782
[48] => 923516484
[49] => -1837132626
[50] => 1488005011
[51] => 1712691004
[52] => 91354597
[53] => 2081516193
[54] => -1925153608
[55] => 589845542
[56] => 1404837031
[57] => 1373363457
[58] => -2114414321
[59] => -1530117755
[60] => -2012508055
[61] => 609547946
[62] => 1956705739
[63] => 128991010
[64] => -1290754685
[65] => -93288518
[66] => -2066390772
[67] => 1018183891
[68] => 260698385
[69] => 1093994993
[70] => 2102969199
[71] => -2059320040
[72] => 1311494301
[73] => 314706841
[74] => -1883448508
[75] => 448730022
[76] => 829689078
[77] => 1112773752
[78] => 1128279206
[79] => -2144677587
[80] => 478625357
[81] => -1712476989
[82] => -331373050
[83] => 917475936
[84] => 2138854134
[85] => -61675656
[86] => -813875615
[87] => -1930933733
[88] => -440175183
[89] => -313570720
[90] => -2084367893
[91] => 33727917
[92] => 2039870460
[93] => -546316679
[94] => -596240591
[95] => -191152463
[96] => 88459235
[97] => -311075069
[98] => -923749913
[99] => 701918235
[100] => 1296447552
[101] => 312977659
[102] => 1637310661
[103] => -352677494
[104] => 1947797681
[105] => 982761179
[106] => -1955181435
[107] => -1859368597
[108] => 604951272
[109] => 2005139649
[110] => 339949639
[111] => -1386147273
[112] => 883766018
[113] => -1626655871
[114] => 1372356993
[115] => -448370280
[116] => -1857614599
[117] => -884883948
[118] => -2107454001
[119] => -1743131207
[120] => -213932628
[121] => -206191929
[122] => -1386205348
[123] => -350455264
[124] => 616957628
[125] => 460691060
[126] => -246498968
[127] => 1659066664
[128] => 593891188
[129] => -1495574912
[130] => -2028216654
[131] => -479504339
[132] => -1171667242
[133] => 1702519037
[134] => -2141035480
[135] => -202045465
[136] => -1995611362
[137] => -226400361
[138] => 599353711
[139] => -391872923
[140] => -803682119
[141] => 744912174
[142] => -1475943100
[143] => 598233387
[144] => 1078592211
[145] => 269989228
[146] => 56095189
[147] => -2123427757
[148] => -1744792831
[149] => 1381974892
[150] => -1225649696
[151] => -382125362
[152] => 1772600969
[153] => -1929219100
[154] => 305476598
[155] => -1597942075
[156] => -1808420303
[157] => 1176288892
[158] => -506854546
[159] => -2035129074
[160] => 1703662483
[161] => 1860415393
[162] => -1096120864
[163] => 1339907249
[164] => -810726131
[165] => -1132219504
[166] => -1989556300
[167] => 8124943
[168] => 1384827300
[169] => -1562662614
[170] => 1260024640
[171] => -1326603480
[172] => 1853738394
[173] => 816580238
[174] => -1613471084
[175] => 1264320243
[176] => -2005118708
[177] => -1566377020
[178] => -1119256727
[179] => 1653805696
[180] => -1162947948
[181] => -1019184067
[182] => -126949177
[183] => 74697936
[184] => 89498877
[185] => -741510596
[186] => 1486436247
[187] => -1979082973
[188] => -212611307
[189] => 2098174156
[190] => -1465795245
[191] => -2102964450
[192] => -1765861330
[193] => -1453194157
[194] => -1178964484
[195] => -1911250575
[196] => 969629655
[197] => -1514146887
[198] => -1125323381
[199] => 356620072
[200] => -1301085539
[201] => -1068855660
[202] => -429407176
[203] => -234246288
[204] => -1794918627
[205] => 1663562940
[206] => -922074951
[207] => 1595582392
[208] => -1283724433
[209] => -688394362
[210] => 414898440
[211] => 1438581409
[212] => -843979312
[213] => 1190238970
[214] => 127659841
[215] => 1343934857
[216] => 1767566732
[217] => 1505248940
[218] => -936994832
[219] => -1121793071
[220] => 1188503381
[221] => -1685850099
[222] => 531446672
[223] => 1543894079
[224] => -603102725
[225] => 1212558149
[226] => -302148848
[227] => 1749138873
[228] => -833185725
[229] => -1524286216
[230] => -700189225
[231] => 946002557
[232] => -989787024
[233] => 1939566134
[234] => 874468756
[235] => 342457137
[236] => -1401978256
[237] => 169914369
[238] => 1604774630
[239] => -341193289
[240] => 186669178
[241] => -1671598269
[242] => -1700428663
[243] => 1695515586
[244] => -1932354916
[245] => 411154137
[246] => -1862048227
[247] => -1249837370
[248] => -891470026
[249] => -186296788
[250] => 1078285977
[251] => 632097833
[252] => 888248047
[253] => 278029871
[254] => -1469458060
[255] => -1086503154
)
[3] => Array
(
[0] => -1466988785
[1] => -237052823
[2] => -608554762
[3] => -796248077
[4] => 574712459
[5] => 850680397
[6] => -1054747646
[7] => 760798283
[8] => 2082565559
[9] => 1690400643
[10] => -1110717024
[11] => 2123051239
[12] => -1614309447
[13] => -655867576
[14] => 372609366
[15] => -395123276
[16] => -101745116
[17] => 1782138812
[18] => 1422562219
[19] => -1726731364
[20] => -1248865545
[21] => 1799761023
[22] => -25359047
[23] => -1375738141
[24] => -971411125
[25] => 619377346
[26] => -488450984
[27] => -281230385
[28] => 1624203424
[29] => -193430262
[30] => -1733336414
[31] => 347163161
[32] => -938297854
[33] => -792526545
[34] => -66311405
[35] => -1376963430
[36] => 55242701
[37] => -1957214326
[38] => -610145096
[39] => -354624467
[40] => -116724848
[41] => -228856329
[42] => -75844331
[43] => -286485787
[44] => -1795188965
[45] => 1317161983
[46] => 261345360
[47] => 633739945
[48] => -1554745496
[49] => 1589889376
[50] => 1269047836
[51] => 1889315473
[52] => 682571543
[53] => -354431722
[54] => -1056511648
[55] => -1367368574
[56] => -1529137380
[57] => 367673189
[58] => -926598074
[59] => 727206311
[60] => 241076487
[61] => -1286737568
[62] => 646443076
[63] => -195351482
[64] => -237326711
[65] => -961841895
[66] => 1589084622
[67] => 169645435
[68] => -1884487957
[69] => -1784074885
[70] => -805619940
[71] => 1211206224
[72] => -1853181405
[73] => -619323773
[74] => 339569597
[75] => 2036609208
[76] => 1131726886
[77] => -935387805
[78] => 1683058065
[79] => 846814911
[80] => 499603146
[81] => 2089660797
[82] => -1639040052
[83] => 2000964204
[84] => -1147151120
[85] => -141286947
[86] => 335435778
[87] => -464662429
[88] => 868297506
[89] => -1254220495
[90] => 419967212
[91] => -1565624138
[92] => 1079491024
[93] => -1920960326
[94] => -1870188337
[95] => 2107292549
[96] => 996228366
[97] => 726465957
[98] => 1115231400
[99] => 1084261622
[100] => 1997231524
[101] => -1039298546
[102] => 779284980
[103] => -365451474
[104] => -1681259175
[105] => -1077486347
[106] => 1844089380
[107] => 1360229133
[108] => -1913722591
[109] => 1661271616
[110] => 1574289700
[111] => 262020040
[112] => 1917239676
[113] => -1901600047
[114] => 661257494
[115] => -1116635600
[116] => 1401748854
[117] => -234266182
[118] => -1120155156
[119] => -51539216
[120] => -1933996403
[121] => -1484743634
[122] => 1357870203
[123] => 657846167
[124] => 1900295477
[125] => 443025817
[126] => 423873663
[127] => -776868737
[128] => 1502232799
[129] => -731098871
[130] => 1052251259
[131] => -845018544
[132] => -2000696215
[133] => -718240839
[134] => 197614979
[135] => 968454561
[136] => -411431420
[137] => -541363920
[138] => 600867317
[139] => -170030025
[140] => 1083565776
[141] => -168882980
[142] => 940946306
[143] => 1401879265
[144] => 1966032494
[145] => -1806422737
[146] => -1238257817
[147] => 47007055
[148] => -1744730715
[149] => -719132149
[150] => -1997107399
[151] => 1718537532
[152] => -2110824967
[153] => -256646614
[154] => 2115489676
[155] => 1890035436
[156] => 1047970296
[157] => 938878812
[158] => -368573091
[159] => 196940028
[160] => 425276541
[161] => 2090377476
[162] => 1694135383
[163] => 1131225963
[164] => -718355578
[165] => 718438976
[166] => -827292761
[167] => -1895617559
[168] => 2109728843
[169] => -703302063
[170] => 1835242591
[171] => -1665082309
[172] => 2118534945
[173] => 744235469
[174] => -1304809293
[175] => -1962362260
[176] => -1856546488
[177] => -1673863568
[178] => 1975372595
[179] => 2040709855
[180] => -1870060103
[181] => -302869291
[182] => -2123338365
[183] => 645908075
[184] => 987132207
[185] => -558640346
[186] => 704269540
[187] => 920733903
[188] => -866573739
[189] => 1964305081
[190] => -839212452
[191] => 1959341315
[192] => 1336784175
[193] => -397166805
[194] => 978670846
[195] => 1171814767
[196] => -1691191014
[197] => 1147553609
[198] => 774487059
[199] => -2072512111
[200] => -834466371
[201] => -1391940144
[202] => 339426531
[203] => -311864919
[204] => 571918060
[205] => 1695259409
[206] => -1164270740
[207] => 1467877786
[208] => 1642635893
[209] => 1308487727
[210] => 1150468886
[211] => 1497197551
[212] => 472963662
[213] => 944843283
[214] => -1648765306
[215] => 1544301402
[216] => 503279049
[217] => -1477649714
[218] => 645819898
[219] => -429781406
[220] => -363451666
[221] => -964807675
[222] => -616286386
[223] => -409697891
[224] => -1271687134
[225] => 1435466615
[226] => 1512045319
[227] => -894851952
[228] => -1962862264
[229] => 1762203949
[230] => -1685702901
[231] => 603104128
[232] => -1695872142
[233] => -1918004582
[234] => -643899979
[235] => 244499156
[236] => -1240806110
[237] => 782476620
[238] => 872656900
[239] => 915114732
[240] => -1497962456
[241] => -297141858
[242] => 1773960570
[243] => 1743265468
[244] => -85763159
[245] => -497887571
[246] => 905969789
[247] => 519363691
[248] => 188045067
[249] => -1360487938
[250] => 566169949
[251] => 1485479034
[252] => 33307600
[253] => -1915906801
[254] => -1047866437
[255] => 113445321
)
)
[_iv] =>
[_unpackMode:protected] => 1
)
[_key:protected] => Tj9LMNLWWqwNSoiN7nxqwOfBwJOMCANX54aLgAttPahTbWFJbOeeZSvJ
[_iv:protected] => x3fHLXet
[_modified:protected] => 1
[_allow_writing:protected] => 1
)
[cart] => Cart Object
(
[id] =>
[id_shop_group] => 1
[id_shop] => 41
[id_address_delivery] => 0
[id_address_invoice] => 0
[id_currency] => 1
[id_customer] =>
[id_guest] => 0
[id_lang] => 5
[recyclable] => 1
[gift] => 0
[gift_message] =>
[date_add] =>
[secure_key] =>
[id_carrier] => 0
[date_upd] =>
[checkedTos] =>
[pictures] =>
[textFields] =>
[delivery_option] =>
[allow_seperated_package] =>
[_products:protected] =>
[_taxCalculationMethod:protected] => 0
[webserviceParameters:protected] => Array
(
[fields] => Array
(
[id_address_delivery] => Array
(
[xlink_resource] => addresses
)
[id_address_invoice] => Array
(
[xlink_resource] => addresses
)
[id_currency] => Array
(
[xlink_resource] => currencies
)
[id_customer] => Array
(
[xlink_resource] => customers
)
[id_guest] => Array
(
[xlink_resource] => guests
)
[id_lang] => Array
(
[xlink_resource] => languages
)
)
[associations] => Array
(
[cart_rows] => Array
(
[resource] => cart_row
[virtual_entity] => 1
[fields] => Array
(
[id_product] => Array
(
[required] => 1
[xlink_resource] => products
)
[id_product_attribute] => Array
(
[required] => 1
[xlink_resource] => combinations
)
[quantity] => Array
(
[required] => 1
)
)
)
)
)
[id_shop_list] =>
[get_shop_from_context:protected] => 1
[table:protected] => cart
[identifier:protected] => id_cart
[fieldsRequired:protected] => Array
(
[0] => id_currency
[1] => id_lang
)
[fieldsSize:protected] => Array
(
[secure_key] => 32
)
[fieldsValidate:protected] => Array
(
[id_shop_group] => isUnsignedId
[id_shop] => isUnsignedId
[id_address_delivery] => isUnsignedId
[id_address_invoice] => isUnsignedId
[id_carrier] => isUnsignedId
[id_currency] => isUnsignedId
[id_customer] => isUnsignedId
[id_guest] => isUnsignedId
[id_lang] => isUnsignedId
[recyclable] => isBool
[gift] => isBool
[gift_message] => isMessage
[allow_seperated_package] => isBool
[date_add] => isDateFormat
[date_upd] => isDateFormat
)
[fieldsRequiredLang:protected] => Array
(
)
[fieldsSizeLang:protected] => Array
(
)
[fieldsValidateLang:protected] => Array
(
)
[tables:protected] => Array
(
)
[image_dir:protected] =>
[image_format:protected] => jpg
[def:protected] => Array
(
[table] => cart
[primary] => id_cart
[fields] => Array
(
[id_shop_group] => Array
(
[type] => 1
[validate] => isUnsignedId
)
[id_shop] => Array
(
[type] => 1
[validate] => isUnsignedId
)
[id_address_delivery] => Array
(
[type] => 1
[validate] => isUnsignedId
)
[id_address_invoice] => Array
(
[type] => 1
[validate] => isUnsignedId
)
[id_carrier] => Array
(
[type] => 1
[validate] => isUnsignedId
)
[id_currency] => Array
(
[type] => 1
[validate] => isUnsignedId
[required] => 1
)
[id_customer] => Array
(
[type] => 1
[validate] => isUnsignedId
)
[id_guest] => Array
(
[type] => 1
[validate] => isUnsignedId
)
[id_lang] => Array
(
[type] => 1
[validate] => isUnsignedId
[required] => 1
)
[recyclable] => Array
(
[type] => 2
[validate] => isBool
)
[gift] => Array
(
[type] => 2
[validate] => isBool
)
[gift_message] => Array
(
[type] => 3
[validate] => isMessage
)
[delivery_option] => Array
(
[type] => 3
)
[secure_key] => Array
(
[type] => 3
[size] => 32
)
[allow_seperated_package] => Array
(
[type] => 2
[validate] => isBool
)
[date_add] => Array
(
[type] => 5
[validate] => isDateFormat
)
[date_upd] => Array
(
[type] => 5
[validate] => isDateFormat
)
)
[classname] => Cart
)
[update_fields:protected] =>
)
[altern] => 2
)
437. // Needed hooks are called in the tpl files.
438. if (!isset($this->context->cart))
439. $this->context->cart = new Cart();
440. $this->context->smarty->assign(array(
441. 'HOOK_HEADER' => Hook::exec('displayHeader'),
442. 'HOOK_TOP' => Hook::exec('displayTop'),
443. 'HOOK_TOPOFTHETOP' => Hook::exec('displayTopOfTheTop'),
444. 'HOOK_LEFT_COLUMN' => ($this->display_column_left ? Hook::exec('displayLeftColumn') : ''),
445. 'HOOK_RIGHT_COLUMN' => ($this->display_column_right ? Hook::exec('displayRightColumn', array('cart' => $this->context->cart)) : ''),
446. ));
447. }
Argument [0] displayTop
177. * Assign template vars related to page content
178. * @see FrontController::initContent()
179. */
180. public function initContent()
181. {
182. parent::initContent();
183.
184. if (!$this->errors)
185. {
186. // Assign to the template the id of the virtual product. "0" if the product is not downloadable.
187. $this->context->smarty->assign('virtual', ProductDownload::getIdFromIdProduct((int)$this->product->id));
161.
162. if (!$this->content_only && ($this->display_header || (isset($this->className) && $this->className)))
163. $this->initHeader();
164.
165. if ($this->viewAccess())
166. $this->initContent();
167. else
168. $this->errors[] = Tools::displayError('Access denied.');
169.
170. if (!$this->content_only && ($this->display_footer || (isset($this->className) && $this->className)))
171. $this->initFooter();
343. // Execute hook dispatcher
344. if (isset($params_hook_action_dispatcher))
345. Hook::exec('actionDispatcher', $params_hook_action_dispatcher);
346.
347. // Running controller
348. $controller->run();
349. }
350. catch (PrestaShopException $e)
351. {
352. $e->displayMessage();
353. }
22. * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
23. * International Registered Trademark & Property of PrestaShop SA
24. */
25.
26. require(dirname(__FILE__).'/config/config.inc.php');
27. Dispatcher::getInstance()->dispatch();
28.