| 166 |
SELECT SQL_NO_CACHE p.*, product_shop.*, stock.out_of_stock, IFNULL(stock.quantity, 0) as quantity, pl.`description`, pl.`description_short`, pl.`link_rewrite`, pl.`meta_description`,
pl.`meta_title`, pl.`name`, pl.`available_now`, pl.`available_later`, image_shop.`id_image` id_image, il.`legend`, m.`name` AS manufacturer_name,
(DATEDIFF(product_shop.`date_add`,
DATE_SUB(
"2026-09-22 00:00:00",
INTERVAL 20 DAY
)
) > 0) as new,
product_attribute_shop.minimal_quantity AS product_attribute_minimal_quantity, IFNULL(product_attribute_shop.id_product_attribute,0) id_product_attribute
FROM `4s6gv_product` p
INNER JOIN 4s6gv_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `4s6gv_product_lang` `pl` ON
p.`id_product` = pl.`id_product`
AND pl.`id_lang` = 1 AND pl.id_shop = 1
LEFT JOIN `4s6gv_image_shop` `image_shop` ON image_shop.`id_product` = p.`id_product` AND image_shop.cover=1 AND image_shop.id_shop=1
LEFT JOIN `4s6gv_image_lang` `il` ON image_shop.`id_image` = il.`id_image` AND il.`id_lang` = 1
LEFT JOIN `4s6gv_manufacturer` `m` ON m.`id_manufacturer` = p.`id_manufacturer`
LEFT JOIN `4s6gv_product_attribute_shop` `product_attribute_shop` ON p.`id_product` = product_attribute_shop.`id_product` AND product_attribute_shop.`default_on` = 1 AND product_attribute_shop.id_shop=1
LEFT JOIN 4s6gv_stock_available stock
ON (stock.id_product = `p`.id_product AND stock.id_product_attribute = 0 AND stock.id_shop = 1 AND stock.id_shop_group = 0 )
WHERE (product_shop.`active` = 1) AND (product_shop.`visibility` IN ("both", "catalog")) AND (DATEDIFF(product_shop.`date_add`,
DATE_SUB(
"2026-09-22 00:00:00",
INTERVAL 20 DAY
)
) > 0) AND (EXISTS(SELECT 1 FROM `4s6gv_category_product` cp
JOIN `4s6gv_category_group` cg ON (cp.id_category = cg.id_category AND cg.`id_group` =1)
WHERE cp.`id_product` = p.`id_product`))
ORDER BY product_shop.`date_add` DESC
LIMIT 4 |
84.353
ms
|
9724 |
Yes
|
|
/classes/Product.php:2839
/modules/ps_newproducts/ps_newproducts.php:190 (getNewProducts)
/modules/ps_newproducts/ps_newproducts.php:172 (getNewProducts)
/modules/ps_newproducts/ps_newproducts.php:159 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 61 |
SELECT SQL_NO_CACHE p.*, product_shop.*, stock.out_of_stock, IFNULL(stock.quantity, 0) AS quantity, IFNULL(product_attribute_shop.id_product_attribute, 0) AS id_product_attribute,
product_attribute_shop.minimal_quantity AS product_attribute_minimal_quantity, pl.`description`, pl.`description_short`, pl.`available_now`,
pl.`available_later`, pl.`link_rewrite`, pl.`meta_description`, pl.`meta_title`, pl.`name`, image_shop.`id_image` id_image,
il.`legend` as legend, m.`name` AS manufacturer_name, cl.`name` AS category_default,
DATEDIFF(product_shop.`date_add`, DATE_SUB("2026-09-22 00:00:00",
INTERVAL 20 DAY)) > 0 AS new, product_shop.price AS orderprice, psales.`quantity` as sales
FROM `4s6gv_category_product` cp
LEFT JOIN `4s6gv_product` p
ON p.`id_product` = cp.`id_product`
INNER JOIN 4s6gv_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1) LEFT JOIN `4s6gv_product_attribute_shop` product_attribute_shop
ON (p.`id_product` = product_attribute_shop.`id_product` AND product_attribute_shop.`default_on` = 1 AND product_attribute_shop.id_shop=1)
LEFT JOIN 4s6gv_stock_available stock
ON (stock.id_product = `p`.id_product AND stock.id_product_attribute = 0 AND stock.id_shop = 1 AND stock.id_shop_group = 0 )
LEFT JOIN `4s6gv_category_lang` cl
ON (product_shop.`id_category_default` = cl.`id_category`
AND cl.`id_lang` = 1 AND cl.id_shop = 1 )
LEFT JOIN `4s6gv_product_lang` pl
ON (p.`id_product` = pl.`id_product`
AND pl.`id_lang` = 1 AND pl.id_shop = 1 )
LEFT JOIN `4s6gv_image_shop` image_shop
ON (image_shop.`id_product` = p.`id_product` AND image_shop.cover=1 AND image_shop.id_shop=1)
LEFT JOIN `4s6gv_image_lang` il
ON (image_shop.`id_image` = il.`id_image`
AND il.`id_lang` = 1)
LEFT JOIN `4s6gv_manufacturer` m
ON m.`id_manufacturer` = p.`id_manufacturer`
LEFT JOIN `4s6gv_product_sale` psales
ON psales.`id_product` = p.`id_product`
WHERE product_shop.`id_shop` = 1
AND cp.`id_category` = 2 AND product_shop.`active` = 1 AND product_shop.`visibility` IN ("both", "catalog") ORDER BY cp.`position` ASC
LIMIT 0,4 |
5.715
ms
|
102 |
|
|
/classes/Category.php:1074
/src/Adapter/Category/CategoryProductSearchProvider.php:75 (getProducts)
/src/Adapter/Category/CategoryProductSearchProvider.php:98 (getProductsOrCount)
/modules/ps_featuredproducts/ps_featuredproducts.php:248 (runQuery)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 73 |
SELECT SQL_NO_CACHE `id_hook`, `name`
FROM `4s6gv_hook`
UNION
SELECT `id_hook`, ha.`alias` as name
FROM `4s6gv_hook_alias` ha
INNER JOIN `4s6gv_hook` h ON ha.name = h.name |
3.912
ms
|
0 |
|
|
/classes/Hook.php:1565
/classes/Hook.php:244 (getAllHookIds)
/classes/tax/TaxManagerFactory.php:43 (getIdByName)
/classes/tax/TaxManagerFactory.php:22 (execHookTaxManagerFactory)
/classes/Product.php:3671 (getManager)
/classes/Product.php:3462 (priceCalculation)
/classes/Product.php:5462 (getPriceStatic)
/classes/ProductAssembler.php:194 (getProductProperties)
/modules/ps_featuredproducts/ps_featuredproducts.php:286 (assembleProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 62 |
SELECT SQL_NO_CACHE COUNT(cp.`id_product`) AS total
FROM `4s6gv_product` p
INNER JOIN 4s6gv_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `4s6gv_category_product` cp ON p.`id_product` = cp.`id_product`
WHERE cp.`id_category` = 2 AND product_shop.`visibility` IN ("both", "catalog") AND product_shop.`active` = 1 LIMIT 1 |
2.594
ms
|
102 |
|
|
/classes/Category.php:1001
/src/Adapter/Category/CategoryProductSearchProvider.php:75 (getProducts)
/src/Adapter/Category/CategoryProductSearchProvider.php:99 (getProductsOrCount)
/modules/ps_featuredproducts/ps_featuredproducts.php:248 (runQuery)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 13 |
SELECT SQL_NO_CACHE h.`name` as hook, m.`id_module`, h.`id_hook`, m.`name` as module
FROM `4s6gv_module` m
INNER JOIN 4s6gv_module_shop module_shop
ON (module_shop.id_module = m.id_module AND module_shop.id_shop = 1)
INNER JOIN `4s6gv_hook_module` `hm` ON hm.`id_module` = m.`id_module`
INNER JOIN `4s6gv_hook` `h` ON hm.`id_hook` = h.`id_hook`
LEFT JOIN `4s6gv_module_group` `mg` ON mg.`id_module` = m.`id_module`
WHERE (h.`name` != "paymentOptions") AND (hm.`id_shop` = 1) AND (mg.id_shop = 1 AND mg.`id_group` IN (1))
GROUP BY hm.id_hook, hm.id_module
ORDER BY hm.`position` |
2.575
ms
|
350 |
Yes
|
Yes
|
/classes/Hook.php:1497
/classes/Hook.php:802 (getAllHookRegistrations)
/classes/Hook.php:945 (getHookModuleExecList)
/classes/Dispatcher.php:626 (exec)
/classes/Dispatcher.php:237 (loadRoutes)
/classes/Dispatcher.php:199 (__construct)
/index.php:66 (getInstance)
|
| 187 |
SELECT SQL_NO_CACHE p.*, product_shop.*, stock.out_of_stock, IFNULL(stock.quantity, 0) as quantity, pl.`description`, pl.`description_short`, pl.`available_now`, pl.`available_later`,
IFNULL(product_attribute_shop.id_product_attribute, 0) id_product_attribute,
pl.`link_rewrite`, pl.`meta_description`, pl.`meta_title`,
pl.`name`, image_shop.`id_image` id_image, il.`legend`, m.`name` AS manufacturer_name,
DATEDIFF(
p.`date_add`,
DATE_SUB(
"2026-09-22 00:00:00",
INTERVAL 20 DAY
)
) > 0 AS new
FROM `4s6gv_product` p
INNER JOIN 4s6gv_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `4s6gv_product_attribute_shop` product_attribute_shop
ON (p.`id_product` = product_attribute_shop.`id_product` AND product_attribute_shop.`default_on` = 1 AND product_attribute_shop.id_shop=1)
LEFT JOIN 4s6gv_stock_available stock
ON (stock.id_product = `p`.id_product AND stock.id_product_attribute = 0 AND stock.id_shop = 1 AND stock.id_shop_group = 0 )
LEFT JOIN `4s6gv_product_lang` pl ON (
p.`id_product` = pl.`id_product`
AND pl.`id_lang` = 1 AND pl.id_shop = 1
)
LEFT JOIN `4s6gv_image_shop` image_shop
ON (image_shop.`id_product` = p.`id_product` AND image_shop.cover=1 AND image_shop.id_shop=1)
LEFT JOIN `4s6gv_image_lang` il ON (image_shop.`id_image` = il.`id_image` AND il.`id_lang` = 1)
LEFT JOIN `4s6gv_manufacturer` m ON (m.`id_manufacturer` = p.`id_manufacturer`)
WHERE product_shop.`active` = 1
AND product_shop.`show_price` = 1
AND product_shop.`visibility` IN ("both", "catalog")
AND p.`id_product` IN (1802, 2497, 1615, 2379, 6092)
AND EXISTS(SELECT 1 FROM `4s6gv_category_product` cp
JOIN `4s6gv_category_group` cg ON (cp.id_category = cg.id_category AND cg.`id_group` =1)
WHERE cp.`id_product` = p.`id_product`)
ORDER BY product_shop.date_add DESC
LIMIT 0, 4 |
2.260
ms
|
5 |
Yes
|
|
/classes/Product.php:3116
/modules/ps_specials/ps_specials.php:172 (getPricesDrop)
/modules/ps_specials/ps_specials.php:158 (getSpecialProducts)
/modules/ps_specials/ps_specials.php:145 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 227 |
INSERT INTO `4s6gv_guest` (`id_operating_system`, `id_web_browser`, `id_customer`, `javascript`, `screen_resolution_x`, `screen_resolution_y`, `screen_color`, `sun_java`, `adobe_flash`, `adobe_director`, `apple_quicktime`, `real_player`, `windows_media`, `accept_language`, `mobile_theme`) VALUES ('0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '', '0') |
1.888
ms
|
1 |
|
|
/classes/ObjectModel.php:527
/classes/ObjectModel.php:472 (add)
/classes/Guest.php:236 (save)
/modules/statsdata/statsdata.php:82 (setNewGuest)
/modules/statsdata/statsdata.php:73 (getScriptPlugins)
/classes/Hook.php:1234 (hookDisplayBeforeBodyClosingTag)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1125 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:507 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c908020637_19571652)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/4c/80/68/4c8068233d3ff8401b0da93ca4d2a07f7405c43b_2.file.layout-full-width.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90800b4e7_75473193)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/5e/94/2b/5e942b9ba415c1df9e4173cac73249e2168114c6_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9080031d7_87712377)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 182 |
SELECT SQL_NO_CACHE p.*, product_shop.*, stock.out_of_stock, IFNULL(stock.quantity, 0) as quantity,
product_attribute_shop.minimal_quantity AS product_attribute_minimal_quantity,IFNULL(product_attribute_shop.id_product_attribute,0) id_product_attribute,
pl.`description`, pl.`description_short`, pl.`link_rewrite`, pl.`meta_description`,
pl.`meta_title`, pl.`name`, pl.`available_now`, pl.`available_later`,
m.`name` AS manufacturer_name, p.`id_manufacturer` as id_manufacturer,
image_shop.`id_image` id_image, il.`legend`,
ps.`quantity` AS sales, t.`rate`, pl.`meta_title`, pl.`meta_description`,
DATEDIFF(p.`date_add`, DATE_SUB("2026-09-22 00:00:00",
INTERVAL 20 DAY)) > 0 AS new FROM `4s6gv_product_sale` ps
LEFT JOIN `4s6gv_product` p ON ps.`id_product` = p.`id_product`
LEFT JOIN 4s6gv_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1) LEFT JOIN `4s6gv_product_attribute_shop` product_attribute_shop
ON (p.`id_product` = product_attribute_shop.`id_product` AND product_attribute_shop.`default_on` = 1 AND product_attribute_shop.id_shop=1) LEFT JOIN `4s6gv_product_lang` pl
ON p.`id_product` = pl.`id_product`
AND pl.`id_lang` = 1 AND pl.id_shop = 1
LEFT JOIN `4s6gv_image_shop` image_shop
ON (image_shop.`id_product` = p.`id_product` AND image_shop.cover=1 AND image_shop.id_shop=1)
LEFT JOIN `4s6gv_image_lang` il ON (image_shop.`id_image` = il.`id_image` AND il.`id_lang` = 1)
LEFT JOIN `4s6gv_manufacturer` m ON (m.`id_manufacturer` = p.`id_manufacturer`)
LEFT JOIN `4s6gv_tax_rule` tr ON (product_shop.`id_tax_rules_group` = tr.`id_tax_rules_group`)
AND tr.`id_country` = 6
AND tr.`id_state` = 0
LEFT JOIN `4s6gv_tax` t ON (t.`id_tax` = tr.`id_tax`)
LEFT JOIN 4s6gv_stock_available stock
ON (stock.id_product = `p`.id_product AND stock.id_product_attribute = 0 AND stock.id_shop = 1 AND stock.id_shop_group = 0 )
WHERE product_shop.`active` = 1
AND product_shop.`visibility` != 'none' AND EXISTS(SELECT 1 FROM `4s6gv_category_product` cp
JOIN `4s6gv_category_group` cg ON (cp.id_category = cg.id_category AND cg.`id_group` =1)
WHERE cp.`id_product` = p.`id_product`)
ORDER BY `sales` DESC
LIMIT 0, 4 |
1.713
ms
|
1 |
|
|
/classes/ProductSale.php:130
/src/Adapter/BestSales/BestSalesProductSearchProvider.php:54 (getBestSales)
/modules/ps_bestsellers/ps_bestsellers.php:194 (runQuery)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 170 |
SELECT SQL_NO_CACHE *, ( IF (`id_shop` = 1, 2, 0) + IF (`id_country` = 6, 4, 0) + IF (`id_currency` = 1, 8, 0) + IF (`id_group` = 1, 16, 0) + IF (`id_customer` = 0, 32, 0)) AS `score`
FROM `4s6gv_specific_price`
WHERE
`id_shop` IN (0, 1) AND
`id_currency` IN (0, 1) AND
`id_country` IN (0, 6) AND
`id_group` IN (0, 1) AND `id_product` = 9080 AND `id_customer` = 0 AND `id_product_attribute` = 0 AND `id_cart` = 0 AND (`from` = '0000-00-00 00:00:00' OR '2026-09-22 00:00:00' >= `from`) AND (`to` = '0000-00-00 00:00:00' OR '2026-09-22 00:00:00' <= `to`)
AND IF(`from_quantity` > 1, `from_quantity`, 0) <= 1 ORDER BY `id_product_attribute` DESC, `id_cart` DESC, `from_quantity` DESC, `id_specific_price_rule` ASC, `score` DESC, `to` DESC, `from` DESC LIMIT 1 |
1.639
ms
|
1 |
Yes
|
|
/classes/SpecificPrice.php:563
/classes/Product.php:3572 (getSpecificPrice)
/classes/Product.php:3462 (priceCalculation)
/classes/Product.php:5462 (getPriceStatic)
/classes/ProductAssembler.php:194 (getProductProperties)
/modules/ps_newproducts/ps_newproducts.php:227 (assembleProducts)
/modules/ps_newproducts/ps_newproducts.php:172 (getNewProducts)
/modules/ps_newproducts/ps_newproducts.php:159 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 2 |
SELECT SQL_NO_CACHE c.`name`, cl.`id_lang`, IF(cl.`id_lang` IS NULL, c.`value`, cl.`value`) AS value, c.id_shop_group, c.id_shop
FROM `4s6gv_configuration` c
LEFT JOIN `4s6gv_configuration_lang` cl ON (c.`id_configuration` = cl.`id_configuration`) |
1.633
ms
|
917 |
|
|
/classes/Configuration.php:162
/classes/Configuration.php:210 (loadConfiguration)
/classes/Configuration.php:283 (get)
/classes/shop/Shop.php:379 (getMultiShopValues)
/config/config.inc.php:103 (initialize)
/index.php:20 (require_once)
|
| 209 |
SELECT SQL_NO_CACHE `id_module` FROM `4s6gv_module_shop` WHERE `id_module` = 8 AND `id_shop` = 1 LIMIT 1 |
1.631
ms
|
1 |
|
|
/classes/module/Module.php:2267
/classes/Hook.php:1240 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/6e/69/20/6e69203f937c89f3d9ddb9a2675dc129a4feb5b7_2.file.header.tpl.php:44 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9080c0b42_46180155)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:241 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c908020637_19571652)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/4c/80/68/4c8068233d3ff8401b0da93ca4d2a07f7405c43b_2.file.layout-full-width.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90800b4e7_75473193)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/5e/94/2b/5e942b9ba415c1df9e4173cac73249e2168114c6_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9080031d7_87712377)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 96 |
SELECT SQL_NO_CACHE COALESCE(SUM(first_level_quantity) + SUM(pack_quantity), 0) as deep_quantity,
COALESCE(SUM(first_level_quantity), 0) as quantity
FROM (SELECT SUM(cp.`quantity`) as first_level_quantity, 0 as pack_quantity
FROM `4s6gv_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 1066 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `4s6gv_cart_product` cp JOIN `4s6gv_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `4s6gv_product` pr ON p.`id_product_pack` = pr.`id_product`
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND p.`id_product_item` = 1066 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
1.490
ms
|
0 |
|
|
/classes/Cart.php:1625
/classes/Product.php:4129 (getProductQuantity)
/classes/Product.php:5568 (getQuantity)
/classes/ProductAssembler.php:194 (getProductProperties)
/modules/ps_featuredproducts/ps_featuredproducts.php:286 (assembleProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 74 |
SELECT SQL_NO_CACHE h.id_hook, h.name as h_name, title, description, h.position, hm.position as hm_position, m.id_module, m.name, m.active
FROM `4s6gv_hook_module` hm
STRAIGHT_JOIN `4s6gv_hook` h ON (h.id_hook = hm.id_hook AND hm.id_shop = 1)
STRAIGHT_JOIN `4s6gv_module` as m ON (m.id_module = hm.id_module)
ORDER BY hm.position |
1.479
ms
|
450 |
|
|
/classes/Hook.php:488
/classes/Hook.php:535 (getHookModuleList)
/classes/tax/TaxManagerFactory.php:43 (getModulesFromHook)
/classes/tax/TaxManagerFactory.php:22 (execHookTaxManagerFactory)
/classes/Product.php:3671 (getManager)
/classes/Product.php:3462 (priceCalculation)
/classes/Product.php:5462 (getPriceStatic)
/classes/ProductAssembler.php:194 (getProductProperties)
/modules/ps_featuredproducts/ps_featuredproducts.php:286 (assembleProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 63 |
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2026-09-22 00:00:00',
INTERVAL 20 DAY
)
) > 0) as new
FROM 4s6gv_product p
LEFT JOIN 4s6gv_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 1
LEFT JOIN 4s6gv_stock_available sa ON sa.id_product = p.id_product
AND sa.id_product_attribute = 0
AND sa.id_shop = 1 LEFT JOIN 4s6gv_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product IN (8087,1066,7404,8509) |
1.423
ms
|
4 |
|
|
/classes/ProductAssembler.php:81
/classes/ProductAssembler.php:191 (addMissingProductFieldsForMultipleProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:286 (assembleProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 159 |
SELECT SQL_NO_CACHE pa.`id_product`, a.`color`, pac.`id_product_attribute`, 0 qty, a.`id_attribute`, al.`name`, IF(color = "", a.id_attribute, color) group_by
FROM `4s6gv_product_attribute` pa
INNER JOIN 4s6gv_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
JOIN `4s6gv_product_attribute_combination` pac ON (pac.`id_product_attribute` = product_attribute_shop.`id_product_attribute`)
JOIN `4s6gv_attribute` a ON (a.`id_attribute` = pac.`id_attribute`)
JOIN `4s6gv_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 1)
JOIN `4s6gv_attribute_group` ag ON (a.id_attribute_group = ag.`id_attribute_group`)
WHERE pa.`id_product` IN (1066) AND ag.`is_color_group` = 1
GROUP BY pa.`id_product`, a.`id_attribute`, `group_by`
ORDER BY a.`position` ASC; |
1.397
ms
|
1 |
Yes
|
Yes
|
/classes/Product.php:4281
/src/Adapter/Product/ProductColorsRetriever.php:23 (getAttributesColorList)
/src/Adapter/Presenter/Product/ProductLazyArray.php:790 (getColoredVariants)
/src/Adapter/Presenter/AbstractLazyArray.php:244 (getMainVariants)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:80 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:176 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:302 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90783f8a9_16018688)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/prod/smarty/compile/sumaysube_child/e3/fe/57/e3fe579cd80af6849f90f9ca44a41e2ba2219bda_2.file.productlist.tpl.php:33 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9078205d6_02656509)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:64 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:138 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90780ff39_54397157)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_child/fa/6c/c3/fa6cc378d2942c8857b89d6bca728048c0caeedd_2.module.ps_featuredproductsviewstemplateshookps_featuredproducts.tpl.php:45 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9077fe9d3_01263524)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2417 (fetch)
/modules/ps_featuredproducts/ps_featuredproducts.php:202 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 232 |
INSERT INTO `4s6gv_connections_source` (`id_connections`, `http_referer`, `request_uri`, `keywords`, `date_add`) VALUES ('145', '', 'naravapruebas.com.es/', '', '2026-09-22 21:07:53') |
1.330
ms
|
1 |
|
|
/classes/ObjectModel.php:527
/classes/ConnectionsSource.php:86 (add)
/modules/statsdata/statsdata.php:119 (logHttpReferer)
/modules/statsdata/statsdata.php:74 (getScriptCustomerPagesViews)
/classes/Hook.php:1234 (hookDisplayBeforeBodyClosingTag)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1125 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:507 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c908020637_19571652)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/4c/80/68/4c8068233d3ff8401b0da93ca4d2a07f7405c43b_2.file.layout-full-width.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90800b4e7_75473193)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/5e/94/2b/5e942b9ba415c1df9e4173cac73249e2168114c6_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9080031d7_87712377)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 231 |
INSERT INTO `4s6gv_connections` (`id_guest`, `id_page`, `ip_address`, `http_referer`, `id_shop`, `id_shop_group`, `date_add`) VALUES ('11498', '1', '3628718268', '', '1', '1', '2026-09-22 21:07:53') |
1.247
ms
|
1 |
|
|
/classes/ObjectModel.php:527
/classes/Connection.php:168 (add)
/classes/Connection.php:77 (setNewConnection)
/modules/statsdata/statsdata.php:118 (setPageConnection)
/modules/statsdata/statsdata.php:74 (getScriptCustomerPagesViews)
/classes/Hook.php:1234 (hookDisplayBeforeBodyClosingTag)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1125 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:507 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c908020637_19571652)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/4c/80/68/4c8068233d3ff8401b0da93ca4d2a07f7405c43b_2.file.layout-full-width.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90800b4e7_75473193)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/5e/94/2b/5e942b9ba415c1df9e4173cac73249e2168114c6_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9080031d7_87712377)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 15 |
SELECT SQL_NO_CACHE `id_hook`, `name` FROM `4s6gv_hook` |
1.209
ms
|
1231 |
|
|
/classes/Hook.php:1565
/classes/Hook.php:244 (getAllHookIds)
/classes/Hook.php:954 (getIdByName)
/classes/Dispatcher.php:626 (exec)
/classes/Dispatcher.php:237 (loadRoutes)
/classes/Dispatcher.php:199 (__construct)
/index.php:66 (getInstance)
|
| 160 |
SELECT SQL_NO_CACHE pa.`id_product`, a.`color`, pac.`id_product_attribute`, 0 qty, a.`id_attribute`, al.`name`, IF(color = "", a.id_attribute, color) group_by
FROM `4s6gv_product_attribute` pa
INNER JOIN 4s6gv_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
JOIN `4s6gv_product_attribute_combination` pac ON (pac.`id_product_attribute` = product_attribute_shop.`id_product_attribute`)
JOIN `4s6gv_attribute` a ON (a.`id_attribute` = pac.`id_attribute`)
JOIN `4s6gv_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 1)
JOIN `4s6gv_attribute_group` ag ON (a.id_attribute_group = ag.`id_attribute_group`)
WHERE pa.`id_product` IN (7404) AND ag.`is_color_group` = 1
GROUP BY pa.`id_product`, a.`id_attribute`, `group_by`
ORDER BY a.`position` ASC; |
1.190
ms
|
1 |
Yes
|
Yes
|
/classes/Product.php:4281
/src/Adapter/Product/ProductColorsRetriever.php:23 (getAttributesColorList)
/src/Adapter/Presenter/Product/ProductLazyArray.php:790 (getColoredVariants)
/src/Adapter/Presenter/AbstractLazyArray.php:244 (getMainVariants)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:80 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:176 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:302 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90783f8a9_16018688)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/prod/smarty/compile/sumaysube_child/e3/fe/57/e3fe579cd80af6849f90f9ca44a41e2ba2219bda_2.file.productlist.tpl.php:33 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9078205d6_02656509)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:64 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:138 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90780ff39_54397157)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_child/fa/6c/c3/fa6cc378d2942c8857b89d6bca728048c0caeedd_2.module.ps_featuredproductsviewstemplateshookps_featuredproducts.tpl.php:45 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9077fe9d3_01263524)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2417 (fetch)
/modules/ps_featuredproducts/ps_featuredproducts.php:202 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 19 |
SELECT SQL_NO_CACHE m.`id_module`, m.`name`, ms.`id_module`as `mshop`
FROM `4s6gv_module` m
LEFT JOIN `4s6gv_module_shop` ms
ON m.`id_module` = ms.`id_module`
AND ms.`id_shop` = 1 |
1.185
ms
|
84 |
|
|
/classes/module/Module.php:325
/modules/ybc_blog/ybc_blog.php:66 (__construct)
:undefined (__construct)
/src/Core/Foundation/IoC/Container.php:104 (newInstance)
/src/Core/Foundation/IoC/Container.php:134 (makeInstanceFromClassName)
/src/Core/Foundation/IoC/Container.php:147 (doMake)
/src/Adapter/ServiceLocator.php:50 (make)
/classes/module/Module.php:1386 (get)
/tools/profiling/Module.php:15 (coreLoadModule)
/classes/module/Module.php:1365 (coreLoadModule)
/classes/Hook.php:1105 (getInstanceByName)
/classes/Dispatcher.php:626 (exec)
/classes/Dispatcher.php:237 (loadRoutes)
/classes/Dispatcher.php:199 (__construct)
/index.php:66 (getInstance)
|
| 134 |
SELECT SQL_NO_CACHE pac.id_product_attribute, GROUP_CONCAT(agl.`name`, ' - ',al.`name` ORDER BY ag.`position`, a.`position` SEPARATOR ', ') as attribute_designation
FROM `4s6gv_product_attribute_combination` pac
LEFT JOIN `4s6gv_attribute` a ON a.`id_attribute` = pac.`id_attribute`
LEFT JOIN `4s6gv_attribute_group` ag ON ag.`id_attribute_group` = a.`id_attribute_group`
LEFT JOIN `4s6gv_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 1)
LEFT JOIN `4s6gv_attribute_group_lang` agl ON (ag.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 1)
WHERE pac.id_product_attribute IN (6552,6553,6554,6555,6556,6557,6558,6559,6560,6561,6562,6563,6564,6565,6566,6567,6568,6569,6570,6571,6572,6573)
GROUP BY pac.id_product_attribute
ORDER BY pac.id_product_attribute |
1.182
ms
|
22 |
|
|
/classes/Product.php:2484
/src/Adapter/Presenter/Product/ProductLazyArray.php:923 (getAttributesResume)
/src/Adapter/Presenter/Product/ProductLazyArray.php:755 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:244 (getFlags)
/var/cache/prod/smarty/compile/sumaysube_child/80/21/d0/8021d070cfee692cff34ece8f0b6e1873b6c5a1c_2.file.product-flags.tpl.php:26 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c907849091_57352271)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:297 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90783f8a9_16018688)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/e3/fe/57/e3fe579cd80af6849f90f9ca44a41e2ba2219bda_2.file.productlist.tpl.php:33 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9078205d6_02656509)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:64 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:138 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90780ff39_54397157)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_child/fa/6c/c3/fa6cc378d2942c8857b89d6bca728048c0caeedd_2.module.ps_featuredproductsviewstemplateshookps_featuredproducts.tpl.php:45 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9077fe9d3_01263524)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2417 (fetch)
/modules/ps_featuredproducts/ps_featuredproducts.php:202 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 161 |
SELECT SQL_NO_CACHE pa.`id_product`, a.`color`, pac.`id_product_attribute`, 0 qty, a.`id_attribute`, al.`name`, IF(color = "", a.id_attribute, color) group_by
FROM `4s6gv_product_attribute` pa
INNER JOIN 4s6gv_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
JOIN `4s6gv_product_attribute_combination` pac ON (pac.`id_product_attribute` = product_attribute_shop.`id_product_attribute`)
JOIN `4s6gv_attribute` a ON (a.`id_attribute` = pac.`id_attribute`)
JOIN `4s6gv_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 1)
JOIN `4s6gv_attribute_group` ag ON (a.id_attribute_group = ag.`id_attribute_group`)
WHERE pa.`id_product` IN (8509) AND ag.`is_color_group` = 1
GROUP BY pa.`id_product`, a.`id_attribute`, `group_by`
ORDER BY a.`position` ASC; |
1.166
ms
|
1 |
Yes
|
Yes
|
/classes/Product.php:4281
/src/Adapter/Product/ProductColorsRetriever.php:23 (getAttributesColorList)
/src/Adapter/Presenter/Product/ProductLazyArray.php:790 (getColoredVariants)
/src/Adapter/Presenter/AbstractLazyArray.php:244 (getMainVariants)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:80 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:176 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:302 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90783f8a9_16018688)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/prod/smarty/compile/sumaysube_child/e3/fe/57/e3fe579cd80af6849f90f9ca44a41e2ba2219bda_2.file.productlist.tpl.php:33 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9078205d6_02656509)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:64 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:138 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90780ff39_54397157)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_child/fa/6c/c3/fa6cc378d2942c8857b89d6bca728048c0caeedd_2.module.ps_featuredproductsviewstemplateshookps_featuredproducts.tpl.php:45 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9077fe9d3_01263524)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2417 (fetch)
/modules/ps_featuredproducts/ps_featuredproducts.php:202 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 12 |
SELECT SQL_NO_CACHE lower(name) as name
FROM `4s6gv_hook` h
WHERE (h.active = 1) |
1.084
ms
|
1231 |
|
|
/classes/Hook.php:1605
/classes/Hook.php:903 (getHookStatusByName)
/classes/Dispatcher.php:626 (exec)
/classes/Dispatcher.php:237 (loadRoutes)
/classes/Dispatcher.php:199 (__construct)
/index.php:66 (getInstance)
|
| 156 |
SELECT SQL_NO_CACHE pa.`id_product`, a.`color`, pac.`id_product_attribute`, 0 qty, a.`id_attribute`, al.`name`, IF(color = "", a.id_attribute, color) group_by
FROM `4s6gv_product_attribute` pa
INNER JOIN 4s6gv_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
JOIN `4s6gv_product_attribute_combination` pac ON (pac.`id_product_attribute` = product_attribute_shop.`id_product_attribute`)
JOIN `4s6gv_attribute` a ON (a.`id_attribute` = pac.`id_attribute`)
JOIN `4s6gv_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 1)
JOIN `4s6gv_attribute_group` ag ON (a.id_attribute_group = ag.`id_attribute_group`)
WHERE pa.`id_product` IN (8087) AND ag.`is_color_group` = 1
GROUP BY pa.`id_product`, a.`id_attribute`, `group_by`
ORDER BY a.`position` ASC; |
1.004
ms
|
22 |
Yes
|
Yes
|
/classes/Product.php:4281
/src/Adapter/Product/ProductColorsRetriever.php:23 (getAttributesColorList)
/src/Adapter/Presenter/Product/ProductLazyArray.php:790 (getColoredVariants)
/src/Adapter/Presenter/AbstractLazyArray.php:244 (getMainVariants)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:80 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:176 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:302 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90783f8a9_16018688)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/e3/fe/57/e3fe579cd80af6849f90f9ca44a41e2ba2219bda_2.file.productlist.tpl.php:33 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9078205d6_02656509)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:64 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:138 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90780ff39_54397157)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_child/fa/6c/c3/fa6cc378d2942c8857b89d6bca728048c0caeedd_2.module.ps_featuredproductsviewstemplateshookps_featuredproducts.tpl.php:45 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9077fe9d3_01263524)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2417 (fetch)
/modules/ps_featuredproducts/ps_featuredproducts.php:202 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 35 |
SELECT SQL_NO_CACHE m.`id_module`, m.`name`, ms.`id_module`as `mshop`
FROM `4s6gv_module` m
LEFT JOIN `4s6gv_module_shop` ms
ON m.`id_module` = ms.`id_module`
AND ms.`id_shop` = 1 |
0.997
ms
|
84 |
|
|
/classes/module/Module.php:325
/modules/ps_socialfollow/ps_socialfollow.php:53 (__construct)
:undefined (__construct)
/src/Core/Foundation/IoC/Container.php:104 (newInstance)
/src/Core/Foundation/IoC/Container.php:134 (makeInstanceFromClassName)
/src/Core/Foundation/IoC/Container.php:147 (doMake)
/src/Adapter/ServiceLocator.php:50 (make)
/classes/module/Module.php:1386 (get)
/tools/profiling/Module.php:15 (coreLoadModule)
/classes/module/Module.php:1365 (coreLoadModule)
/classes/Hook.php:1105 (getInstanceByName)
/classes/controller/FrontController.php:999 (exec)
/tools/profiling/Controller.php:33 (setMedia)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 191 |
SELECT SQL_NO_CACHE *, ( IF (`id_shop` = 1, 2, 0) + IF (`id_country` = 6, 4, 0) + IF (`id_currency` = 1, 8, 0) + IF (`id_group` = 1, 16, 0) + IF (`id_customer` = 0, 32, 0)) AS `score`
FROM `4s6gv_specific_price`
WHERE
`id_shop` IN (0, 1) AND
`id_currency` IN (0, 1) AND
`id_country` IN (0, 6) AND
`id_group` IN (0, 1) AND `id_product` = 6092 AND `id_customer` = 0 AND `id_product_attribute` = 0 AND `id_cart` = 0 AND (`from` = '0000-00-00 00:00:00' OR '2026-09-22 00:00:00' >= `from`) AND (`to` = '0000-00-00 00:00:00' OR '2026-09-22 00:00:00' <= `to`)
AND IF(`from_quantity` > 1, `from_quantity`, 0) <= 1 ORDER BY `id_product_attribute` DESC, `id_cart` DESC, `from_quantity` DESC, `id_specific_price_rule` ASC, `score` DESC, `to` DESC, `from` DESC LIMIT 1 |
0.926
ms
|
2 |
Yes
|
|
/classes/SpecificPrice.php:563
/classes/Product.php:3572 (getSpecificPrice)
/classes/Product.php:3462 (priceCalculation)
/classes/Product.php:5462 (getPriceStatic)
/classes/ProductAssembler.php:194 (getProductProperties)
/modules/ps_specials/ps_specials.php:202 (assembleProducts)
/modules/ps_specials/ps_specials.php:158 (getSpecialProducts)
/modules/ps_specials/ps_specials.php:145 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 167 |
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2026-09-22 00:00:00',
INTERVAL 20 DAY
)
) > 0) as new
FROM 4s6gv_product p
LEFT JOIN 4s6gv_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 1
LEFT JOIN 4s6gv_stock_available sa ON sa.id_product = p.id_product
AND sa.id_product_attribute = 0
AND sa.id_shop = 1 LEFT JOIN 4s6gv_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product IN (9080) |
0.911
ms
|
1 |
|
|
/classes/ProductAssembler.php:81
/classes/ProductAssembler.php:191 (addMissingProductFieldsForMultipleProducts)
/modules/ps_newproducts/ps_newproducts.php:227 (assembleProducts)
/modules/ps_newproducts/ps_newproducts.php:172 (getNewProducts)
/modules/ps_newproducts/ps_newproducts.php:159 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 71 |
SELECT SQL_NO_CACHE *, ( IF (`id_shop` = 1, 2, 0) + IF (`id_country` = 6, 4, 0) + IF (`id_currency` = 1, 8, 0) + IF (`id_group` = 1, 16, 0) + IF (`id_customer` = 0, 32, 0)) AS `score`
FROM `4s6gv_specific_price`
WHERE
`id_shop` IN (0, 1) AND
`id_currency` IN (0, 1) AND
`id_country` IN (0, 6) AND
`id_group` IN (0, 1) AND `id_product` = 8087 AND `id_customer` = 0 AND `id_product_attribute` = 0 AND `id_cart` = 0 AND (`from` = '0000-00-00 00:00:00' OR '2026-09-22 00:00:00' >= `from`) AND (`to` = '0000-00-00 00:00:00' OR '2026-09-22 00:00:00' <= `to`)
AND IF(`from_quantity` > 1, `from_quantity`, 0) <= 1 ORDER BY `id_product_attribute` DESC, `id_cart` DESC, `from_quantity` DESC, `id_specific_price_rule` ASC, `score` DESC, `to` DESC, `from` DESC LIMIT 1 |
0.905
ms
|
2 |
Yes
|
|
/classes/SpecificPrice.php:563
/classes/Product.php:3572 (getSpecificPrice)
/classes/Product.php:3462 (priceCalculation)
/classes/Product.php:5462 (getPriceStatic)
/classes/ProductAssembler.php:194 (getProductProperties)
/modules/ps_featuredproducts/ps_featuredproducts.php:286 (assembleProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 188 |
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2026-09-22 00:00:00',
INTERVAL 20 DAY
)
) > 0) as new
FROM 4s6gv_product p
LEFT JOIN 4s6gv_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 1
LEFT JOIN 4s6gv_stock_available sa ON sa.id_product = p.id_product
AND sa.id_product_attribute = 0
AND sa.id_shop = 1 LEFT JOIN 4s6gv_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product IN (6092) |
0.889
ms
|
1 |
|
|
/classes/ProductAssembler.php:81
/classes/ProductAssembler.php:191 (addMissingProductFieldsForMultipleProducts)
/modules/ps_specials/ps_specials.php:202 (assembleProducts)
/modules/ps_specials/ps_specials.php:158 (getSpecialProducts)
/modules/ps_specials/ps_specials.php:145 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 36 |
SELECT SQL_NO_CACHE cc.name
FROM 4s6gv_cookiesplus_cookie cc LEFT JOIN 4s6gv_cookiesplus_cookie_lang ccl on cc.`id_cookiesplus_cookie` = ccl.`id_cookiesplus_cookie`
WHERE
`id_cookiesplus_finality` = 1
AND ccl.`id_lang` = 1 AND cc.`active` = 1 AND cc.`id_shop` = 1 ORDER BY cc.`name`; |
0.887
ms
|
2 |
Yes
|
|
/modules/cookiesplus/classes/CookiesPlusCookie.php:118
/modules/cookiesplus/cookiesplus.php:1472 (getCookiesPlusCookies)
/classes/Hook.php:1234 (hookActionFrontControllerSetMedia)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1125 (callHookOn)
/classes/controller/FrontController.php:999 (exec)
/tools/profiling/Controller.php:33 (setMedia)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 133 |
SELECT SQL_NO_CACHE pa.*, product_attribute_shop.*
FROM `4s6gv_product_attribute` pa
INNER JOIN 4s6gv_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
WHERE pa.`id_product` = 8087
GROUP BY pa.`id_product_attribute`
ORDER BY pa.`id_product_attribute` |
0.884
ms
|
22 |
Yes
|
Yes
|
/classes/Product.php:2469
/src/Adapter/Presenter/Product/ProductLazyArray.php:923 (getAttributesResume)
/src/Adapter/Presenter/Product/ProductLazyArray.php:755 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:244 (getFlags)
/var/cache/prod/smarty/compile/sumaysube_child/80/21/d0/8021d070cfee692cff34ece8f0b6e1873b6c5a1c_2.file.product-flags.tpl.php:26 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c907849091_57352271)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:297 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90783f8a9_16018688)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/e3/fe/57/e3fe579cd80af6849f90f9ca44a41e2ba2219bda_2.file.productlist.tpl.php:33 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9078205d6_02656509)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:64 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:138 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90780ff39_54397157)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_child/fa/6c/c3/fa6cc378d2942c8857b89d6bca728048c0caeedd_2.module.ps_featuredproductsviewstemplateshookps_featuredproducts.tpl.php:45 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9077fe9d3_01263524)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2417 (fetch)
/modules/ps_featuredproducts/ps_featuredproducts.php:202 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 228 |
SELECT SQL_NO_CACHE `id_guest`
FROM `4s6gv_connections`
WHERE `id_guest` = 11498
AND `date_add` > '2026-09-22 20:37:00'
AND id_shop IN (1)
ORDER BY `date_add` DESC LIMIT 1 |
0.882
ms
|
1 |
Yes
|
|
/classes/Connection.php:148
/classes/Connection.php:77 (setNewConnection)
/modules/statsdata/statsdata.php:118 (setPageConnection)
/modules/statsdata/statsdata.php:74 (getScriptCustomerPagesViews)
/classes/Hook.php:1234 (hookDisplayBeforeBodyClosingTag)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1125 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:507 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c908020637_19571652)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/4c/80/68/4c8068233d3ff8401b0da93ca4d2a07f7405c43b_2.file.layout-full-width.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90800b4e7_75473193)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/5e/94/2b/5e942b9ba415c1df9e4173cac73249e2168114c6_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9080031d7_87712377)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 20 |
SELECT SQL_NO_CACHE m.page, ml.url_rewrite, ml.id_lang
FROM `4s6gv_meta` m
LEFT JOIN `4s6gv_meta_lang` ml ON (m.id_meta = ml.id_meta AND ml.id_shop = 1 )
ORDER BY LENGTH(ml.url_rewrite) DESC |
0.851
ms
|
47 |
Yes
|
|
/classes/Dispatcher.php:657
/classes/Dispatcher.php:237 (loadRoutes)
/classes/Dispatcher.php:199 (__construct)
/index.php:66 (getInstance)
|
| 174 |
SELECT SQL_NO_CACHE COALESCE(SUM(first_level_quantity) + SUM(pack_quantity), 0) as deep_quantity,
COALESCE(SUM(first_level_quantity), 0) as quantity
FROM (SELECT SUM(cp.`quantity`) as first_level_quantity, 0 as pack_quantity
FROM `4s6gv_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 9080 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `4s6gv_cart_product` cp JOIN `4s6gv_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `4s6gv_product` pr ON p.`id_product_pack` = pr.`id_product`
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND p.`id_product_item` = 9080 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.814
ms
|
0 |
|
|
/classes/Cart.php:1625
/classes/Product.php:4129 (getProductQuantity)
/classes/Product.php:5568 (getQuantity)
/classes/ProductAssembler.php:194 (getProductProperties)
/modules/ps_newproducts/ps_newproducts.php:227 (assembleProducts)
/modules/ps_newproducts/ps_newproducts.php:172 (getNewProducts)
/modules/ps_newproducts/ps_newproducts.php:159 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 40 |
SELECT SQL_NO_CACHE * FROM `4s6gv_image_type` WHERE 1 AND `categories` = 1 ORDER BY `width` DESC, `height` DESC, `name`ASC |
0.807
ms
|
16 |
Yes
|
|
/classes/ImageType.php:89
/src/Adapter/Image/ImageRetriever.php:349 (getImagesTypes)
/classes/controller/FrontController.php:1582 (getNoPictureImage)
/classes/controller/FrontController.php:1734 (getTemplateVarUrls)
/classes/controller/FrontController.php:545 (getTemplateVarShop)
/classes/controller/FrontController.php:623 (assignGeneralPurposeVariables)
/controllers/front/IndexController.php:18 (initContent)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 171 |
SELECT SQL_NO_CACHE product_shop.`price`, product_shop.`ecotax`,
IFNULL(product_attribute_shop.id_product_attribute,0) id_product_attribute, product_attribute_shop.`price` AS attribute_price, product_attribute_shop.default_on, product_attribute_shop.`ecotax` AS attribute_ecotax
FROM `4s6gv_product` p
INNER JOIN `4s6gv_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `4s6gv_product_attribute_shop` `product_attribute_shop` ON (product_attribute_shop.id_product = p.id_product AND product_attribute_shop.id_shop = 1)
WHERE (p.`id_product` = 9080) |
0.802
ms
|
1 |
|
|
/classes/Product.php:3606
/classes/Product.php:3462 (priceCalculation)
/classes/Product.php:5462 (getPriceStatic)
/classes/ProductAssembler.php:194 (getProductProperties)
/modules/ps_newproducts/ps_newproducts.php:227 (assembleProducts)
/modules/ps_newproducts/ps_newproducts.php:172 (getNewProducts)
/modules/ps_newproducts/ps_newproducts.php:159 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 179 |
SELECT SQL_NO_CACHE pa.`id_product`, a.`color`, pac.`id_product_attribute`, 0 qty, a.`id_attribute`, al.`name`, IF(color = "", a.id_attribute, color) group_by
FROM `4s6gv_product_attribute` pa
INNER JOIN 4s6gv_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
JOIN `4s6gv_product_attribute_combination` pac ON (pac.`id_product_attribute` = product_attribute_shop.`id_product_attribute`)
JOIN `4s6gv_attribute` a ON (a.`id_attribute` = pac.`id_attribute`)
JOIN `4s6gv_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 1)
JOIN `4s6gv_attribute_group` ag ON (a.id_attribute_group = ag.`id_attribute_group`)
WHERE pa.`id_product` IN (9080) AND ag.`is_color_group` = 1
GROUP BY pa.`id_product`, a.`id_attribute`, `group_by`
ORDER BY a.`position` ASC; |
0.800
ms
|
1 |
Yes
|
Yes
|
/classes/Product.php:4281
/src/Adapter/Product/ProductColorsRetriever.php:23 (getAttributesColorList)
/src/Adapter/Presenter/Product/ProductLazyArray.php:790 (getColoredVariants)
/src/Adapter/Presenter/AbstractLazyArray.php:244 (getMainVariants)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:80 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:176 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:302 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90783f8a9_16018688)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/prod/smarty/compile/sumaysube_child/e3/fe/57/e3fe579cd80af6849f90f9ca44a41e2ba2219bda_2.file.productlist.tpl.php:33 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9078205d6_02656509)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:64 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:138 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90780ff39_54397157)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_child/4a/8d/f4/4a8df44403a47041b050fac755e17268c2a7c3e7_2.module.ps_newproductsviewstemplateshookps_newproducts.tpl.php:45 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c907b6c905_66403986)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2417 (fetch)
/modules/ps_newproducts/ps_newproducts.php:167 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 51 |
SELECT SQL_NO_CACHE `id_module` FROM `4s6gv_module` WHERE `name` = "ps_imageslider" LIMIT 1 |
0.786
ms
|
1 |
|
|
/classes/module/Module.php:2778
/classes/module/Module.php:2266 (getModuleIdByName)
/classes/Hook.php:1240 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 39 |
SELECT SQL_NO_CACHE *
FROM 4s6gv_meta m
LEFT JOIN 4s6gv_meta_lang ml ON m.id_meta = ml.id_meta
WHERE (
m.page = "index"
OR m.page = "index"
)
AND ml.id_lang = 1
AND ml.id_shop = 1 LIMIT 1 |
0.772
ms
|
1 |
|
|
/classes/Meta.php:162
/classes/Meta.php:302 (getMetaByPage)
/classes/Meta.php:289 (getHomeMetas)
/classes/controller/FrontController.php:1785 (getMetaTags)
/classes/controller/FrontController.php:544 (getTemplateVarPage)
/classes/controller/FrontController.php:623 (assignGeneralPurposeVariables)
/controllers/front/IndexController.php:18 (initContent)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 16 |
SELECT SQL_NO_CACHE m.`id_module`, m.`name`, ms.`id_module`as `mshop`
FROM `4s6gv_module` m
LEFT JOIN `4s6gv_module_shop` ms
ON m.`id_module` = ms.`id_module`
AND ms.`id_shop` = 1 |
0.761
ms
|
84 |
|
|
/classes/module/Module.php:325
/modules/cookiesplus/cookiesplus.php:54 (__construct)
:undefined (__construct)
/src/Core/Foundation/IoC/Container.php:104 (newInstance)
/src/Core/Foundation/IoC/Container.php:134 (makeInstanceFromClassName)
/src/Core/Foundation/IoC/Container.php:147 (doMake)
/src/Adapter/ServiceLocator.php:50 (make)
/classes/module/Module.php:1386 (get)
/tools/profiling/Module.php:15 (coreLoadModule)
/classes/module/Module.php:1365 (coreLoadModule)
/classes/Hook.php:1105 (getInstanceByName)
/classes/Dispatcher.php:626 (exec)
/classes/Dispatcher.php:237 (loadRoutes)
/classes/Dispatcher.php:199 (__construct)
/index.php:66 (getInstance)
|
| 57 |
SELECT SQL_NO_CACHE `id_module` FROM `4s6gv_module_shop` WHERE `id_module` = 33 AND `id_shop` = 1 LIMIT 1 |
0.746
ms
|
1 |
|
|
/classes/module/Module.php:2267
/classes/Hook.php:1240 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 25 |
SELECT SQL_NO_CACHE *
FROM `4s6gv_currency` a
LEFT JOIN `4s6gv_currency_lang` `b` ON a.`id_currency` = b.`id_currency` AND b.`id_lang` = 1
LEFT JOIN `4s6gv_currency_shop` `c` ON a.`id_currency` = c.`id_currency` AND c.`id_shop` = 1
WHERE (a.`id_currency` = 1) LIMIT 1 |
0.717
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Currency.php:226 (__construct)
/src/Adapter/Currency/CurrencyDataProvider.php:81 (__construct)
/src/Adapter/Currency/CurrencyDataProvider.php:94 (getCurrencyByIsoCode)
/src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:81 (getCurrencyByIsoCodeAndLocale)
/src/Core/Data/Layer/AbstractDataLayer.php:70 (doRead)
/src/Core/Data/Layer/AbstractDataLayer.php:129 (read)
/src/Core/Data/Layer/AbstractDataLayer.php:74 (propagateRead)
/src/Core/Localization/Currency/CurrencyDataSource.php:47 (read)
/src/Core/Localization/Currency/CurrencyDataSource.php:89 (getLocalizedCurrencyData)
/src/Core/Localization/Currency/CurrencyDataSource.php:76 (formatCurrenciesData)
/src/Core/Localization/Currency/Repository.php:67 (getAllInstalledCurrenciesData)
/src/Core/Localization/Locale/Repository.php:186 (getAllInstalledCurrencies)
/src/Core/Localization/Locale/Repository.php:129 (getPriceSpecifications)
/classes/controller/Controller.php:197 (getLocale)
/classes/controller/FrontController.php:223 (init)
/tools/profiling/Controller.php:26 (init)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 115 |
SELECT SQL_NO_CACHE *
FROM `4s6gv_product` a
LEFT JOIN `4s6gv_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `4s6gv_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 8087) AND (b.`id_shop` = 1) LIMIT 1 |
0.707
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Product.php:685 (__construct)
/src/Adapter/Image/ImageRetriever.php:48 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:944 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:118 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:30 (__construct)
/modules/ps_featuredproducts/ps_featuredproducts.php:289 (present)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 175 |
SELECT SQL_NO_CACHE *
FROM `4s6gv_product` a
LEFT JOIN `4s6gv_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `4s6gv_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 9080) AND (b.`id_shop` = 1) LIMIT 1 |
0.686
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Product.php:685 (__construct)
/src/Adapter/Image/ImageRetriever.php:48 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:944 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:118 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:30 (__construct)
/modules/ps_newproducts/ps_newproducts.php:230 (present)
/modules/ps_newproducts/ps_newproducts.php:172 (getNewProducts)
/modules/ps_newproducts/ps_newproducts.php:159 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 195 |
SELECT SQL_NO_CACHE COALESCE(SUM(first_level_quantity) + SUM(pack_quantity), 0) as deep_quantity,
COALESCE(SUM(first_level_quantity), 0) as quantity
FROM (SELECT SUM(cp.`quantity`) as first_level_quantity, 0 as pack_quantity
FROM `4s6gv_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 6092 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `4s6gv_cart_product` cp JOIN `4s6gv_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `4s6gv_product` pr ON p.`id_product_pack` = pr.`id_product`
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND p.`id_product_item` = 6092 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.676
ms
|
0 |
|
|
/classes/Cart.php:1625
/classes/Product.php:4129 (getProductQuantity)
/classes/Product.php:5568 (getQuantity)
/classes/ProductAssembler.php:194 (getProductProperties)
/modules/ps_specials/ps_specials.php:202 (assembleProducts)
/modules/ps_specials/ps_specials.php:158 (getSpecialProducts)
/modules/ps_specials/ps_specials.php:145 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 120 |
SELECT SQL_NO_CACHE *
FROM `4s6gv_product` a
LEFT JOIN `4s6gv_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `4s6gv_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 1066) AND (b.`id_shop` = 1) LIMIT 1 |
0.669
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Product.php:685 (__construct)
/src/Adapter/Image/ImageRetriever.php:48 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:944 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:118 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:30 (__construct)
/modules/ps_featuredproducts/ps_featuredproducts.php:289 (present)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 38 |
SELECT SQL_NO_CACHE cc.name
FROM 4s6gv_cookiesplus_cookie cc LEFT JOIN 4s6gv_cookiesplus_cookie_lang ccl on cc.`id_cookiesplus_cookie` = ccl.`id_cookiesplus_cookie`
WHERE
`id_cookiesplus_finality` = 4
AND ccl.`id_lang` = 1 AND cc.`active` = 1 AND cc.`id_shop` = 1 ORDER BY cc.`name`; |
0.642
ms
|
3 |
Yes
|
|
/modules/cookiesplus/classes/CookiesPlusCookie.php:118
/modules/cookiesplus/cookiesplus.php:1472 (getCookiesPlusCookies)
/classes/Hook.php:1234 (hookActionFrontControllerSetMedia)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1125 (callHookOn)
/classes/controller/FrontController.php:999 (exec)
/tools/profiling/Controller.php:33 (setMedia)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 0 |
SELECT SQL_NO_CACHE s.id_shop, CONCAT(su.physical_uri, su.virtual_uri) AS uri, su.domain, su.main
FROM 4s6gv_shop_url su
LEFT JOIN 4s6gv_shop s ON (s.id_shop = su.id_shop)
WHERE (su.domain = 'naravapruebas.com.es' OR su.domain_ssl = 'naravapruebas.com.es')
AND s.active = 1
AND s.deleted = 0
ORDER BY LENGTH(CONCAT(su.physical_uri, su.virtual_uri)) DESC |
0.642
ms
|
1 |
Yes
|
|
/classes/shop/Shop.php:1377
/classes/shop/Shop.php:336 (findShopByHost)
/config/config.inc.php:103 (initialize)
/index.php:20 (require_once)
|
| 117 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `4s6gv_image` i
INNER JOIN 4s6gv_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `4s6gv_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 8087
ORDER BY `position` |
0.635
ms
|
3 |
Yes
|
|
/classes/Product.php:3262
/src/Adapter/Image/ImageRetriever.php:55 (getImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:944 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:118 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:30 (__construct)
/modules/ps_featuredproducts/ps_featuredproducts.php:289 (present)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 58 |
SELECT SQL_NO_CACHE *
FROM `4s6gv_category` a
LEFT JOIN `4s6gv_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 2) LIMIT 1 |
0.618
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/modules/ps_featuredproducts/ps_featuredproducts.php:221 (__construct)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 53 |
SELECT SQL_NO_CACHE COUNT(DISTINCT c.id_currency) FROM `4s6gv_currency` c
LEFT JOIN 4s6gv_currency_shop cs ON (cs.id_currency = c.id_currency AND cs.id_shop = 1)
WHERE c.`active` = 1 AND c.`deleted` = 0 LIMIT 1 |
0.608
ms
|
1 |
|
|
/classes/Currency.php:1100
/classes/Currency.php:1119 (countActiveCurrencies)
/classes/module/Module.php:2348 (isMultiCurrencyActivated)
/modules/ps_imageslider/ps_imageslider.php:576 (getCacheId)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 52 |
SELECT SQL_NO_CACHE `id_module` FROM `4s6gv_module_shop` WHERE `id_module` = 35 AND `id_shop` = 1 LIMIT 1 |
0.603
ms
|
1 |
|
|
/classes/module/Module.php:2267
/classes/Hook.php:1240 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 82 |
SELECT SQL_NO_CACHE COALESCE(SUM(first_level_quantity) + SUM(pack_quantity), 0) as deep_quantity,
COALESCE(SUM(first_level_quantity), 0) as quantity
FROM (SELECT SUM(cp.`quantity`) as first_level_quantity, 0 as pack_quantity
FROM `4s6gv_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 8087 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `4s6gv_cart_product` cp JOIN `4s6gv_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `4s6gv_product` pr ON p.`id_product_pack` = pr.`id_product`
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND p.`id_product_item` = 8087 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.600
ms
|
0 |
|
|
/classes/Cart.php:1625
/classes/Product.php:4129 (getProductQuantity)
/classes/Product.php:5568 (getQuantity)
/classes/ProductAssembler.php:194 (getProductProperties)
/modules/ps_featuredproducts/ps_featuredproducts.php:286 (assembleProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 186 |
SELECT SQL_NO_CACHE `id_product`, `id_product_attribute`
FROM `4s6gv_specific_price`
WHERE `id_shop` IN (0, 1) AND
`id_currency` IN (0, 1) AND
`id_country` IN (0, 6) AND
`id_group` IN (0, 1) AND
`from_quantity` = 1 AND
`reduction` > 0
AND `id_customer` = 0 AND `id_cart` = 0 AND (`from` = '0000-00-00 00:00:00' OR '2026-09-22 00:00:00' >= `from`) AND (`to` = '0000-00-00 00:00:00' OR '2026-09-22 00:00:00' <= `to`) |
0.599
ms
|
6 |
|
|
/classes/SpecificPrice.php:662
/classes/Product.php:2875 (getProductIdByDate)
/classes/Product.php:3031 (_getProductIdByDate)
/modules/ps_specials/ps_specials.php:172 (getPricesDrop)
/modules/ps_specials/ps_specials.php:158 (getSpecialProducts)
/modules/ps_specials/ps_specials.php:145 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 99 |
SELECT SQL_NO_CACHE *, ( IF (`id_shop` = 1, 2, 0) + IF (`id_country` = 6, 4, 0) + IF (`id_currency` = 1, 8, 0) + IF (`id_group` = 1, 16, 0) + IF (`id_customer` = 0, 32, 0)) AS `score`
FROM `4s6gv_specific_price`
WHERE
`id_shop` IN (0, 1) AND
`id_currency` IN (0, 1) AND
`id_country` IN (0, 6) AND
`id_group` IN (0, 1) AND `id_product` = 7404 AND `id_customer` = 0 AND `id_product_attribute` = 0 AND `id_cart` = 0 AND (`from` = '0000-00-00 00:00:00' OR '2026-09-22 00:00:00' >= `from`) AND (`to` = '0000-00-00 00:00:00' OR '2026-09-22 00:00:00' <= `to`)
AND IF(`from_quantity` > 1, `from_quantity`, 0) <= 1 ORDER BY `id_product_attribute` DESC, `id_cart` DESC, `from_quantity` DESC, `id_specific_price_rule` ASC, `score` DESC, `to` DESC, `from` DESC LIMIT 1 |
0.595
ms
|
1 |
Yes
|
|
/classes/SpecificPrice.php:563
/classes/Product.php:3572 (getSpecificPrice)
/classes/Product.php:3462 (priceCalculation)
/classes/Product.php:5462 (getPriceStatic)
/classes/ProductAssembler.php:194 (getProductProperties)
/modules/ps_featuredproducts/ps_featuredproducts.php:286 (assembleProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 18 |
SELECT SQL_NO_CACHE *
FROM 4s6gv_cookiesplus_finality cf LEFT JOIN 4s6gv_cookiesplus_finality_lang cfl on cf.`id_cookiesplus_finality` = cfl.`id_cookiesplus_finality`
WHERE
cfl.`id_lang` = 1 AND cf.`active` = 1 AND cf.`id_shop` = 1
ORDER BY `position` |
0.590
ms
|
3 |
|
|
/modules/cookiesplus/classes/CookiesPlusFinality.php:98
/modules/cookiesplus/cookiesplus.php:2647 (getCookiesPlusFinalities)
/modules/cookiesplus/cookiesplus.php:2022 (initializeCookiesPlusPreferences)
/classes/Hook.php:1234 (hookModuleRoutes)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1125 (callHookOn)
/classes/Dispatcher.php:626 (exec)
/classes/Dispatcher.php:237 (loadRoutes)
/classes/Dispatcher.php:199 (__construct)
/index.php:66 (getInstance)
|
| 54 |
SELECT SQL_NO_CACHE `id_module` FROM `4s6gv_module` WHERE `name` = "ps_customtext" LIMIT 1 |
0.587
ms
|
1 |
|
|
/classes/module/Module.php:2778
/classes/module/Module.php:2266 (getModuleIdByName)
/classes/Hook.php:1240 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 106 |
SELECT SQL_NO_CACHE *, ( IF (`id_shop` = 1, 2, 0) + IF (`id_country` = 6, 4, 0) + IF (`id_currency` = 1, 8, 0) + IF (`id_group` = 1, 16, 0) + IF (`id_customer` = 0, 32, 0)) AS `score`
FROM `4s6gv_specific_price`
WHERE
`id_shop` IN (0, 1) AND
`id_currency` IN (0, 1) AND
`id_country` IN (0, 6) AND
`id_group` IN (0, 1) AND `id_product` = 8509 AND `id_customer` = 0 AND `id_product_attribute` = 0 AND `id_cart` = 0 AND (`from` = '0000-00-00 00:00:00' OR '2026-09-22 00:00:00' >= `from`) AND (`to` = '0000-00-00 00:00:00' OR '2026-09-22 00:00:00' <= `to`)
AND IF(`from_quantity` > 1, `from_quantity`, 0) <= 1 ORDER BY `id_product_attribute` DESC, `id_cart` DESC, `from_quantity` DESC, `id_specific_price_rule` ASC, `score` DESC, `to` DESC, `from` DESC LIMIT 1 |
0.584
ms
|
1 |
Yes
|
|
/classes/SpecificPrice.php:563
/classes/Product.php:3572 (getSpecificPrice)
/classes/Product.php:3462 (priceCalculation)
/classes/Product.php:5462 (getPriceStatic)
/classes/ProductAssembler.php:194 (getProductProperties)
/modules/ps_featuredproducts/ps_featuredproducts.php:286 (assembleProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 37 |
SELECT SQL_NO_CACHE cc.name
FROM 4s6gv_cookiesplus_cookie cc LEFT JOIN 4s6gv_cookiesplus_cookie_lang ccl on cc.`id_cookiesplus_cookie` = ccl.`id_cookiesplus_cookie`
WHERE
`id_cookiesplus_finality` = 3
AND ccl.`id_lang` = 1 AND cc.`active` = 1 AND cc.`id_shop` = 1 ORDER BY cc.`name`; |
0.580
ms
|
1 |
Yes
|
|
/modules/cookiesplus/classes/CookiesPlusCookie.php:118
/modules/cookiesplus/cookiesplus.php:1472 (getCookiesPlusCookies)
/classes/Hook.php:1234 (hookActionFrontControllerSetMedia)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1125 (callHookOn)
/classes/controller/FrontController.php:999 (exec)
/tools/profiling/Controller.php:33 (setMedia)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 21 |
SELECT SQL_NO_CACHE * FROM `4s6gv_currency` c ORDER BY `iso_code` ASC |
0.579
ms
|
1 |
Yes
|
|
/classes/Currency.php:688
/src/Adapter/Currency/CurrencyDataProvider.php:64 (findAllInstalled)
/src/Core/Localization/Currency/DataLayer/CurrencyInstalled.php:69 (findAllInstalled)
/src/Core/Localization/Currency/CurrencyDataSource.php:76 (getAllInstalledCurrencyIsoCodes)
/src/Core/Localization/Currency/Repository.php:67 (getAllInstalledCurrenciesData)
/src/Core/Localization/Locale/Repository.php:186 (getAllInstalledCurrencies)
/src/Core/Localization/Locale/Repository.php:129 (getPriceSpecifications)
/classes/controller/Controller.php:197 (getLocale)
/classes/controller/FrontController.php:223 (init)
/tools/profiling/Controller.php:26 (init)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 130 |
SELECT SQL_NO_CACHE *
FROM `4s6gv_product` a
LEFT JOIN `4s6gv_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 8087) LIMIT 1 |
0.575
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Product.php:685 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:917 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:755 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:244 (getFlags)
/var/cache/prod/smarty/compile/sumaysube_child/80/21/d0/8021d070cfee692cff34ece8f0b6e1873b6c5a1c_2.file.product-flags.tpl.php:26 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c907849091_57352271)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:297 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90783f8a9_16018688)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/e3/fe/57/e3fe579cd80af6849f90f9ca44a41e2ba2219bda_2.file.productlist.tpl.php:33 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9078205d6_02656509)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:64 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:138 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90780ff39_54397157)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_child/fa/6c/c3/fa6cc378d2942c8857b89d6bca728048c0caeedd_2.module.ps_featuredproductsviewstemplateshookps_featuredproducts.tpl.php:45 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9077fe9d3_01263524)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2417 (fetch)
/modules/ps_featuredproducts/ps_featuredproducts.php:202 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 177 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `4s6gv_image` i
INNER JOIN 4s6gv_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `4s6gv_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 9080
ORDER BY `position` |
0.570
ms
|
2 |
Yes
|
|
/classes/Product.php:3262
/src/Adapter/Image/ImageRetriever.php:55 (getImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:944 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:118 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:30 (__construct)
/modules/ps_newproducts/ps_newproducts.php:230 (present)
/modules/ps_newproducts/ps_newproducts.php:172 (getNewProducts)
/modules/ps_newproducts/ps_newproducts.php:159 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 33 |
SELECT SQL_NO_CACHE s.id_shop, s.id_shop_group FROM 4s6gv_shop s |
0.559
ms
|
1 |
|
|
/classes/shop/Shop.php:902
/src/Adapter/Configuration.php:363 (getGroupIdFromShopId)
/src/Adapter/Configuration.php:99 (getShopGroupId)
/src/Adapter/Assets/AssetUrlGeneratorTrait.php:48 (get)
/classes/assets/StylesheetManager.php:104 (getFQDN)
/classes/assets/StylesheetManager.php:58 (add)
/classes/controller/FrontController.php:1117 (register)
/classes/controller/FrontController.php:975 (registerStylesheet)
/tools/profiling/Controller.php:33 (setMedia)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 173 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `4s6gv_stock_available`
WHERE (id_product = 9080) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.553
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:266
/classes/Product.php:4117 (getQuantityAvailableByProduct)
/classes/Product.php:5568 (getQuantity)
/classes/ProductAssembler.php:194 (getProductProperties)
/modules/ps_newproducts/ps_newproducts.php:227 (assembleProducts)
/modules/ps_newproducts/ps_newproducts.php:172 (getNewProducts)
/modules/ps_newproducts/ps_newproducts.php:159 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 86 |
SELECT SQL_NO_CACHE a.`id_attribute`, a.`id_attribute_group`, al.`name`, agl.`name` as `group`, agl.`public_name` as `public_group`,
pa.`reference`, pa.`ean13`, pa.`isbn`, pa.`upc`, pa.`mpn`,
pal.`available_now`, pal.`available_later`
FROM `4s6gv_attribute` a
LEFT JOIN `4s6gv_attribute_lang` al
ON (al.`id_attribute` = a.`id_attribute` AND al.`id_lang` = 1)
LEFT JOIN `4s6gv_product_attribute_combination` pac
ON (pac.`id_attribute` = a.`id_attribute`)
LEFT JOIN `4s6gv_product_attribute` pa
ON (pa.`id_product_attribute` = pac.`id_product_attribute`)
INNER JOIN 4s6gv_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
LEFT JOIN `4s6gv_product_attribute_lang` pal
ON (pal.`id_product_attribute` = pac.`id_product_attribute` AND pal.`id_lang` = 1)
LEFT JOIN `4s6gv_attribute_group` ag
ON (a.`id_attribute_group` = ag.`id_attribute_group`)
LEFT JOIN `4s6gv_attribute_group_lang` agl
ON (a.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 1)
WHERE pa.`id_product` = 8087
AND pac.`id_product_attribute` = 6552
AND agl.`id_lang` = 1
ORDER BY ag.`position` ASC, a.`position` ASC |
0.537
ms
|
1 |
Yes
|
|
/classes/Product.php:7187
/classes/Product.php:5599 (getAttributesParams)
/classes/ProductAssembler.php:194 (getProductProperties)
/modules/ps_featuredproducts/ps_featuredproducts.php:286 (assembleProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 72 |
SELECT SQL_NO_CACHE product_shop.`price`, product_shop.`ecotax`,
IFNULL(product_attribute_shop.id_product_attribute,0) id_product_attribute, product_attribute_shop.`price` AS attribute_price, product_attribute_shop.default_on, product_attribute_shop.`ecotax` AS attribute_ecotax
FROM `4s6gv_product` p
INNER JOIN `4s6gv_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `4s6gv_product_attribute_shop` `product_attribute_shop` ON (product_attribute_shop.id_product = p.id_product AND product_attribute_shop.id_shop = 1)
WHERE (p.`id_product` = 8087) |
0.536
ms
|
22 |
|
|
/classes/Product.php:3606
/classes/Product.php:3462 (priceCalculation)
/classes/Product.php:5462 (getPriceStatic)
/classes/ProductAssembler.php:194 (getProductProperties)
/modules/ps_featuredproducts/ps_featuredproducts.php:286 (assembleProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 196 |
SELECT SQL_NO_CACHE *
FROM `4s6gv_product` a
LEFT JOIN `4s6gv_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `4s6gv_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 6092) AND (b.`id_shop` = 1) LIMIT 1 |
0.532
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Product.php:685 (__construct)
/src/Adapter/Image/ImageRetriever.php:48 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:944 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:118 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:30 (__construct)
/modules/ps_specials/ps_specials.php:205 (present)
/modules/ps_specials/ps_specials.php:158 (getSpecialProducts)
/modules/ps_specials/ps_specials.php:145 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 59 |
SELECT SQL_NO_CACHE *
FROM `4s6gv_category_lang`
WHERE `id_category` = 2 AND `id_shop` = 1 |
0.530
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:62
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/modules/ps_featuredproducts/ps_featuredproducts.php:221 (__construct)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 199 |
SELECT SQL_NO_CACHE pa.`id_product`, a.`color`, pac.`id_product_attribute`, 0 qty, a.`id_attribute`, al.`name`, IF(color = "", a.id_attribute, color) group_by
FROM `4s6gv_product_attribute` pa
INNER JOIN 4s6gv_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
JOIN `4s6gv_product_attribute_combination` pac ON (pac.`id_product_attribute` = product_attribute_shop.`id_product_attribute`)
JOIN `4s6gv_attribute` a ON (a.`id_attribute` = pac.`id_attribute`)
JOIN `4s6gv_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 1)
JOIN `4s6gv_attribute_group` ag ON (a.id_attribute_group = ag.`id_attribute_group`)
WHERE pa.`id_product` IN (6092) AND ag.`is_color_group` = 1
GROUP BY pa.`id_product`, a.`id_attribute`, `group_by`
ORDER BY a.`position` ASC; |
0.530
ms
|
1 |
Yes
|
Yes
|
/classes/Product.php:4281
/src/Adapter/Product/ProductColorsRetriever.php:23 (getAttributesColorList)
/src/Adapter/Presenter/Product/ProductLazyArray.php:790 (getColoredVariants)
/src/Adapter/Presenter/AbstractLazyArray.php:244 (getMainVariants)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:80 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:176 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:302 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90783f8a9_16018688)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/prod/smarty/compile/sumaysube_child/e3/fe/57/e3fe579cd80af6849f90f9ca44a41e2ba2219bda_2.file.productlist.tpl.php:33 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9078205d6_02656509)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:64 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:138 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90780ff39_54397157)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_child/69/ec/a6/69eca6f7099f96303240f391e6c6743858b25719_2.module.ps_specialsviewstemplateshookps_specials.tpl.php:45 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c907c06119_08799390)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2417 (fetch)
/modules/ps_specials/ps_specials.php:153 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 229 |
SELECT SQL_NO_CACHE id_page_type
FROM 4s6gv_page_type
WHERE name = 'index' LIMIT 1 |
0.523
ms
|
1 |
|
|
/classes/Page.php:80
/classes/Page.php:35 (getPageTypeByName)
/classes/Connection.php:160 (getCurrentId)
/classes/Connection.php:77 (setNewConnection)
/modules/statsdata/statsdata.php:118 (setPageConnection)
/modules/statsdata/statsdata.php:74 (getScriptCustomerPagesViews)
/classes/Hook.php:1234 (hookDisplayBeforeBodyClosingTag)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1125 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:507 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c908020637_19571652)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/4c/80/68/4c8068233d3ff8401b0da93ca4d2a07f7405c43b_2.file.layout-full-width.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90800b4e7_75473193)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/5e/94/2b/5e942b9ba415c1df9e4173cac73249e2168114c6_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9080031d7_87712377)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 56 |
SELECT SQL_NO_CACHE `id_module` FROM `4s6gv_module` WHERE `name` = "ps_featuredproducts" LIMIT 1 |
0.509
ms
|
1 |
|
|
/classes/module/Module.php:2778
/classes/module/Module.php:2266 (getModuleIdByName)
/classes/Hook.php:1240 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 234 |
SELECT SQL_NO_CACHE *
FROM 4s6gv_cookiesplus_cookie cc LEFT JOIN 4s6gv_cookiesplus_cookie_lang ccl on cc.`id_cookiesplus_cookie` = ccl.`id_cookiesplus_cookie`
WHERE
`id_cookiesplus_finality` = 1
AND ccl.`id_lang` = 1 AND cc.`active` = 1 AND cc.`id_shop` = 1 ORDER BY cc.`name`; |
0.505
ms
|
2 |
Yes
|
|
/modules/cookiesplus/classes/CookiesPlusCookie.php:118
/modules/cookiesplus/cookiesplus.php:1604 (getCookiesPlusCookies)
/modules/cookiesplus/cookiesplus.php:1783 (hookDisplayFooter)
/classes/Hook.php:1234 (hookDisplayBeforeBodyClosingTag)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1125 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:507 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c908020637_19571652)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/4c/80/68/4c8068233d3ff8401b0da93ca4d2a07f7405c43b_2.file.layout-full-width.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90800b4e7_75473193)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/5e/94/2b/5e942b9ba415c1df9e4173cac73249e2168114c6_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9080031d7_87712377)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 41 |
SELECT SQL_NO_CACHE * FROM `4s6gv_image_type` WHERE 1 AND `manufacturers` = 1 ORDER BY `width` DESC, `height` DESC, `name`ASC |
0.503
ms
|
16 |
Yes
|
|
/classes/ImageType.php:89
/src/Adapter/Image/ImageRetriever.php:349 (getImagesTypes)
/classes/controller/FrontController.php:1582 (getNoPictureImage)
/classes/controller/FrontController.php:1734 (getTemplateVarUrls)
/classes/controller/FrontController.php:545 (getTemplateVarShop)
/classes/controller/FrontController.php:623 (assignGeneralPurposeVariables)
/controllers/front/IndexController.php:18 (initContent)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 60 |
SELECT SQL_NO_CACHE ctg.`id_group`
FROM 4s6gv_category_group ctg
WHERE ctg.`id_category` = 2 AND ctg.`id_group` = 1 LIMIT 1 |
0.496
ms
|
1 |
|
|
/classes/Category.php:1754
/classes/Category.php:983 (checkAccess)
/src/Adapter/Category/CategoryProductSearchProvider.php:75 (getProducts)
/src/Adapter/Category/CategoryProductSearchProvider.php:98 (getProductsOrCount)
/modules/ps_featuredproducts/ps_featuredproducts.php:248 (runQuery)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 44 |
SELECT SQL_NO_CACHE * FROM `4s6gv_image_type` WHERE 1 AND `stores` = 1 ORDER BY `width` DESC, `height` DESC, `name`ASC |
0.491
ms
|
16 |
Yes
|
|
/classes/ImageType.php:89
/src/Adapter/Image/ImageRetriever.php:349 (getImagesTypes)
/classes/controller/FrontController.php:1582 (getNoPictureImage)
/classes/controller/FrontController.php:1734 (getTemplateVarUrls)
/classes/controller/FrontController.php:545 (getTemplateVarShop)
/classes/controller/FrontController.php:623 (assignGeneralPurposeVariables)
/controllers/front/IndexController.php:18 (initContent)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 118 |
SELECT SQL_NO_CACHE pai.`id_image`, pai.`id_product_attribute`, il.`legend`
FROM `4s6gv_product_attribute_image` pai
LEFT JOIN `4s6gv_image_lang` il ON (il.`id_image` = pai.`id_image`)
INNER JOIN `4s6gv_image` i ON (i.`id_image` = pai.`id_image`)
WHERE i.`id_product` = 8087 AND il.`id_lang` = 1 ORDER by i.`position` |
0.487
ms
|
3 |
Yes
|
|
/classes/Product.php:2645
/src/Adapter/Image/ImageRetriever.php:61 (getCombinationImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:944 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:118 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:30 (__construct)
/modules/ps_featuredproducts/ps_featuredproducts.php:289 (present)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 208 |
SELECT SQL_NO_CACHE `id_module` FROM `4s6gv_module` WHERE `name` = "ps_shoppingcart" LIMIT 1 |
0.481
ms
|
1 |
|
|
/classes/module/Module.php:2778
/classes/module/Module.php:2266 (getModuleIdByName)
/classes/Hook.php:1240 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/6e/69/20/6e69203f937c89f3d9ddb9a2675dc129a4feb5b7_2.file.header.tpl.php:44 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9080c0b42_46180155)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:241 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c908020637_19571652)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/4c/80/68/4c8068233d3ff8401b0da93ca4d2a07f7405c43b_2.file.layout-full-width.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90800b4e7_75473193)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/5e/94/2b/5e942b9ba415c1df9e4173cac73249e2168114c6_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9080031d7_87712377)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 162 |
SELECT SQL_NO_CACHE `id_module` FROM `4s6gv_module` WHERE `name` = "ps_banner" LIMIT 1 |
0.481
ms
|
1 |
|
|
/classes/module/Module.php:2778
/classes/module/Module.php:2266 (getModuleIdByName)
/classes/Hook.php:1240 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 27 |
SELECT SQL_NO_CACHE *
FROM `4s6gv_currency` a
LEFT JOIN `4s6gv_currency_shop` `c` ON a.`id_currency` = c.`id_currency` AND c.`id_shop` = 1
WHERE (a.`id_currency` = 1) LIMIT 1 |
0.478
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Currency.php:226 (__construct)
/classes/Currency.php:1069 (__construct)
/classes/Tools.php:772 (getCurrencyInstance)
/classes/controller/FrontController.php:332 (setCurrency)
/tools/profiling/Controller.php:26 (init)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 97 |
SELECT SQL_NO_CACHE 1 FROM `4s6gv_specific_price` WHERE id_product = 7404 LIMIT 1 |
0.478
ms
|
1 |
|
|
/classes/SpecificPrice.php:422
/classes/SpecificPrice.php:510 (couldHaveSpecificPrice)
/classes/Product.php:3572 (getSpecificPrice)
/classes/Product.php:3462 (priceCalculation)
/classes/Product.php:5462 (getPriceStatic)
/classes/ProductAssembler.php:194 (getProductProperties)
/modules/ps_featuredproducts/ps_featuredproducts.php:286 (assembleProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 43 |
SELECT SQL_NO_CACHE * FROM `4s6gv_image_type` WHERE 1 AND `products` = 1 ORDER BY `width` DESC, `height` DESC, `name`ASC |
0.473
ms
|
16 |
Yes
|
|
/classes/ImageType.php:89
/src/Adapter/Image/ImageRetriever.php:349 (getImagesTypes)
/classes/controller/FrontController.php:1582 (getNoPictureImage)
/classes/controller/FrontController.php:1734 (getTemplateVarUrls)
/classes/controller/FrontController.php:545 (getTemplateVarShop)
/classes/controller/FrontController.php:623 (assignGeneralPurposeVariables)
/controllers/front/IndexController.php:18 (initContent)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 169 |
SELECT SQL_NO_CACHE `priority`, `id_specific_price_priority`
FROM `4s6gv_specific_price_priority`
WHERE `id_product` = 9080
ORDER BY `id_specific_price_priority` DESC LIMIT 1 |
0.473
ms
|
0 |
|
|
/classes/SpecificPrice.php:243
/classes/SpecificPrice.php:226 (getPriority)
/classes/SpecificPrice.php:552 (_getScoreQuery)
/classes/Product.php:3572 (getSpecificPrice)
/classes/Product.php:3462 (priceCalculation)
/classes/Product.php:5462 (getPriceStatic)
/classes/ProductAssembler.php:194 (getProductProperties)
/modules/ps_newproducts/ps_newproducts.php:227 (assembleProducts)
/modules/ps_newproducts/ps_newproducts.php:172 (getNewProducts)
/modules/ps_newproducts/ps_newproducts.php:159 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 221 |
SELECT SQL_NO_CACHE psgdprl.message FROM `4s6gv_psgdpr_consent` psgdpr
LEFT JOIN 4s6gv_psgdpr_consent_lang psgdprl ON (psgdpr.id_gdpr_consent = psgdprl.id_gdpr_consent)
WHERE psgdpr.id_module = 30 AND psgdprl.id_lang =1 LIMIT 1 |
0.471
ms
|
5 |
|
|
/modules/psgdpr/classes/GDPRConsent.php:108
/modules/psgdpr/psgdpr.php:687 (getConsentMessage)
/classes/Hook.php:1234 (hookDisplayGDPRConsent)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1125 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/prod/smarty/compile/sumaysube_child/30/7d/c6/307dc6bd4724d29d1572cc301dd7148e962604ef_2.module.ps_emailsubscriptionviewstemplateshookps_emailsubscription.tpl.php:53 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c908442e10_83946408)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2417 (fetch)
/modules/ps_emailsubscription/ps_emailsubscription.php:913 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/dc/56/68/dc56685958143c2ad9a12b239c8fabf4362024cf_2.file.footer.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90841f555_62814662)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:448 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:109 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c908020637_19571652)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/4c/80/68/4c8068233d3ff8401b0da93ca4d2a07f7405c43b_2.file.layout-full-width.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90800b4e7_75473193)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/5e/94/2b/5e942b9ba415c1df9e4173cac73249e2168114c6_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9080031d7_87712377)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 48 |
SELECT SQL_NO_CACHE *
FROM `4s6gv_country` a
LEFT JOIN `4s6gv_country_shop` `c` ON a.`id_country` = c.`id_country` AND c.`id_shop` = 1
WHERE (a.`id_country` = 6) LIMIT 1 |
0.470
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/AddressFormat.php:382 (__construct)
/classes/AddressFormat.php:417 (getFormattedAddressFieldsValues)
/classes/controller/FrontController.php:1754 (generateAddress)
/classes/controller/FrontController.php:545 (getTemplateVarShop)
/classes/controller/FrontController.php:623 (assignGeneralPurposeVariables)
/controllers/front/IndexController.php:18 (initContent)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 122 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `4s6gv_image` i
INNER JOIN 4s6gv_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `4s6gv_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 1066
ORDER BY `position` |
0.470
ms
|
4 |
Yes
|
|
/classes/Product.php:3262
/src/Adapter/Image/ImageRetriever.php:55 (getImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:944 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:118 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:30 (__construct)
/modules/ps_featuredproducts/ps_featuredproducts.php:289 (present)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 98 |
SELECT SQL_NO_CACHE `priority`, `id_specific_price_priority`
FROM `4s6gv_specific_price_priority`
WHERE `id_product` = 7404
ORDER BY `id_specific_price_priority` DESC LIMIT 1 |
0.468
ms
|
0 |
|
|
/classes/SpecificPrice.php:243
/classes/SpecificPrice.php:226 (getPriority)
/classes/SpecificPrice.php:552 (_getScoreQuery)
/classes/Product.php:3572 (getSpecificPrice)
/classes/Product.php:3462 (priceCalculation)
/classes/Product.php:5462 (getPriceStatic)
/classes/ProductAssembler.php:194 (getProductProperties)
/modules/ps_featuredproducts/ps_featuredproducts.php:286 (assembleProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 103 |
SELECT SQL_NO_CACHE COALESCE(SUM(first_level_quantity) + SUM(pack_quantity), 0) as deep_quantity,
COALESCE(SUM(first_level_quantity), 0) as quantity
FROM (SELECT SUM(cp.`quantity`) as first_level_quantity, 0 as pack_quantity
FROM `4s6gv_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 7404 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `4s6gv_cart_product` cp JOIN `4s6gv_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `4s6gv_product` pr ON p.`id_product_pack` = pr.`id_product`
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND p.`id_product_item` = 7404 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.468
ms
|
0 |
|
|
/classes/Cart.php:1625
/classes/Product.php:4129 (getProductQuantity)
/classes/Product.php:5568 (getQuantity)
/classes/ProductAssembler.php:194 (getProductProperties)
/modules/ps_featuredproducts/ps_featuredproducts.php:286 (assembleProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 84 |
SELECT SQL_NO_CACHE COALESCE(SUM(first_level_quantity) + SUM(pack_quantity), 0) as deep_quantity,
COALESCE(SUM(first_level_quantity), 0) as quantity
FROM (SELECT SUM(cp.`quantity`) as first_level_quantity, 0 as pack_quantity
FROM `4s6gv_cart_product` cp
WHERE cp.`id_product_attribute` = 6552
AND cp.`id_cart` = 0 AND cp.`id_product` = 8087 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `4s6gv_cart_product` cp JOIN `4s6gv_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `4s6gv_product` pr ON p.`id_product_pack` = pr.`id_product`
WHERE cp.`id_product_attribute` = 6552
AND cp.`id_cart` = 0 AND p.`id_product_item` = 8087 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.466
ms
|
0 |
|
|
/classes/Cart.php:1625
/classes/Product.php:4129 (getProductQuantity)
/classes/Product.php:5580 (getQuantity)
/classes/ProductAssembler.php:194 (getProductProperties)
/modules/ps_featuredproducts/ps_featuredproducts.php:286 (assembleProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 92 |
SELECT SQL_NO_CACHE *, ( IF (`id_shop` = 1, 2, 0) + IF (`id_country` = 6, 4, 0) + IF (`id_currency` = 1, 8, 0) + IF (`id_group` = 1, 16, 0) + IF (`id_customer` = 0, 32, 0)) AS `score`
FROM `4s6gv_specific_price`
WHERE
`id_shop` IN (0, 1) AND
`id_currency` IN (0, 1) AND
`id_country` IN (0, 6) AND
`id_group` IN (0, 1) AND `id_product` = 1066 AND `id_customer` = 0 AND `id_product_attribute` = 0 AND `id_cart` = 0 AND (`from` = '0000-00-00 00:00:00' OR '2026-09-22 00:00:00' >= `from`) AND (`to` = '0000-00-00 00:00:00' OR '2026-09-22 00:00:00' <= `to`)
AND IF(`from_quantity` > 1, `from_quantity`, 0) <= 1 ORDER BY `id_product_attribute` DESC, `id_cart` DESC, `from_quantity` DESC, `id_specific_price_rule` ASC, `score` DESC, `to` DESC, `from` DESC LIMIT 1 |
0.457
ms
|
1 |
Yes
|
|
/classes/SpecificPrice.php:563
/classes/Product.php:3572 (getSpecificPrice)
/classes/Product.php:3462 (priceCalculation)
/classes/Product.php:5462 (getPriceStatic)
/classes/ProductAssembler.php:194 (getProductProperties)
/modules/ps_featuredproducts/ps_featuredproducts.php:286 (assembleProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 183 |
SELECT SQL_NO_CACHE COUNT(ps.`id_product`) AS nb
FROM `4s6gv_product_sale` ps
LEFT JOIN `4s6gv_product` p ON p.`id_product` = ps.`id_product`
LEFT JOIN 4s6gv_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1)
WHERE product_shop.`active` = 1 LIMIT 1 |
0.457
ms
|
1 |
|
|
/classes/ProductSale.php:40
/src/Adapter/BestSales/BestSalesProductSearchProvider.php:64 (getNbSales)
/modules/ps_bestsellers/ps_bestsellers.php:194 (runQuery)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 224 |
SELECT SQL_NO_CACHE `id_module` FROM `4s6gv_module` WHERE `name` = "ps_customeraccountlinks" LIMIT 1 |
0.456
ms
|
1 |
|
|
/classes/module/Module.php:2778
/classes/module/Module.php:2266 (getModuleIdByName)
/classes/Hook.php:1240 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/dc/56/68/dc56685958143c2ad9a12b239c8fabf4362024cf_2.file.footer.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/dc/56/68/dc56685958143c2ad9a12b239c8fabf4362024cf_2.file.footer.tpl.php:38 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90841f555_62814662)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:448 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:109 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c908020637_19571652)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/4c/80/68/4c8068233d3ff8401b0da93ca4d2a07f7405c43b_2.file.layout-full-width.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90800b4e7_75473193)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/5e/94/2b/5e942b9ba415c1df9e4173cac73249e2168114c6_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9080031d7_87712377)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 123 |
SELECT SQL_NO_CACHE *
FROM `4s6gv_product` a
LEFT JOIN `4s6gv_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `4s6gv_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 7404) AND (b.`id_shop` = 1) LIMIT 1 |
0.456
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Product.php:685 (__construct)
/src/Adapter/Image/ImageRetriever.php:48 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:944 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:118 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:30 (__construct)
/modules/ps_featuredproducts/ps_featuredproducts.php:289 (present)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 178 |
SELECT SQL_NO_CACHE pai.`id_image`, pai.`id_product_attribute`, il.`legend`
FROM `4s6gv_product_attribute_image` pai
LEFT JOIN `4s6gv_image_lang` il ON (il.`id_image` = pai.`id_image`)
INNER JOIN `4s6gv_image` i ON (i.`id_image` = pai.`id_image`)
WHERE i.`id_product` = 9080 AND il.`id_lang` = 1 ORDER by i.`position` |
0.453
ms
|
2 |
Yes
|
|
/classes/Product.php:2645
/src/Adapter/Image/ImageRetriever.php:61 (getCombinationImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:944 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:118 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:30 (__construct)
/modules/ps_newproducts/ps_newproducts.php:230 (present)
/modules/ps_newproducts/ps_newproducts.php:172 (getNewProducts)
/modules/ps_newproducts/ps_newproducts.php:159 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 210 |
SELECT SQL_NO_CACHE SUM(`quantity`)
FROM `4s6gv_cart_product`
WHERE `id_cart` = 0 LIMIT 1 |
0.451
ms
|
1 |
|
|
/classes/Cart.php:1389
/src/Adapter/Presenter/Cart/CartLazyArray.php:235 (getNbProducts)
/src/Adapter/Presenter/AbstractLazyArray.php:244 (getProductsCount)
/var/cache/prod/smarty/compile/sumaysube_child/35/65/5e/35655e6409b6198f29dd6e732ef9598dec599880_2.module.ps_shoppingcartps_shoppingcart.tpl.php:28 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90812db07_88741855)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2417 (fetch)
/modules/ps_shoppingcart/ps_shoppingcart.php:136 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/6e/69/20/6e69203f937c89f3d9ddb9a2675dc129a4feb5b7_2.file.header.tpl.php:44 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9080c0b42_46180155)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:241 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c908020637_19571652)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/4c/80/68/4c8068233d3ff8401b0da93ca4d2a07f7405c43b_2.file.layout-full-width.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90800b4e7_75473193)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/5e/94/2b/5e942b9ba415c1df9e4173cac73249e2168114c6_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9080031d7_87712377)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 30 |
SELECT SQL_NO_CACHE *
FROM `4s6gv_group` a
LEFT JOIN `4s6gv_group_shop` `c` ON a.`id_group` = c.`id_group` AND c.`id_shop` = 1
WHERE (a.`id_group` = 1) LIMIT 1 |
0.450
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Group.php:61 (__construct)
/classes/Group.php:385 (__construct)
/classes/Cart.php:262 (getCurrent)
/classes/Cart.php:226 (setTaxCalculationMethod)
/classes/controller/FrontController.php:441 (__construct)
/tools/profiling/Controller.php:26 (init)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 42 |
SELECT SQL_NO_CACHE * FROM `4s6gv_image_type` WHERE 1 AND `suppliers` = 1 ORDER BY `width` DESC, `height` DESC, `name`ASC |
0.450
ms
|
16 |
Yes
|
|
/classes/ImageType.php:89
/src/Adapter/Image/ImageRetriever.php:349 (getImagesTypes)
/classes/controller/FrontController.php:1582 (getNoPictureImage)
/classes/controller/FrontController.php:1734 (getTemplateVarUrls)
/classes/controller/FrontController.php:545 (getTemplateVarShop)
/classes/controller/FrontController.php:623 (assignGeneralPurposeVariables)
/controllers/front/IndexController.php:18 (initContent)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 1 |
SELECT SQL_NO_CACHE gs.*, s.*, gs.name AS group_name, s.name AS shop_name, s.active, su.domain, su.domain_ssl, su.physical_uri, su.virtual_uri
FROM 4s6gv_shop_group gs
LEFT JOIN 4s6gv_shop s
ON s.id_shop_group = gs.id_shop_group
LEFT JOIN 4s6gv_shop_url su
ON s.id_shop = su.id_shop AND su.main = 1
WHERE s.deleted = 0
AND gs.deleted = 0
ORDER BY gs.name, s.name |
0.449
ms
|
1 |
Yes
|
|
/classes/shop/Shop.php:696
/classes/shop/Shop.php:755 (cacheShops)
/classes/Configuration.php:280 (getShops)
/classes/shop/Shop.php:379 (getMultiShopValues)
/config/config.inc.php:103 (initialize)
/index.php:20 (require_once)
|
| 28 |
SELECT SQL_NO_CACHE *
FROM `4s6gv_currency_lang`
WHERE `id_currency` = 1 |
0.444
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:62
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Currency.php:226 (__construct)
/classes/Currency.php:1069 (__construct)
/classes/Tools.php:772 (getCurrencyInstance)
/classes/controller/FrontController.php:332 (setCurrency)
/tools/profiling/Controller.php:26 (init)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 55 |
SELECT SQL_NO_CACHE `id_module` FROM `4s6gv_module_shop` WHERE `id_module` = 53 AND `id_shop` = 1 LIMIT 1 |
0.433
ms
|
1 |
|
|
/classes/module/Module.php:2267
/classes/Hook.php:1240 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 230 |
SELECT SQL_NO_CACHE `id_page`
FROM `4s6gv_page`
WHERE `id_page_type` = 1 LIMIT 1 |
0.427
ms
|
1 |
|
|
/classes/Page.php:63
/classes/Connection.php:160 (getCurrentId)
/classes/Connection.php:77 (setNewConnection)
/modules/statsdata/statsdata.php:118 (setPageConnection)
/modules/statsdata/statsdata.php:74 (getScriptCustomerPagesViews)
/classes/Hook.php:1234 (hookDisplayBeforeBodyClosingTag)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1125 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:507 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c908020637_19571652)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/4c/80/68/4c8068233d3ff8401b0da93ca4d2a07f7405c43b_2.file.layout-full-width.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90800b4e7_75473193)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/5e/94/2b/5e942b9ba415c1df9e4173cac73249e2168114c6_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9080031d7_87712377)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 108 |
SELECT SQL_NO_CACHE tr.*
FROM `4s6gv_tax_rule` tr
JOIN `4s6gv_tax_rules_group` trg ON (tr.`id_tax_rules_group` = trg.`id_tax_rules_group`)
WHERE trg.`active` = 1
AND tr.`id_country` = 6
AND tr.`id_tax_rules_group` = 5
AND tr.`id_state` IN (0, 383)
AND ('28250' BETWEEN tr.`zipcode_from` AND tr.`zipcode_to`
OR (tr.`zipcode_to` = 0 AND tr.`zipcode_from` IN(0, '28250')))
ORDER BY tr.`zipcode_from` DESC, tr.`zipcode_to` DESC, tr.`id_state` DESC, tr.`id_country` DESC |
0.424
ms
|
1 |
|
|
/classes/tax/TaxRulesTaxManager.php:77
/classes/Product.php:3672 (getTaxCalculator)
/classes/Product.php:3462 (priceCalculation)
/classes/Product.php:5462 (getPriceStatic)
/classes/ProductAssembler.php:194 (getProductProperties)
/modules/ps_featuredproducts/ps_featuredproducts.php:286 (assembleProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 113 |
SELECT SQL_NO_CACHE COALESCE(SUM(first_level_quantity) + SUM(pack_quantity), 0) as deep_quantity,
COALESCE(SUM(first_level_quantity), 0) as quantity
FROM (SELECT SUM(cp.`quantity`) as first_level_quantity, 0 as pack_quantity
FROM `4s6gv_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 8509 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `4s6gv_cart_product` cp JOIN `4s6gv_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `4s6gv_product` pr ON p.`id_product_pack` = pr.`id_product`
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND p.`id_product_item` = 8509 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.423
ms
|
0 |
|
|
/classes/Cart.php:1625
/classes/Product.php:4129 (getProductQuantity)
/classes/Product.php:5568 (getQuantity)
/classes/ProductAssembler.php:194 (getProductProperties)
/modules/ps_featuredproducts/ps_featuredproducts.php:286 (assembleProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 49 |
SELECT SQL_NO_CACHE *
FROM `4s6gv_country_lang`
WHERE `id_country` = 6 |
0.414
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:62
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/AddressFormat.php:382 (__construct)
/classes/AddressFormat.php:417 (getFormattedAddressFieldsValues)
/classes/controller/FrontController.php:1754 (generateAddress)
/classes/controller/FrontController.php:545 (getTemplateVarShop)
/classes/controller/FrontController.php:623 (assignGeneralPurposeVariables)
/controllers/front/IndexController.php:18 (initContent)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 126 |
SELECT SQL_NO_CACHE *
FROM `4s6gv_product` a
LEFT JOIN `4s6gv_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `4s6gv_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 8509) AND (b.`id_shop` = 1) LIMIT 1 |
0.410
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Product.php:685 (__construct)
/src/Adapter/Image/ImageRetriever.php:48 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:944 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:118 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:30 (__construct)
/modules/ps_featuredproducts/ps_featuredproducts.php:289 (present)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 26 |
SELECT SQL_NO_CACHE `id_lang` FROM `4s6gv_lang`
WHERE `locale` = 'es-es'
OR `language_code` = 'es-es' LIMIT 1 |
0.401
ms
|
1 |
|
|
/classes/Language.php:850
/src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:94 (getIdByLocale)
/src/Core/Data/Layer/AbstractDataLayer.php:70 (doRead)
/src/Core/Data/Layer/AbstractDataLayer.php:129 (read)
/src/Core/Data/Layer/AbstractDataLayer.php:74 (propagateRead)
/src/Core/Localization/Currency/CurrencyDataSource.php:47 (read)
/src/Core/Localization/Currency/CurrencyDataSource.php:89 (getLocalizedCurrencyData)
/src/Core/Localization/Currency/CurrencyDataSource.php:76 (formatCurrenciesData)
/src/Core/Localization/Currency/Repository.php:67 (getAllInstalledCurrenciesData)
/src/Core/Localization/Locale/Repository.php:186 (getAllInstalledCurrencies)
/src/Core/Localization/Locale/Repository.php:129 (getPriceSpecifications)
/classes/controller/Controller.php:197 (getLocale)
/classes/controller/FrontController.php:223 (init)
/tools/profiling/Controller.php:26 (init)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 34 |
SELECT SQL_NO_CACHE * FROM `4s6gv_hook_module_exceptions`
WHERE `id_shop` IN (1) |
0.397
ms
|
9 |
|
|
/classes/module/Module.php:2168
/classes/Hook.php:1043 (getExceptionsStatic)
/classes/controller/FrontController.php:999 (exec)
/tools/profiling/Controller.php:33 (setMedia)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 198 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `4s6gv_image` i
INNER JOIN 4s6gv_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `4s6gv_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 6092
ORDER BY `position` |
0.393
ms
|
4 |
Yes
|
|
/classes/Product.php:3262
/src/Adapter/Image/ImageRetriever.php:55 (getImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:944 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:118 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:30 (__construct)
/modules/ps_specials/ps_specials.php:205 (present)
/modules/ps_specials/ps_specials.php:158 (getSpecialProducts)
/modules/ps_specials/ps_specials.php:145 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 236 |
SELECT SQL_NO_CACHE *
FROM 4s6gv_cookiesplus_cookie cc LEFT JOIN 4s6gv_cookiesplus_cookie_lang ccl on cc.`id_cookiesplus_cookie` = ccl.`id_cookiesplus_cookie`
WHERE
`id_cookiesplus_finality` = 4
AND ccl.`id_lang` = 1 AND cc.`active` = 1 AND cc.`id_shop` = 1 ORDER BY cc.`name`; |
0.392
ms
|
3 |
Yes
|
|
/modules/cookiesplus/classes/CookiesPlusCookie.php:118
/modules/cookiesplus/cookiesplus.php:1604 (getCookiesPlusCookies)
/modules/cookiesplus/cookiesplus.php:1783 (hookDisplayFooter)
/classes/Hook.php:1234 (hookDisplayBeforeBodyClosingTag)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1125 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:507 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c908020637_19571652)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/4c/80/68/4c8068233d3ff8401b0da93ca4d2a07f7405c43b_2.file.layout-full-width.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90800b4e7_75473193)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/5e/94/2b/5e942b9ba415c1df9e4173cac73249e2168114c6_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9080031d7_87712377)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 64 |
SELECT SQL_NO_CACHE 1 FROM `4s6gv_specific_price` WHERE id_product = 0 LIMIT 1 |
0.389
ms
|
1 |
|
|
/classes/SpecificPrice.php:413
/classes/SpecificPrice.php:510 (couldHaveSpecificPrice)
/classes/Product.php:3572 (getSpecificPrice)
/classes/Product.php:3462 (priceCalculation)
/classes/Product.php:5462 (getPriceStatic)
/classes/ProductAssembler.php:194 (getProductProperties)
/modules/ps_featuredproducts/ps_featuredproducts.php:286 (assembleProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 200 |
SELECT SQL_NO_CACHE 1 FROM 4s6gv_cart_product cp INNER JOIN 4s6gv_product p
ON (p.id_product = cp.id_product) INNER JOIN 4s6gv_product_shop ps
ON (ps.id_shop = cp.id_shop AND ps.id_product = p.id_product) WHERE cp.id_cart=0 LIMIT 1 |
0.389
ms
|
1 |
|
|
/classes/Cart.php:4360
/classes/Cart.php:4341 (hasProducts)
/classes/Cart.php:2223 (isVirtualCart)
/src/Adapter/Presenter/Cart/CartLazyArray.php:126 (getOrderTotal)
/src/Adapter/Presenter/AbstractLazyArray.php:244 (getTotals)
/src/Adapter/Presenter/AbstractLazyArray.php:104 (offsetGet)
:undefined (jsonSerialize)
/classes/Smarty/SmartyLazyRegister.php:61 (json_encode)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/c5/02/69/c50269f37bc308789870b57bc3387c08d80c003a_2.file.javascript.tpl.php:65 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90807b487_65760479)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/2d/44/00/2d4400b8e8040a94f37990be8497a16a98e461b2_2.file.head.tpl.php:394 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/2d/44/00/2d4400b8e8040a94f37990be8497a16a98e461b2_2.file.head.tpl.php:61 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c908040e74_13119950)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:152 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:45 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c908020637_19571652)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/4c/80/68/4c8068233d3ff8401b0da93ca4d2a07f7405c43b_2.file.layout-full-width.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90800b4e7_75473193)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/5e/94/2b/5e942b9ba415c1df9e4173cac73249e2168114c6_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9080031d7_87712377)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 163 |
SELECT SQL_NO_CACHE `id_module` FROM `4s6gv_module_shop` WHERE `id_module` = 61 AND `id_shop` = 1 LIMIT 1 |
0.386
ms
|
1 |
|
|
/classes/module/Module.php:2267
/classes/Hook.php:1240 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 32 |
SELECT SQL_NO_CACHE id_shop
FROM `4s6gv_group_shop`
WHERE `id_group` = 1
AND id_shop = 1 LIMIT 1 |
0.382
ms
|
1 |
|
|
/classes/ObjectModel.php:1579
/classes/Group.php:388 (isAssociatedToShop)
/classes/Cart.php:262 (getCurrent)
/classes/Cart.php:226 (setTaxCalculationMethod)
/classes/controller/FrontController.php:441 (__construct)
/tools/profiling/Controller.php:26 (init)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 107 |
SELECT SQL_NO_CACHE product_shop.`price`, product_shop.`ecotax`,
IFNULL(product_attribute_shop.id_product_attribute,0) id_product_attribute, product_attribute_shop.`price` AS attribute_price, product_attribute_shop.default_on, product_attribute_shop.`ecotax` AS attribute_ecotax
FROM `4s6gv_product` p
INNER JOIN `4s6gv_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `4s6gv_product_attribute_shop` `product_attribute_shop` ON (product_attribute_shop.id_product = p.id_product AND product_attribute_shop.id_shop = 1)
WHERE (p.`id_product` = 8509) |
0.380
ms
|
1 |
|
|
/classes/Product.php:3606
/classes/Product.php:3462 (priceCalculation)
/classes/Product.php:5462 (getPriceStatic)
/classes/ProductAssembler.php:194 (getProductProperties)
/modules/ps_featuredproducts/ps_featuredproducts.php:286 (assembleProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 87 |
SELECT SQL_NO_CACHE tr.*
FROM `4s6gv_tax_rule` tr
JOIN `4s6gv_tax_rules_group` trg ON (tr.`id_tax_rules_group` = trg.`id_tax_rules_group`)
WHERE trg.`active` = 1
AND tr.`id_country` = 6
AND tr.`id_tax_rules_group` = 1
AND tr.`id_state` IN (0, 0)
AND ('0' BETWEEN tr.`zipcode_from` AND tr.`zipcode_to`
OR (tr.`zipcode_to` = 0 AND tr.`zipcode_from` IN(0, '0')))
ORDER BY tr.`zipcode_from` DESC, tr.`zipcode_to` DESC, tr.`id_state` DESC, tr.`id_country` DESC |
0.379
ms
|
1 |
|
|
/classes/tax/TaxRulesTaxManager.php:77
/classes/Product.php:5702 (getTaxCalculator)
/classes/Product.php:5606 (getTaxesInformations)
/classes/ProductAssembler.php:194 (getProductProperties)
/modules/ps_featuredproducts/ps_featuredproducts.php:286 (assembleProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 165 |
SELECT SQL_NO_CACHE `id_module` FROM `4s6gv_module_shop` WHERE `id_module` = 43 AND `id_shop` = 1 LIMIT 1 |
0.379
ms
|
1 |
|
|
/classes/module/Module.php:2267
/classes/Hook.php:1240 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 201 |
SELECT SQL_NO_CACHE 1 FROM `4s6gv_cart_rule` WHERE ((date_to >= "2026-09-22 00:00:00" AND date_to <= "2026-09-22 23:59:59") OR (date_from >= "2026-09-22 00:00:00" AND date_from <= "2026-09-22 23:59:59") OR (date_from < "2026-09-22 00:00:00" AND date_to > "2026-09-22 23:59:59")) AND `id_customer` IN (0,0) LIMIT 1 |
0.378
ms
|
7 |
|
|
/classes/CartRule.php:380
/classes/CartRule.php:412 (haveCartRuleToday)
/classes/Cart.php:3117 (getCustomerCartRules)
/classes/Cart.php:3443 (getDeliveryOptionList)
/classes/Cart.php:3522 (getDeliveryOption)
/src/Core/Cart/Fees.php:76 (getTotalShippingCost)
/src/Core/Cart/Calculator.php:336 (processCalculation)
/src/Core/Cart/Calculator.php:137 (calculateFees)
/classes/Cart.php:2288 (processCalculation)
/src/Adapter/Presenter/Cart/CartLazyArray.php:126 (getOrderTotal)
/src/Adapter/Presenter/AbstractLazyArray.php:244 (getTotals)
/src/Adapter/Presenter/AbstractLazyArray.php:104 (offsetGet)
:undefined (jsonSerialize)
/classes/Smarty/SmartyLazyRegister.php:61 (json_encode)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/c5/02/69/c50269f37bc308789870b57bc3387c08d80c003a_2.file.javascript.tpl.php:65 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90807b487_65760479)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/2d/44/00/2d4400b8e8040a94f37990be8497a16a98e461b2_2.file.head.tpl.php:394 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/2d/44/00/2d4400b8e8040a94f37990be8497a16a98e461b2_2.file.head.tpl.php:61 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c908040e74_13119950)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:152 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:45 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c908020637_19571652)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/4c/80/68/4c8068233d3ff8401b0da93ca4d2a07f7405c43b_2.file.layout-full-width.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90800b4e7_75473193)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/5e/94/2b/5e942b9ba415c1df9e4173cac73249e2168114c6_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9080031d7_87712377)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 125 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `4s6gv_image` i
INNER JOIN 4s6gv_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `4s6gv_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 7404
ORDER BY `position` |
0.371
ms
|
1 |
Yes
|
|
/classes/Product.php:3262
/src/Adapter/Image/ImageRetriever.php:55 (getImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:944 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:118 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:30 (__construct)
/modules/ps_featuredproducts/ps_featuredproducts.php:289 (present)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 31 |
SELECT SQL_NO_CACHE *
FROM `4s6gv_group_lang`
WHERE `id_group` = 1 |
0.364
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:62
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Group.php:61 (__construct)
/classes/Group.php:385 (__construct)
/classes/Cart.php:262 (getCurrent)
/classes/Cart.php:226 (setTaxCalculationMethod)
/classes/controller/FrontController.php:441 (__construct)
/tools/profiling/Controller.php:26 (init)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 222 |
SELECT SQL_NO_CACHE `id_module` FROM `4s6gv_module` WHERE `name` = "ps_linklist" LIMIT 1 |
0.363
ms
|
1 |
|
|
/classes/module/Module.php:2778
/classes/module/Module.php:2266 (getModuleIdByName)
/classes/Hook.php:1240 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/dc/56/68/dc56685958143c2ad9a12b239c8fabf4362024cf_2.file.footer.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/dc/56/68/dc56685958143c2ad9a12b239c8fabf4362024cf_2.file.footer.tpl.php:38 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90841f555_62814662)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:448 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:109 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c908020637_19571652)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/4c/80/68/4c8068233d3ff8401b0da93ca4d2a07f7405c43b_2.file.layout-full-width.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90800b4e7_75473193)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/5e/94/2b/5e942b9ba415c1df9e4173cac73249e2168114c6_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9080031d7_87712377)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 189 |
SELECT SQL_NO_CACHE 1 FROM `4s6gv_specific_price` WHERE id_product = 6092 LIMIT 1 |
0.361
ms
|
2 |
|
|
/classes/SpecificPrice.php:422
/classes/SpecificPrice.php:510 (couldHaveSpecificPrice)
/classes/Product.php:3572 (getSpecificPrice)
/classes/Product.php:3462 (priceCalculation)
/classes/Product.php:5462 (getPriceStatic)
/classes/ProductAssembler.php:194 (getProductProperties)
/modules/ps_specials/ps_specials.php:202 (assembleProducts)
/modules/ps_specials/ps_specials.php:158 (getSpecialProducts)
/modules/ps_specials/ps_specials.php:145 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 215 |
SELECT SQL_NO_CACHE `iso_code`
FROM `4s6gv_country`
WHERE `id_country` = 6 LIMIT 1 |
0.361
ms
|
1 |
|
|
/classes/Country.php:256
/modules/paypal/classes/InstallmentBanner/BannerManager.php:96 (getIsoById)
/modules/paypal/classes/InstallmentBanner/BannerManager.php:87 (isEligibleCountry)
/modules/paypal/classes/InstallmentBanner/BannerManager.php:117 (isEligibleConf)
/modules/paypal/paypal.php:789 (isBannerAvailable)
/classes/Hook.php:1234 (hookDisplayNavFullWidth)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1125 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/6e/69/20/6e69203f937c89f3d9ddb9a2675dc129a4feb5b7_2.file.header.tpl.php:187 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/6e/69/20/6e69203f937c89f3d9ddb9a2675dc129a4feb5b7_2.file.header.tpl.php:51 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9080c0b42_46180155)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:241 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c908020637_19571652)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/4c/80/68/4c8068233d3ff8401b0da93ca4d2a07f7405c43b_2.file.layout-full-width.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90800b4e7_75473193)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/5e/94/2b/5e942b9ba415c1df9e4173cac73249e2168114c6_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9080031d7_87712377)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 131 |
SELECT SQL_NO_CACHE *
FROM `4s6gv_product_lang`
WHERE `id_product` = 8087 AND `id_shop` = 1 |
0.359
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:62
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Product.php:685 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:917 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:755 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:244 (getFlags)
/var/cache/prod/smarty/compile/sumaysube_child/80/21/d0/8021d070cfee692cff34ece8f0b6e1873b6c5a1c_2.file.product-flags.tpl.php:26 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c907849091_57352271)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:297 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90783f8a9_16018688)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/e3/fe/57/e3fe579cd80af6849f90f9ca44a41e2ba2219bda_2.file.productlist.tpl.php:33 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9078205d6_02656509)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:64 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:138 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90780ff39_54397157)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_child/fa/6c/c3/fa6cc378d2942c8857b89d6bca728048c0caeedd_2.module.ps_featuredproductsviewstemplateshookps_featuredproducts.tpl.php:45 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9077fe9d3_01263524)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2417 (fetch)
/modules/ps_featuredproducts/ps_featuredproducts.php:202 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 164 |
SELECT SQL_NO_CACHE `id_module` FROM `4s6gv_module` WHERE `name` = "ps_newproducts" LIMIT 1 |
0.358
ms
|
1 |
|
|
/classes/module/Module.php:2778
/classes/module/Module.php:2266 (getModuleIdByName)
/classes/Hook.php:1240 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 45 |
SELECT SQL_NO_CACHE format
FROM `4s6gv_address_format`
WHERE `id_country` = 6 LIMIT 1 |
0.357
ms
|
1 |
|
|
/classes/AddressFormat.php:629
/classes/AddressFormat.php:608 (getFormatDB)
/classes/AddressFormat.php:593 (getFormat)
/classes/AddressFormat.php:540 (getAddressCountryFormat)
/classes/AddressFormat.php:416 (getOrderedAddressFields)
/classes/controller/FrontController.php:1754 (generateAddress)
/classes/controller/FrontController.php:545 (getTemplateVarShop)
/classes/controller/FrontController.php:623 (assignGeneralPurposeVariables)
/controllers/front/IndexController.php:18 (initContent)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 168 |
SELECT SQL_NO_CACHE 1 FROM `4s6gv_specific_price` WHERE id_product = 9080 LIMIT 1 |
0.355
ms
|
1 |
|
|
/classes/SpecificPrice.php:422
/classes/SpecificPrice.php:510 (couldHaveSpecificPrice)
/classes/Product.php:3572 (getSpecificPrice)
/classes/Product.php:3462 (priceCalculation)
/classes/Product.php:5462 (getPriceStatic)
/classes/ProductAssembler.php:194 (getProductProperties)
/modules/ps_newproducts/ps_newproducts.php:227 (assembleProducts)
/modules/ps_newproducts/ps_newproducts.php:172 (getNewProducts)
/modules/ps_newproducts/ps_newproducts.php:159 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 235 |
SELECT SQL_NO_CACHE *
FROM 4s6gv_cookiesplus_cookie cc LEFT JOIN 4s6gv_cookiesplus_cookie_lang ccl on cc.`id_cookiesplus_cookie` = ccl.`id_cookiesplus_cookie`
WHERE
`id_cookiesplus_finality` = 3
AND ccl.`id_lang` = 1 AND cc.`active` = 1 AND cc.`id_shop` = 1 ORDER BY cc.`name`; |
0.353
ms
|
1 |
Yes
|
|
/modules/cookiesplus/classes/CookiesPlusCookie.php:118
/modules/cookiesplus/cookiesplus.php:1604 (getCookiesPlusCookies)
/modules/cookiesplus/cookiesplus.php:1783 (hookDisplayFooter)
/classes/Hook.php:1234 (hookDisplayBeforeBodyClosingTag)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1125 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:507 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c908020637_19571652)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/4c/80/68/4c8068233d3ff8401b0da93ca4d2a07f7405c43b_2.file.layout-full-width.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90800b4e7_75473193)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/5e/94/2b/5e942b9ba415c1df9e4173cac73249e2168114c6_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9080031d7_87712377)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 129 |
SELECT SQL_NO_CACHE *
FROM `4s6gv_category` a
LEFT JOIN `4s6gv_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 1
LEFT JOIN `4s6gv_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 2) AND (b.`id_shop` = 1) LIMIT 1 |
0.352
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/classes/Link.php:399 (__construct)
/classes/Link.php:455 (getCategoryObject)
/modules/ps_featuredproducts/ps_featuredproducts.php:212 (getCategoryLink)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 47 |
SELECT SQL_NO_CACHE *
FROM `4s6gv_state` a
WHERE (a.`id_state` = 383) LIMIT 1 |
0.347
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/AddressFormat.php:382 (__construct)
/classes/AddressFormat.php:417 (getFormattedAddressFieldsValues)
/classes/controller/FrontController.php:1754 (generateAddress)
/classes/controller/FrontController.php:545 (getTemplateVarShop)
/classes/controller/FrontController.php:623 (assignGeneralPurposeVariables)
/controllers/front/IndexController.php:18 (initContent)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 219 |
SELECT SQL_NO_CACHE `id_module` FROM `4s6gv_module_shop` WHERE `id_module` = 30 AND `id_shop` = 1 LIMIT 1 |
0.346
ms
|
1 |
|
|
/classes/module/Module.php:2267
/classes/Hook.php:1240 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/dc/56/68/dc56685958143c2ad9a12b239c8fabf4362024cf_2.file.footer.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90841f555_62814662)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:448 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:109 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c908020637_19571652)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/4c/80/68/4c8068233d3ff8401b0da93ca4d2a07f7405c43b_2.file.layout-full-width.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90800b4e7_75473193)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/5e/94/2b/5e942b9ba415c1df9e4173cac73249e2168114c6_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9080031d7_87712377)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 11 |
SELECT SQL_NO_CACHE COUNT(DISTINCT l.id_lang) FROM `4s6gv_lang` l
JOIN 4s6gv_lang_shop lang_shop ON (lang_shop.id_lang = l.id_lang AND lang_shop.id_shop = 1)
WHERE l.`active` = 1 LIMIT 1 |
0.342
ms
|
1 |
|
|
/classes/Language.php:1184
/classes/Language.php:1488 (countActiveLanguages)
/classes/Dispatcher.php:521 (isMultiLanguageActivated)
/classes/Dispatcher.php:226 (setRequestUri)
/classes/Dispatcher.php:199 (__construct)
/index.php:66 (getInstance)
|
| 23 |
SELECT SQL_NO_CACHE value FROM `4s6gv_configuration` WHERE `name` = "PS_MULTISHOP_FEATURE_ACTIVE" LIMIT 1 |
0.341
ms
|
1 |
|
|
/classes/shop/Shop.php:1191
/classes/Currency.php:948 (isFeatureActive)
/classes/Currency.php:870 (getIdByQuery)
/src/Adapter/Currency/CurrencyDataProvider.php:72 (getIdByIsoCode)
/src/Adapter/Currency/CurrencyDataProvider.php:94 (getCurrencyByIsoCode)
/src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:81 (getCurrencyByIsoCodeAndLocale)
/src/Core/Data/Layer/AbstractDataLayer.php:70 (doRead)
/src/Core/Data/Layer/AbstractDataLayer.php:129 (read)
/src/Core/Data/Layer/AbstractDataLayer.php:74 (propagateRead)
/src/Core/Localization/Currency/CurrencyDataSource.php:47 (read)
/src/Core/Localization/Currency/CurrencyDataSource.php:89 (getLocalizedCurrencyData)
/src/Core/Localization/Currency/CurrencyDataSource.php:76 (formatCurrenciesData)
/src/Core/Localization/Currency/Repository.php:67 (getAllInstalledCurrenciesData)
/src/Core/Localization/Locale/Repository.php:186 (getAllInstalledCurrencies)
/src/Core/Localization/Locale/Repository.php:129 (getPriceSpecifications)
/classes/controller/Controller.php:197 (getLocale)
/classes/controller/FrontController.php:223 (init)
/tools/profiling/Controller.php:26 (init)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 24 |
SELECT SQL_NO_CACHE c.id_currency
FROM `4s6gv_currency` c
WHERE (iso_code = 'EUR') LIMIT 1 |
0.341
ms
|
1 |
|
|
/classes/Currency.php:873
/src/Adapter/Currency/CurrencyDataProvider.php:72 (getIdByIsoCode)
/src/Adapter/Currency/CurrencyDataProvider.php:94 (getCurrencyByIsoCode)
/src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:81 (getCurrencyByIsoCodeAndLocale)
/src/Core/Data/Layer/AbstractDataLayer.php:70 (doRead)
/src/Core/Data/Layer/AbstractDataLayer.php:129 (read)
/src/Core/Data/Layer/AbstractDataLayer.php:74 (propagateRead)
/src/Core/Localization/Currency/CurrencyDataSource.php:47 (read)
/src/Core/Localization/Currency/CurrencyDataSource.php:89 (getLocalizedCurrencyData)
/src/Core/Localization/Currency/CurrencyDataSource.php:76 (formatCurrenciesData)
/src/Core/Localization/Currency/Repository.php:67 (getAllInstalledCurrenciesData)
/src/Core/Localization/Locale/Repository.php:186 (getAllInstalledCurrencies)
/src/Core/Localization/Locale/Repository.php:129 (getPriceSpecifications)
/classes/controller/Controller.php:197 (getLocale)
/classes/controller/FrontController.php:223 (init)
/tools/profiling/Controller.php:26 (init)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 29 |
SELECT SQL_NO_CACHE id_shop
FROM `4s6gv_currency_shop`
WHERE `id_currency` = 1
AND id_shop = 1 LIMIT 1 |
0.339
ms
|
1 |
|
|
/classes/ObjectModel.php:1579
/classes/Tools.php:776 (isAssociatedToShop)
/classes/controller/FrontController.php:332 (setCurrency)
/tools/profiling/Controller.php:26 (init)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 75 |
SELECT SQL_NO_CACHE tr.*
FROM `4s6gv_tax_rule` tr
JOIN `4s6gv_tax_rules_group` trg ON (tr.`id_tax_rules_group` = trg.`id_tax_rules_group`)
WHERE trg.`active` = 1
AND tr.`id_country` = 6
AND tr.`id_tax_rules_group` = 1
AND tr.`id_state` IN (0, 383)
AND ('28250' BETWEEN tr.`zipcode_from` AND tr.`zipcode_to`
OR (tr.`zipcode_to` = 0 AND tr.`zipcode_from` IN(0, '28250')))
ORDER BY tr.`zipcode_from` DESC, tr.`zipcode_to` DESC, tr.`id_state` DESC, tr.`id_country` DESC |
0.337
ms
|
1 |
|
|
/classes/tax/TaxRulesTaxManager.php:77
/classes/Product.php:3672 (getTaxCalculator)
/classes/Product.php:3462 (priceCalculation)
/classes/Product.php:5462 (getPriceStatic)
/classes/ProductAssembler.php:194 (getProductProperties)
/modules/ps_featuredproducts/ps_featuredproducts.php:286 (assembleProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 128 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `4s6gv_image` i
INNER JOIN 4s6gv_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `4s6gv_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 8509
ORDER BY `position` |
0.335
ms
|
1 |
Yes
|
|
/classes/Product.php:3262
/src/Adapter/Image/ImageRetriever.php:55 (getImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:944 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:118 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:30 (__construct)
/modules/ps_featuredproducts/ps_featuredproducts.php:289 (present)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 172 |
SELECT SQL_NO_CACHE `reduction`
FROM `4s6gv_product_group_reduction_cache`
WHERE `id_product` = 9080 AND `id_group` = 1 LIMIT 1 |
0.334
ms
|
0 |
|
|
/classes/GroupReduction.php:126
/classes/Product.php:3736 (getValueForProduct)
/classes/Product.php:3462 (priceCalculation)
/classes/Product.php:5462 (getPriceStatic)
/classes/ProductAssembler.php:194 (getProductProperties)
/modules/ps_newproducts/ps_newproducts.php:227 (assembleProducts)
/modules/ps_newproducts/ps_newproducts.php:172 (getNewProducts)
/modules/ps_newproducts/ps_newproducts.php:159 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 22 |
SELECT SQL_NO_CACHE `id_lang` FROM `4s6gv_lang`
WHERE `locale` = 'es-es'
OR `language_code` = 'es-es' LIMIT 1 |
0.331
ms
|
1 |
|
|
/classes/Language.php:850
/src/Adapter/Currency/CurrencyDataProvider.php:92 (getIdByLocale)
/src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:81 (getCurrencyByIsoCodeAndLocale)
/src/Core/Data/Layer/AbstractDataLayer.php:70 (doRead)
/src/Core/Data/Layer/AbstractDataLayer.php:129 (read)
/src/Core/Data/Layer/AbstractDataLayer.php:74 (propagateRead)
/src/Core/Localization/Currency/CurrencyDataSource.php:47 (read)
/src/Core/Localization/Currency/CurrencyDataSource.php:89 (getLocalizedCurrencyData)
/src/Core/Localization/Currency/CurrencyDataSource.php:76 (formatCurrenciesData)
/src/Core/Localization/Currency/Repository.php:67 (getAllInstalledCurrenciesData)
/src/Core/Localization/Locale/Repository.php:186 (getAllInstalledCurrencies)
/src/Core/Localization/Locale/Repository.php:129 (getPriceSpecifications)
/classes/controller/Controller.php:197 (getLocale)
/classes/controller/FrontController.php:223 (init)
/tools/profiling/Controller.php:26 (init)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 5 |
SELECT SQL_NO_CACHE l.*, ls.`id_shop`
FROM `4s6gv_lang` l
LEFT JOIN `4s6gv_lang_shop` ls ON (l.id_lang = ls.id_lang) |
0.329
ms
|
1 |
|
|
/classes/Language.php:1050
/config/config.inc.php:132 (loadLanguages)
/index.php:20 (require_once)
|
| 135 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `4s6gv_stock_available`
WHERE (id_product = 8087) AND (id_product_attribute = 6553) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.327
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:266
/classes/Product.php:2504 (getQuantityAvailableByProduct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:923 (getAttributesResume)
/src/Adapter/Presenter/Product/ProductLazyArray.php:755 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:244 (getFlags)
/var/cache/prod/smarty/compile/sumaysube_child/80/21/d0/8021d070cfee692cff34ece8f0b6e1873b6c5a1c_2.file.product-flags.tpl.php:26 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c907849091_57352271)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:297 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90783f8a9_16018688)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/e3/fe/57/e3fe579cd80af6849f90f9ca44a41e2ba2219bda_2.file.productlist.tpl.php:33 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9078205d6_02656509)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:64 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:138 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90780ff39_54397157)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_child/fa/6c/c3/fa6cc378d2942c8857b89d6bca728048c0caeedd_2.module.ps_featuredproductsviewstemplateshookps_featuredproducts.tpl.php:45 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9077fe9d3_01263524)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2417 (fetch)
/modules/ps_featuredproducts/ps_featuredproducts.php:202 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 46 |
SELECT SQL_NO_CACHE `need_identification_number`
FROM `4s6gv_country`
WHERE `id_country` = 6 LIMIT 1 |
0.327
ms
|
1 |
|
|
/classes/Country.php:386
/classes/AddressFormat.php:612 (isNeedDniByCountryId)
/classes/AddressFormat.php:593 (getFormat)
/classes/AddressFormat.php:540 (getAddressCountryFormat)
/classes/AddressFormat.php:416 (getOrderedAddressFields)
/classes/controller/FrontController.php:1754 (generateAddress)
/classes/controller/FrontController.php:545 (getTemplateVarShop)
/classes/controller/FrontController.php:623 (assignGeneralPurposeVariables)
/controllers/front/IndexController.php:18 (initContent)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 17 |
SELECT SQL_NO_CACHE name, alias FROM `4s6gv_hook_alias` |
0.326
ms
|
86 |
|
|
/classes/Hook.php:364
/classes/Hook.php:151 (getCanonicalHookNames)
/classes/Hook.php:391 (normalizeHookName)
/classes/Hook.php:413 (getAllKnownNames)
/classes/Hook.php:1116 (isHookCallableOn)
/classes/Dispatcher.php:626 (exec)
/classes/Dispatcher.php:237 (loadRoutes)
/classes/Dispatcher.php:199 (__construct)
/index.php:66 (getInstance)
|
| 192 |
SELECT SQL_NO_CACHE product_shop.`price`, product_shop.`ecotax`,
IFNULL(product_attribute_shop.id_product_attribute,0) id_product_attribute, product_attribute_shop.`price` AS attribute_price, product_attribute_shop.default_on, product_attribute_shop.`ecotax` AS attribute_ecotax
FROM `4s6gv_product` p
INNER JOIN `4s6gv_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `4s6gv_product_attribute_shop` `product_attribute_shop` ON (product_attribute_shop.id_product = p.id_product AND product_attribute_shop.id_shop = 1)
WHERE (p.`id_product` = 6092) |
0.321
ms
|
1 |
|
|
/classes/Product.php:3606
/classes/Product.php:3462 (priceCalculation)
/classes/Product.php:5462 (getPriceStatic)
/classes/ProductAssembler.php:194 (getProductProperties)
/modules/ps_specials/ps_specials.php:202 (assembleProducts)
/modules/ps_specials/ps_specials.php:158 (getSpecialProducts)
/modules/ps_specials/ps_specials.php:145 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 216 |
SELECT SQL_NO_CACHE `id_module` FROM `4s6gv_module` WHERE `name` = "ps_socialfollow" LIMIT 1 |
0.321
ms
|
1 |
|
|
/classes/module/Module.php:2778
/classes/module/Module.php:2266 (getModuleIdByName)
/classes/Hook.php:1240 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/dc/56/68/dc56685958143c2ad9a12b239c8fabf4362024cf_2.file.footer.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90841f555_62814662)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:448 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:109 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c908020637_19571652)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/4c/80/68/4c8068233d3ff8401b0da93ca4d2a07f7405c43b_2.file.layout-full-width.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90800b4e7_75473193)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/5e/94/2b/5e942b9ba415c1df9e4173cac73249e2168114c6_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9080031d7_87712377)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 220 |
SELECT SQL_NO_CACHE psgdpr.active FROM `4s6gv_psgdpr_consent` psgdpr
WHERE psgdpr.id_module = 30 LIMIT 1 |
0.314
ms
|
5 |
|
|
/modules/psgdpr/classes/GDPRConsent.php:130
/modules/psgdpr/psgdpr.php:683 (getConsentActive)
/classes/Hook.php:1234 (hookDisplayGDPRConsent)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1125 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/prod/smarty/compile/sumaysube_child/30/7d/c6/307dc6bd4724d29d1572cc301dd7148e962604ef_2.module.ps_emailsubscriptionviewstemplateshookps_emailsubscription.tpl.php:53 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c908442e10_83946408)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2417 (fetch)
/modules/ps_emailsubscription/ps_emailsubscription.php:913 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/dc/56/68/dc56685958143c2ad9a12b239c8fabf4362024cf_2.file.footer.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90841f555_62814662)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:448 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:109 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c908020637_19571652)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/4c/80/68/4c8068233d3ff8401b0da93ca4d2a07f7405c43b_2.file.layout-full-width.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90800b4e7_75473193)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/5e/94/2b/5e942b9ba415c1df9e4173cac73249e2168114c6_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9080031d7_87712377)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 10 |
SELECT SQL_NO_CACHE domain, domain_ssl
FROM 4s6gv_shop_url
WHERE main = 1
AND id_shop = 1 LIMIT 1 |
0.307
ms
|
1 |
|
|
/classes/shop/ShopUrl.php:158
/classes/shop/ShopUrl.php:178 (cacheMainDomainForShop)
/classes/Tools.php:341 (getMainShopDomain)
/classes/Link.php:45 (getShopDomain)
/config/config.inc.php:266 (__construct)
/index.php:20 (require_once)
|
| 88 |
SELECT SQL_NO_CACHE *
FROM `4s6gv_product_attribute` a
LEFT JOIN `4s6gv_product_attribute_shop` `c` ON a.`id_product_attribute` = c.`id_product_attribute` AND c.`id_shop` = 1
WHERE (a.`id_product_attribute` = 6552) LIMIT 1 |
0.303
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Product.php:5646 (__construct)
/classes/Product.php:5617 (computeUnitPriceRatio)
/classes/ProductAssembler.php:194 (getProductProperties)
/modules/ps_featuredproducts/ps_featuredproducts.php:286 (assembleProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 202 |
SELECT SQL_NO_CACHE 1 FROM `4s6gv_cart_rule` WHERE ((date_to >= "2026-09-22 00:00:00" AND date_to <= "2026-09-22 23:59:59") OR (date_from >= "2026-09-22 00:00:00" AND date_from <= "2026-09-22 23:59:59") OR (date_from < "2026-09-22 00:00:00" AND date_to > "2026-09-22 23:59:59")) AND `id_customer` IN (0,0) LIMIT 1 |
0.303
ms
|
7 |
|
|
/classes/CartRule.php:380
/classes/CartRule.php:412 (haveCartRuleToday)
/classes/CartRule.php:593 (getCustomerCartRules)
/classes/Cart.php:541 (getCustomerHighlightedDiscounts)
/src/Adapter/Presenter/Cart/CartLazyArray.php:310 (getDiscounts)
/src/Adapter/Presenter/AbstractLazyArray.php:244 (getDiscounts)
/src/Adapter/Presenter/AbstractLazyArray.php:104 (offsetGet)
:undefined (jsonSerialize)
/classes/Smarty/SmartyLazyRegister.php:61 (json_encode)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/c5/02/69/c50269f37bc308789870b57bc3387c08d80c003a_2.file.javascript.tpl.php:65 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90807b487_65760479)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/2d/44/00/2d4400b8e8040a94f37990be8497a16a98e461b2_2.file.head.tpl.php:394 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/2d/44/00/2d4400b8e8040a94f37990be8497a16a98e461b2_2.file.head.tpl.php:61 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c908040e74_13119950)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:152 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:45 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c908020637_19571652)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/4c/80/68/4c8068233d3ff8401b0da93ca4d2a07f7405c43b_2.file.layout-full-width.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90800b4e7_75473193)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/5e/94/2b/5e942b9ba415c1df9e4173cac73249e2168114c6_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9080031d7_87712377)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 225 |
SELECT SQL_NO_CACHE `id_module` FROM `4s6gv_module_shop` WHERE `id_module` = 10 AND `id_shop` = 1 LIMIT 1 |
0.301
ms
|
1 |
|
|
/classes/module/Module.php:2267
/classes/Hook.php:1240 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/dc/56/68/dc56685958143c2ad9a12b239c8fabf4362024cf_2.file.footer.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/dc/56/68/dc56685958143c2ad9a12b239c8fabf4362024cf_2.file.footer.tpl.php:38 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90841f555_62814662)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:448 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:109 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c908020637_19571652)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/4c/80/68/4c8068233d3ff8401b0da93ca4d2a07f7405c43b_2.file.layout-full-width.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90800b4e7_75473193)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/5e/94/2b/5e942b9ba415c1df9e4173cac73249e2168114c6_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9080031d7_87712377)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 211 |
SELECT SQL_NO_CACHE `id_module` FROM `4s6gv_module` WHERE `name` = "ps_searchbar" LIMIT 1 |
0.297
ms
|
1 |
|
|
/classes/module/Module.php:2778
/classes/module/Module.php:2266 (getModuleIdByName)
/classes/Hook.php:1240 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/6e/69/20/6e69203f937c89f3d9ddb9a2675dc129a4feb5b7_2.file.header.tpl.php:102 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/6e/69/20/6e69203f937c89f3d9ddb9a2675dc129a4feb5b7_2.file.header.tpl.php:46 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9080c0b42_46180155)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:241 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c908020637_19571652)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/4c/80/68/4c8068233d3ff8401b0da93ca4d2a07f7405c43b_2.file.layout-full-width.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90800b4e7_75473193)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/5e/94/2b/5e942b9ba415c1df9e4173cac73249e2168114c6_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9080031d7_87712377)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 121 |
SELECT SQL_NO_CACHE cl.`link_rewrite`
FROM `4s6gv_category_lang` cl
WHERE `id_lang` = 1
AND cl.id_shop = 1
AND cl.`id_category` = 81 LIMIT 1 |
0.296
ms
|
1 |
|
|
/classes/Category.php:1376
/classes/Product.php:717 (getLinkRewrite)
/src/Adapter/Image/ImageRetriever.php:48 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:944 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:118 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:30 (__construct)
/modules/ps_featuredproducts/ps_featuredproducts.php:289 (present)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 218 |
SELECT SQL_NO_CACHE `id_module` FROM `4s6gv_module` WHERE `name` = "ps_emailsubscription" LIMIT 1 |
0.295
ms
|
1 |
|
|
/classes/module/Module.php:2778
/classes/module/Module.php:2266 (getModuleIdByName)
/classes/Hook.php:1240 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/dc/56/68/dc56685958143c2ad9a12b239c8fabf4362024cf_2.file.footer.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90841f555_62814662)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:448 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:109 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c908020637_19571652)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/4c/80/68/4c8068233d3ff8401b0da93ca4d2a07f7405c43b_2.file.layout-full-width.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90800b4e7_75473193)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/5e/94/2b/5e942b9ba415c1df9e4173cac73249e2168114c6_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9080031d7_87712377)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 100 |
SELECT SQL_NO_CACHE product_shop.`price`, product_shop.`ecotax`,
IFNULL(product_attribute_shop.id_product_attribute,0) id_product_attribute, product_attribute_shop.`price` AS attribute_price, product_attribute_shop.default_on, product_attribute_shop.`ecotax` AS attribute_ecotax
FROM `4s6gv_product` p
INNER JOIN `4s6gv_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `4s6gv_product_attribute_shop` `product_attribute_shop` ON (product_attribute_shop.id_product = p.id_product AND product_attribute_shop.id_shop = 1)
WHERE (p.`id_product` = 7404) |
0.294
ms
|
1 |
|
|
/classes/Product.php:3606
/classes/Product.php:3462 (priceCalculation)
/classes/Product.php:5462 (getPriceStatic)
/classes/ProductAssembler.php:194 (getProductProperties)
/modules/ps_featuredproducts/ps_featuredproducts.php:286 (assembleProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 85 |
SELECT SQL_NO_CACHE pa.`available_date` FROM `4s6gv_product` p LEFT JOIN `4s6gv_product_attribute` pa ON (pa.`id_product` = p.`id_product`) INNER JOIN 4s6gv_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1) INNER JOIN 4s6gv_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1) WHERE p.`id_product` = 8087 AND pa.`id_product` = 8087 AND pa.`id_product_attribute` = 6552 LIMIT 1 |
0.293
ms
|
1 |
|
|
/classes/Product.php:1157
/classes/Product.php:5588 (getAvailableDate)
/classes/ProductAssembler.php:194 (getProductProperties)
/modules/ps_featuredproducts/ps_featuredproducts.php:286 (assembleProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 223 |
SELECT SQL_NO_CACHE `id_module` FROM `4s6gv_module_shop` WHERE `id_module` = 38 AND `id_shop` = 1 LIMIT 1 |
0.292
ms
|
1 |
|
|
/classes/module/Module.php:2267
/classes/Hook.php:1240 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/dc/56/68/dc56685958143c2ad9a12b239c8fabf4362024cf_2.file.footer.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/dc/56/68/dc56685958143c2ad9a12b239c8fabf4362024cf_2.file.footer.tpl.php:38 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90841f555_62814662)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:448 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:109 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c908020637_19571652)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/4c/80/68/4c8068233d3ff8401b0da93ca4d2a07f7405c43b_2.file.layout-full-width.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90800b4e7_75473193)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/5e/94/2b/5e942b9ba415c1df9e4173cac73249e2168114c6_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9080031d7_87712377)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 226 |
SELECT SQL_NO_CACHE `need_identification_number`
FROM `4s6gv_country`
WHERE `id_country` = 6 LIMIT 1 |
0.292
ms
|
1 |
|
|
/classes/Country.php:386
/classes/AddressFormat.php:612 (isNeedDniByCountryId)
/classes/AddressFormat.php:593 (getFormat)
/classes/AddressFormat.php:540 (getAddressCountryFormat)
/classes/AddressFormat.php:416 (getOrderedAddressFields)
/modules/ps_contactinfo/ps_contactinfo.php:91 (generateAddress)
/modules/ps_contactinfo/ps_contactinfo.php:83 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/dc/56/68/dc56685958143c2ad9a12b239c8fabf4362024cf_2.file.footer.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/dc/56/68/dc56685958143c2ad9a12b239c8fabf4362024cf_2.file.footer.tpl.php:38 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90841f555_62814662)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:448 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:109 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c908020637_19571652)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/4c/80/68/4c8068233d3ff8401b0da93ca4d2a07f7405c43b_2.file.layout-full-width.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90800b4e7_75473193)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/5e/94/2b/5e942b9ba415c1df9e4173cac73249e2168114c6_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9080031d7_87712377)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 65 |
SELECT SQL_NO_CACHE 1 FROM `4s6gv_specific_price` WHERE id_product = 8087 LIMIT 1 |
0.289
ms
|
2 |
|
|
/classes/SpecificPrice.php:422
/classes/SpecificPrice.php:510 (couldHaveSpecificPrice)
/classes/Product.php:3572 (getSpecificPrice)
/classes/Product.php:3462 (priceCalculation)
/classes/Product.php:5462 (getPriceStatic)
/classes/ProductAssembler.php:194 (getProductProperties)
/modules/ps_featuredproducts/ps_featuredproducts.php:286 (assembleProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 217 |
SELECT SQL_NO_CACHE `id_module` FROM `4s6gv_module_shop` WHERE `id_module` = 4 AND `id_shop` = 1 LIMIT 1 |
0.287
ms
|
1 |
|
|
/classes/module/Module.php:2267
/classes/Hook.php:1240 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/dc/56/68/dc56685958143c2ad9a12b239c8fabf4362024cf_2.file.footer.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90841f555_62814662)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:448 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:109 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c908020637_19571652)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/4c/80/68/4c8068233d3ff8401b0da93ca4d2a07f7405c43b_2.file.layout-full-width.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90800b4e7_75473193)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/5e/94/2b/5e942b9ba415c1df9e4173cac73249e2168114c6_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9080031d7_87712377)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 8 |
SELECT SQL_NO_CACHE *
FROM `4s6gv_lang` a
LEFT JOIN `4s6gv_lang_shop` `c` ON a.`id_lang` = c.`id_lang` AND c.`id_shop` = 1
WHERE (a.`id_lang` = 1) LIMIT 1 |
0.287
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/config/config.inc.php:200 (__construct)
/index.php:20 (require_once)
|
| 176 |
SELECT SQL_NO_CACHE cl.`link_rewrite`
FROM `4s6gv_category_lang` cl
WHERE `id_lang` = 1
AND cl.id_shop = 1
AND cl.`id_category` = 90 LIMIT 1 |
0.286
ms
|
1 |
|
|
/classes/Category.php:1376
/classes/Product.php:717 (getLinkRewrite)
/src/Adapter/Image/ImageRetriever.php:48 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:944 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:118 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:30 (__construct)
/modules/ps_newproducts/ps_newproducts.php:230 (present)
/modules/ps_newproducts/ps_newproducts.php:172 (getNewProducts)
/modules/ps_newproducts/ps_newproducts.php:159 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 104 |
SELECT SQL_NO_CACHE 1 FROM `4s6gv_specific_price` WHERE id_product = 8509 LIMIT 1 |
0.285
ms
|
1 |
|
|
/classes/SpecificPrice.php:422
/classes/SpecificPrice.php:510 (couldHaveSpecificPrice)
/classes/Product.php:3572 (getSpecificPrice)
/classes/Product.php:3462 (priceCalculation)
/classes/Product.php:5462 (getPriceStatic)
/classes/ProductAssembler.php:194 (getProductProperties)
/modules/ps_featuredproducts/ps_featuredproducts.php:286 (assembleProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 114 |
SELECT SQL_NO_CACHE tr.*
FROM `4s6gv_tax_rule` tr
JOIN `4s6gv_tax_rules_group` trg ON (tr.`id_tax_rules_group` = trg.`id_tax_rules_group`)
WHERE trg.`active` = 1
AND tr.`id_country` = 6
AND tr.`id_tax_rules_group` = 5
AND tr.`id_state` IN (0, 0)
AND ('0' BETWEEN tr.`zipcode_from` AND tr.`zipcode_to`
OR (tr.`zipcode_to` = 0 AND tr.`zipcode_from` IN(0, '0')))
ORDER BY tr.`zipcode_from` DESC, tr.`zipcode_to` DESC, tr.`id_state` DESC, tr.`id_country` DESC |
0.285
ms
|
1 |
|
|
/classes/tax/TaxRulesTaxManager.php:77
/classes/Product.php:5702 (getTaxCalculator)
/classes/Product.php:5606 (getTaxesInformations)
/classes/ProductAssembler.php:194 (getProductProperties)
/modules/ps_featuredproducts/ps_featuredproducts.php:286 (assembleProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 190 |
SELECT SQL_NO_CACHE `priority`, `id_specific_price_priority`
FROM `4s6gv_specific_price_priority`
WHERE `id_product` = 6092
ORDER BY `id_specific_price_priority` DESC LIMIT 1 |
0.280
ms
|
0 |
|
|
/classes/SpecificPrice.php:243
/classes/SpecificPrice.php:226 (getPriority)
/classes/SpecificPrice.php:552 (_getScoreQuery)
/classes/Product.php:3572 (getSpecificPrice)
/classes/Product.php:3462 (priceCalculation)
/classes/Product.php:5462 (getPriceStatic)
/classes/ProductAssembler.php:194 (getProductProperties)
/modules/ps_specials/ps_specials.php:202 (assembleProducts)
/modules/ps_specials/ps_specials.php:158 (getSpecialProducts)
/modules/ps_specials/ps_specials.php:145 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 50 |
SELECT SQL_NO_CACHE id_required_field, object_name, field_name
FROM 4s6gv_required_field |
0.276
ms
|
1 |
|
|
/classes/ObjectModel.php:1446
/classes/ObjectModel.php:1481 (getFieldsRequiredDatabase)
/classes/ObjectModel.php:1412 (cacheFieldsRequiredDatabase)
/classes/controller/FrontController.php:549 (validateFieldsRequiredDatabase)
/classes/controller/FrontController.php:623 (assignGeneralPurposeVariables)
/controllers/front/IndexController.php:18 (initContent)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 116 |
SELECT SQL_NO_CACHE cl.`link_rewrite`
FROM `4s6gv_category_lang` cl
WHERE `id_lang` = 1
AND cl.id_shop = 1
AND cl.`id_category` = 353 LIMIT 1 |
0.276
ms
|
1 |
|
|
/classes/Category.php:1376
/classes/Product.php:717 (getLinkRewrite)
/src/Adapter/Image/ImageRetriever.php:48 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:944 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:118 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:30 (__construct)
/modules/ps_featuredproducts/ps_featuredproducts.php:289 (present)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 4 |
SELECT SQL_NO_CACHE su.physical_uri, su.virtual_uri, su.domain, su.domain_ssl
FROM 4s6gv_shop s
LEFT JOIN 4s6gv_shop_url su ON (s.id_shop = su.id_shop)
WHERE s.id_shop = 1
AND s.active = 1 AND s.deleted = 0 AND su.main = 1 LIMIT 1 |
0.272
ms
|
1 |
|
|
/classes/shop/Shop.php:195
/classes/shop/Shop.php:129 (setUrl)
/classes/shop/Shop.php:412 (__construct)
/config/config.inc.php:103 (initialize)
/index.php:20 (require_once)
|
| 6 |
SELECT SQL_NO_CACHE *
FROM `4s6gv_country` a
LEFT JOIN `4s6gv_country_lang` `b` ON a.`id_country` = b.`id_country` AND b.`id_lang` = 1
LEFT JOIN `4s6gv_country_shop` `c` ON a.`id_country` = c.`id_country` AND c.`id_shop` = 1
WHERE (a.`id_country` = 6) LIMIT 1 |
0.272
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/config/config.inc.php:135 (__construct)
/index.php:20 (require_once)
|
| 105 |
SELECT SQL_NO_CACHE `priority`, `id_specific_price_priority`
FROM `4s6gv_specific_price_priority`
WHERE `id_product` = 8509
ORDER BY `id_specific_price_priority` DESC LIMIT 1 |
0.270
ms
|
0 |
|
|
/classes/SpecificPrice.php:243
/classes/SpecificPrice.php:226 (getPriority)
/classes/SpecificPrice.php:552 (_getScoreQuery)
/classes/Product.php:3572 (getSpecificPrice)
/classes/Product.php:3462 (priceCalculation)
/classes/Product.php:5462 (getPriceStatic)
/classes/ProductAssembler.php:194 (getProductProperties)
/modules/ps_featuredproducts/ps_featuredproducts.php:286 (assembleProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 184 |
SELECT SQL_NO_CACHE `id_module` FROM `4s6gv_module` WHERE `name` = "ps_specials" LIMIT 1 |
0.268
ms
|
1 |
|
|
/classes/module/Module.php:2778
/classes/module/Module.php:2266 (getModuleIdByName)
/classes/Hook.php:1240 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 119 |
SELECT SQL_NO_CACHE * FROM `4s6gv_image_type` |
0.267
ms
|
16 |
|
|
/classes/ImageType.php:141
/classes/ImageType.php:182 (getByNameNType)
/src/Adapter/Image/ImageRetriever.php:197 (getFormattedName)
/src/Adapter/Image/ImageRetriever.php:82 (getImage)
:undefined (PrestaShop\PrestaShop\Adapter\Image\{closure})
/src/Adapter/Image/ImageRetriever.php:75 (array_map)
/src/Adapter/Presenter/Product/ProductLazyArray.php:944 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:118 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:30 (__construct)
/modules/ps_featuredproducts/ps_featuredproducts.php:289 (present)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 157 |
SELECT SQL_NO_CACHE `id_module` FROM `4s6gv_module` WHERE `name` = "productcomments" LIMIT 1 |
0.266
ms
|
1 |
|
|
/classes/module/Module.php:2778
/classes/module/Module.php:2266 (getModuleIdByName)
/classes/Hook.php:1240 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:154 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:196 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:302 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90783f8a9_16018688)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/e3/fe/57/e3fe579cd80af6849f90f9ca44a41e2ba2219bda_2.file.productlist.tpl.php:33 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9078205d6_02656509)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:64 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:138 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90780ff39_54397157)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_child/fa/6c/c3/fa6cc378d2942c8857b89d6bca728048c0caeedd_2.module.ps_featuredproductsviewstemplateshookps_featuredproducts.tpl.php:45 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9077fe9d3_01263524)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2417 (fetch)
/modules/ps_featuredproducts/ps_featuredproducts.php:202 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 194 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `4s6gv_stock_available`
WHERE (id_product = 6092) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.266
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:266
/classes/Product.php:4117 (getQuantityAvailableByProduct)
/classes/Product.php:5568 (getQuantity)
/classes/ProductAssembler.php:194 (getProductProperties)
/modules/ps_specials/ps_specials.php:202 (assembleProducts)
/modules/ps_specials/ps_specials.php:158 (getSpecialProducts)
/modules/ps_specials/ps_specials.php:145 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 150 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `4s6gv_stock_available`
WHERE (id_product = 8087) AND (id_product_attribute = 6568) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.254
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:266
/classes/Product.php:2504 (getQuantityAvailableByProduct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:923 (getAttributesResume)
/src/Adapter/Presenter/Product/ProductLazyArray.php:755 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:244 (getFlags)
/var/cache/prod/smarty/compile/sumaysube_child/80/21/d0/8021d070cfee692cff34ece8f0b6e1873b6c5a1c_2.file.product-flags.tpl.php:26 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c907849091_57352271)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:297 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90783f8a9_16018688)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/e3/fe/57/e3fe579cd80af6849f90f9ca44a41e2ba2219bda_2.file.productlist.tpl.php:33 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9078205d6_02656509)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:64 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:138 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90780ff39_54397157)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_child/fa/6c/c3/fa6cc378d2942c8857b89d6bca728048c0caeedd_2.module.ps_featuredproductsviewstemplateshookps_featuredproducts.tpl.php:45 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9077fe9d3_01263524)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2417 (fetch)
/modules/ps_featuredproducts/ps_featuredproducts.php:202 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 66 |
SELECT SQL_NO_CACHE 1 FROM `4s6gv_specific_price` WHERE `id_product` != 0 LIMIT 1 |
0.253
ms
|
7595 |
|
|
/classes/SpecificPrice.php:284
/classes/SpecificPrice.php:347 (filterOutField)
/classes/SpecificPrice.php:535 (computeExtraConditions)
/classes/Product.php:3572 (getSpecificPrice)
/classes/Product.php:3462 (priceCalculation)
/classes/Product.php:5462 (getPriceStatic)
/classes/ProductAssembler.php:194 (getProductProperties)
/modules/ps_featuredproducts/ps_featuredproducts.php:286 (assembleProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 153 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `4s6gv_stock_available`
WHERE (id_product = 8087) AND (id_product_attribute = 6571) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.251
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:266
/classes/Product.php:2504 (getQuantityAvailableByProduct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:923 (getAttributesResume)
/src/Adapter/Presenter/Product/ProductLazyArray.php:755 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:244 (getFlags)
/var/cache/prod/smarty/compile/sumaysube_child/80/21/d0/8021d070cfee692cff34ece8f0b6e1873b6c5a1c_2.file.product-flags.tpl.php:26 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c907849091_57352271)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:297 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90783f8a9_16018688)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/e3/fe/57/e3fe579cd80af6849f90f9ca44a41e2ba2219bda_2.file.productlist.tpl.php:33 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9078205d6_02656509)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:64 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:138 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90780ff39_54397157)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_child/fa/6c/c3/fa6cc378d2942c8857b89d6bca728048c0caeedd_2.module.ps_featuredproductsviewstemplateshookps_featuredproducts.tpl.php:45 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9077fe9d3_01263524)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2417 (fetch)
/modules/ps_featuredproducts/ps_featuredproducts.php:202 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 93 |
SELECT SQL_NO_CACHE product_shop.`price`, product_shop.`ecotax`,
IFNULL(product_attribute_shop.id_product_attribute,0) id_product_attribute, product_attribute_shop.`price` AS attribute_price, product_attribute_shop.default_on, product_attribute_shop.`ecotax` AS attribute_ecotax
FROM `4s6gv_product` p
INNER JOIN `4s6gv_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `4s6gv_product_attribute_shop` `product_attribute_shop` ON (product_attribute_shop.id_product = p.id_product AND product_attribute_shop.id_shop = 1)
WHERE (p.`id_product` = 1066) |
0.250
ms
|
1 |
|
|
/classes/Product.php:3606
/classes/Product.php:3462 (priceCalculation)
/classes/Product.php:5462 (getPriceStatic)
/classes/ProductAssembler.php:194 (getProductProperties)
/modules/ps_featuredproducts/ps_featuredproducts.php:286 (assembleProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 95 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `4s6gv_stock_available`
WHERE (id_product = 1066) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.247
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:266
/classes/Product.php:4117 (getQuantityAvailableByProduct)
/classes/Product.php:5568 (getQuantity)
/classes/ProductAssembler.php:194 (getProductProperties)
/modules/ps_featuredproducts/ps_featuredproducts.php:286 (assembleProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 213 |
SELECT SQL_NO_CACHE `id_module` FROM `4s6gv_module` WHERE `name` = "ps_mainmenu" LIMIT 1 |
0.246
ms
|
1 |
|
|
/classes/module/Module.php:2778
/classes/module/Module.php:2266 (getModuleIdByName)
/classes/Hook.php:1240 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/6e/69/20/6e69203f937c89f3d9ddb9a2675dc129a4feb5b7_2.file.header.tpl.php:143 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/6e/69/20/6e69203f937c89f3d9ddb9a2675dc129a4feb5b7_2.file.header.tpl.php:51 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9080c0b42_46180155)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:241 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c908020637_19571652)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/4c/80/68/4c8068233d3ff8401b0da93ca4d2a07f7405c43b_2.file.layout-full-width.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90800b4e7_75473193)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/5e/94/2b/5e942b9ba415c1df9e4173cac73249e2168114c6_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9080031d7_87712377)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 132 |
SELECT SQL_NO_CACHE cl.`link_rewrite`
FROM `4s6gv_category_lang` cl
WHERE `id_lang` = 0
AND cl.id_shop = 1
AND cl.`id_category` = 353 LIMIT 1 |
0.245
ms
|
0 |
|
|
/classes/Category.php:1376
/classes/Product.php:717 (getLinkRewrite)
/src/Adapter/Presenter/Product/ProductLazyArray.php:917 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:755 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:244 (getFlags)
/var/cache/prod/smarty/compile/sumaysube_child/80/21/d0/8021d070cfee692cff34ece8f0b6e1873b6c5a1c_2.file.product-flags.tpl.php:26 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c907849091_57352271)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:297 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90783f8a9_16018688)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/e3/fe/57/e3fe579cd80af6849f90f9ca44a41e2ba2219bda_2.file.productlist.tpl.php:33 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9078205d6_02656509)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:64 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:138 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90780ff39_54397157)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_child/fa/6c/c3/fa6cc378d2942c8857b89d6bca728048c0caeedd_2.module.ps_featuredproductsviewstemplateshookps_featuredproducts.tpl.php:45 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9077fe9d3_01263524)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2417 (fetch)
/modules/ps_featuredproducts/ps_featuredproducts.php:202 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 212 |
SELECT SQL_NO_CACHE `id_module` FROM `4s6gv_module_shop` WHERE `id_module` = 69 AND `id_shop` = 1 LIMIT 1 |
0.244
ms
|
1 |
|
|
/classes/module/Module.php:2267
/classes/Hook.php:1240 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/6e/69/20/6e69203f937c89f3d9ddb9a2675dc129a4feb5b7_2.file.header.tpl.php:102 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/6e/69/20/6e69203f937c89f3d9ddb9a2675dc129a4feb5b7_2.file.header.tpl.php:46 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9080c0b42_46180155)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:241 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c908020637_19571652)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/4c/80/68/4c8068233d3ff8401b0da93ca4d2a07f7405c43b_2.file.layout-full-width.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90800b4e7_75473193)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/5e/94/2b/5e942b9ba415c1df9e4173cac73249e2168114c6_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9080031d7_87712377)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 233 |
SELECT SQL_NO_CACHE data
FROM `4s6gv_ganalytics_data`
WHERE id_cart = 0
AND id_shop = 1 LIMIT 1 |
0.243
ms
|
0 |
|
|
/modules/ps_googleanalytics/classes/Repository/GanalyticsDataRepository.php:39
/modules/ps_googleanalytics/classes/Handler/GanalyticsDataHandler.php:51 (findDataByCartIdAndShopId)
/modules/ps_googleanalytics/classes/Hook/HookDisplayBeforeBodyClosingTag.php:267 (readData)
/modules/ps_googleanalytics/classes/Hook/HookDisplayBeforeBodyClosingTag.php:54 (outputStoredEvents)
/modules/ps_googleanalytics/ps_googleanalytics.php:109 (run)
/classes/Hook.php:1234 (hookDisplayBeforeBodyClosingTag)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1125 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:507 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c908020637_19571652)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/4c/80/68/4c8068233d3ff8401b0da93ca4d2a07f7405c43b_2.file.layout-full-width.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90800b4e7_75473193)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/5e/94/2b/5e942b9ba415c1df9e4173cac73249e2168114c6_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9080031d7_87712377)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 147 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `4s6gv_stock_available`
WHERE (id_product = 8087) AND (id_product_attribute = 6565) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.241
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:266
/classes/Product.php:2504 (getQuantityAvailableByProduct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:923 (getAttributesResume)
/src/Adapter/Presenter/Product/ProductLazyArray.php:755 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:244 (getFlags)
/var/cache/prod/smarty/compile/sumaysube_child/80/21/d0/8021d070cfee692cff34ece8f0b6e1873b6c5a1c_2.file.product-flags.tpl.php:26 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c907849091_57352271)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:297 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90783f8a9_16018688)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/e3/fe/57/e3fe579cd80af6849f90f9ca44a41e2ba2219bda_2.file.productlist.tpl.php:33 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9078205d6_02656509)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:64 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:138 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90780ff39_54397157)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_child/fa/6c/c3/fa6cc378d2942c8857b89d6bca728048c0caeedd_2.module.ps_featuredproductsviewstemplateshookps_featuredproducts.tpl.php:45 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9077fe9d3_01263524)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2417 (fetch)
/modules/ps_featuredproducts/ps_featuredproducts.php:202 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 214 |
SELECT SQL_NO_CACHE `id_module` FROM `4s6gv_module_shop` WHERE `id_module` = 57 AND `id_shop` = 1 LIMIT 1 |
0.229
ms
|
1 |
|
|
/classes/module/Module.php:2267
/classes/Hook.php:1240 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/6e/69/20/6e69203f937c89f3d9ddb9a2675dc129a4feb5b7_2.file.header.tpl.php:143 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/6e/69/20/6e69203f937c89f3d9ddb9a2675dc129a4feb5b7_2.file.header.tpl.php:51 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9080c0b42_46180155)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:241 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c908020637_19571652)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/4c/80/68/4c8068233d3ff8401b0da93ca4d2a07f7405c43b_2.file.layout-full-width.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90800b4e7_75473193)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/5e/94/2b/5e942b9ba415c1df9e4173cac73249e2168114c6_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9080031d7_87712377)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 136 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `4s6gv_stock_available`
WHERE (id_product = 8087) AND (id_product_attribute = 6554) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.228
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:266
/classes/Product.php:2504 (getQuantityAvailableByProduct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:923 (getAttributesResume)
/src/Adapter/Presenter/Product/ProductLazyArray.php:755 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:244 (getFlags)
/var/cache/prod/smarty/compile/sumaysube_child/80/21/d0/8021d070cfee692cff34ece8f0b6e1873b6c5a1c_2.file.product-flags.tpl.php:26 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c907849091_57352271)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:297 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90783f8a9_16018688)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/e3/fe/57/e3fe579cd80af6849f90f9ca44a41e2ba2219bda_2.file.productlist.tpl.php:33 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9078205d6_02656509)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:64 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:138 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90780ff39_54397157)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_child/fa/6c/c3/fa6cc378d2942c8857b89d6bca728048c0caeedd_2.module.ps_featuredproductsviewstemplateshookps_featuredproducts.tpl.php:45 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9077fe9d3_01263524)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2417 (fetch)
/modules/ps_featuredproducts/ps_featuredproducts.php:202 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 109 |
SELECT SQL_NO_CACHE *
FROM `4s6gv_tax` a
WHERE (a.`id_tax` = 6) LIMIT 1 |
0.228
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/tax/TaxRulesTaxManager.php:93 (__construct)
/classes/Product.php:3672 (getTaxCalculator)
/classes/Product.php:3462 (priceCalculation)
/classes/Product.php:5462 (getPriceStatic)
/classes/ProductAssembler.php:194 (getProductProperties)
/modules/ps_featuredproducts/ps_featuredproducts.php:286 (assembleProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 180 |
SELECT SQL_NO_CACHE `id_module` FROM `4s6gv_module` WHERE `name` = "ps_bestsellers" LIMIT 1 |
0.228
ms
|
1 |
|
|
/classes/module/Module.php:2778
/classes/module/Module.php:2266 (getModuleIdByName)
/classes/Hook.php:1240 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 67 |
SELECT SQL_NO_CACHE 1 FROM `4s6gv_specific_price` WHERE `id_product_attribute` != 0 LIMIT 1 |
0.224
ms
|
2 |
|
|
/classes/SpecificPrice.php:284
/classes/SpecificPrice.php:355 (filterOutField)
/classes/SpecificPrice.php:535 (computeExtraConditions)
/classes/Product.php:3572 (getSpecificPrice)
/classes/Product.php:3462 (priceCalculation)
/classes/Product.php:5462 (getPriceStatic)
/classes/ProductAssembler.php:194 (getProductProperties)
/modules/ps_featuredproducts/ps_featuredproducts.php:286 (assembleProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 140 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `4s6gv_stock_available`
WHERE (id_product = 8087) AND (id_product_attribute = 6558) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.224
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:266
/classes/Product.php:2504 (getQuantityAvailableByProduct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:923 (getAttributesResume)
/src/Adapter/Presenter/Product/ProductLazyArray.php:755 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:244 (getFlags)
/var/cache/prod/smarty/compile/sumaysube_child/80/21/d0/8021d070cfee692cff34ece8f0b6e1873b6c5a1c_2.file.product-flags.tpl.php:26 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c907849091_57352271)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:297 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90783f8a9_16018688)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/e3/fe/57/e3fe579cd80af6849f90f9ca44a41e2ba2219bda_2.file.productlist.tpl.php:33 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9078205d6_02656509)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:64 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:138 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90780ff39_54397157)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_child/fa/6c/c3/fa6cc378d2942c8857b89d6bca728048c0caeedd_2.module.ps_featuredproductsviewstemplateshookps_featuredproducts.tpl.php:45 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9077fe9d3_01263524)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2417 (fetch)
/modules/ps_featuredproducts/ps_featuredproducts.php:202 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 81 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `4s6gv_stock_available`
WHERE (id_product = 8087) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.217
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:266
/classes/Product.php:4117 (getQuantityAvailableByProduct)
/classes/Product.php:5568 (getQuantity)
/classes/ProductAssembler.php:194 (getProductProperties)
/modules/ps_featuredproducts/ps_featuredproducts.php:286 (assembleProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 146 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `4s6gv_stock_available`
WHERE (id_product = 8087) AND (id_product_attribute = 6564) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.214
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:266
/classes/Product.php:2504 (getQuantityAvailableByProduct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:923 (getAttributesResume)
/src/Adapter/Presenter/Product/ProductLazyArray.php:755 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:244 (getFlags)
/var/cache/prod/smarty/compile/sumaysube_child/80/21/d0/8021d070cfee692cff34ece8f0b6e1873b6c5a1c_2.file.product-flags.tpl.php:26 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c907849091_57352271)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:297 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90783f8a9_16018688)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/e3/fe/57/e3fe579cd80af6849f90f9ca44a41e2ba2219bda_2.file.productlist.tpl.php:33 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9078205d6_02656509)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:64 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:138 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90780ff39_54397157)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_child/fa/6c/c3/fa6cc378d2942c8857b89d6bca728048c0caeedd_2.module.ps_featuredproductsviewstemplateshookps_featuredproducts.tpl.php:45 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9077fe9d3_01263524)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2417 (fetch)
/modules/ps_featuredproducts/ps_featuredproducts.php:202 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 80 |
SELECT SQL_NO_CACHE tr.*
FROM `4s6gv_tax_rule` tr
JOIN `4s6gv_tax_rules_group` trg ON (tr.`id_tax_rules_group` = trg.`id_tax_rules_group`)
WHERE trg.`active` = 1
AND tr.`id_country` = 6
AND tr.`id_tax_rules_group` = 0
AND tr.`id_state` IN (0, 383)
AND ('28250' BETWEEN tr.`zipcode_from` AND tr.`zipcode_to`
OR (tr.`zipcode_to` = 0 AND tr.`zipcode_from` IN(0, '28250')))
ORDER BY tr.`zipcode_from` DESC, tr.`zipcode_to` DESC, tr.`id_state` DESC, tr.`id_country` DESC |
0.213
ms
|
0 |
|
|
/classes/tax/TaxRulesTaxManager.php:77
/classes/Product.php:3698 (getTaxCalculator)
/classes/Product.php:3462 (priceCalculation)
/classes/Product.php:5496 (getPriceStatic)
/classes/ProductAssembler.php:194 (getProductProperties)
/modules/ps_featuredproducts/ps_featuredproducts.php:286 (assembleProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 155 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `4s6gv_stock_available`
WHERE (id_product = 8087) AND (id_product_attribute = 6573) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.213
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:266
/classes/Product.php:2504 (getQuantityAvailableByProduct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:923 (getAttributesResume)
/src/Adapter/Presenter/Product/ProductLazyArray.php:755 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:244 (getFlags)
/var/cache/prod/smarty/compile/sumaysube_child/80/21/d0/8021d070cfee692cff34ece8f0b6e1873b6c5a1c_2.file.product-flags.tpl.php:26 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c907849091_57352271)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:297 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90783f8a9_16018688)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/e3/fe/57/e3fe579cd80af6849f90f9ca44a41e2ba2219bda_2.file.productlist.tpl.php:33 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9078205d6_02656509)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:64 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:138 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90780ff39_54397157)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_child/fa/6c/c3/fa6cc378d2942c8857b89d6bca728048c0caeedd_2.module.ps_featuredproductsviewstemplateshookps_featuredproducts.tpl.php:45 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9077fe9d3_01263524)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2417 (fetch)
/modules/ps_featuredproducts/ps_featuredproducts.php:202 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 158 |
SELECT SQL_NO_CACHE `id_module` FROM `4s6gv_module_shop` WHERE `id_module` = 41 AND `id_shop` = 1 LIMIT 1 |
0.211
ms
|
1 |
|
|
/classes/module/Module.php:2267
/classes/Hook.php:1240 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:154 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:196 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:302 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90783f8a9_16018688)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/e3/fe/57/e3fe579cd80af6849f90f9ca44a41e2ba2219bda_2.file.productlist.tpl.php:33 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9078205d6_02656509)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:64 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:138 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90780ff39_54397157)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_child/fa/6c/c3/fa6cc378d2942c8857b89d6bca728048c0caeedd_2.module.ps_featuredproductsviewstemplateshookps_featuredproducts.tpl.php:45 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9077fe9d3_01263524)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2417 (fetch)
/modules/ps_featuredproducts/ps_featuredproducts.php:202 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 14 |
SELECT SQL_NO_CACHE `name`, `alias` FROM `4s6gv_hook_alias` |
0.210
ms
|
86 |
|
|
/classes/Hook.php:312
/classes/Hook.php:343 (getAllHookAliases)
/classes/Hook.php:818 (getHookAliasesFor)
/classes/Hook.php:945 (getHookModuleExecList)
/classes/Dispatcher.php:626 (exec)
/classes/Dispatcher.php:237 (loadRoutes)
/classes/Dispatcher.php:199 (__construct)
/index.php:66 (getInstance)
|
| 149 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `4s6gv_stock_available`
WHERE (id_product = 8087) AND (id_product_attribute = 6567) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.210
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:266
/classes/Product.php:2504 (getQuantityAvailableByProduct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:923 (getAttributesResume)
/src/Adapter/Presenter/Product/ProductLazyArray.php:755 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:244 (getFlags)
/var/cache/prod/smarty/compile/sumaysube_child/80/21/d0/8021d070cfee692cff34ece8f0b6e1873b6c5a1c_2.file.product-flags.tpl.php:26 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c907849091_57352271)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:297 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90783f8a9_16018688)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/e3/fe/57/e3fe579cd80af6849f90f9ca44a41e2ba2219bda_2.file.productlist.tpl.php:33 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9078205d6_02656509)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:64 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:138 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90780ff39_54397157)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_child/fa/6c/c3/fa6cc378d2942c8857b89d6bca728048c0caeedd_2.module.ps_featuredproductsviewstemplateshookps_featuredproducts.tpl.php:45 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9077fe9d3_01263524)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2417 (fetch)
/modules/ps_featuredproducts/ps_featuredproducts.php:202 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 148 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `4s6gv_stock_available`
WHERE (id_product = 8087) AND (id_product_attribute = 6566) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.208
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:266
/classes/Product.php:2504 (getQuantityAvailableByProduct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:923 (getAttributesResume)
/src/Adapter/Presenter/Product/ProductLazyArray.php:755 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:244 (getFlags)
/var/cache/prod/smarty/compile/sumaysube_child/80/21/d0/8021d070cfee692cff34ece8f0b6e1873b6c5a1c_2.file.product-flags.tpl.php:26 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c907849091_57352271)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:297 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90783f8a9_16018688)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/e3/fe/57/e3fe579cd80af6849f90f9ca44a41e2ba2219bda_2.file.productlist.tpl.php:33 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9078205d6_02656509)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:64 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:138 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90780ff39_54397157)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_child/fa/6c/c3/fa6cc378d2942c8857b89d6bca728048c0caeedd_2.module.ps_featuredproductsviewstemplateshookps_featuredproducts.tpl.php:45 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9077fe9d3_01263524)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2417 (fetch)
/modules/ps_featuredproducts/ps_featuredproducts.php:202 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 68 |
SELECT SQL_NO_CACHE 1 FROM `4s6gv_specific_price` WHERE `from` BETWEEN '2026-09-22 00:00:00' AND '2026-09-22 23:59:59' LIMIT 1 |
0.207
ms
|
1 |
|
|
/classes/SpecificPrice.php:364
/classes/SpecificPrice.php:535 (computeExtraConditions)
/classes/Product.php:3572 (getSpecificPrice)
/classes/Product.php:3462 (priceCalculation)
/classes/Product.php:5462 (getPriceStatic)
/classes/ProductAssembler.php:194 (getProductProperties)
/modules/ps_featuredproducts/ps_featuredproducts.php:286 (assembleProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 154 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `4s6gv_stock_available`
WHERE (id_product = 8087) AND (id_product_attribute = 6572) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.207
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:266
/classes/Product.php:2504 (getQuantityAvailableByProduct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:923 (getAttributesResume)
/src/Adapter/Presenter/Product/ProductLazyArray.php:755 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:244 (getFlags)
/var/cache/prod/smarty/compile/sumaysube_child/80/21/d0/8021d070cfee692cff34ece8f0b6e1873b6c5a1c_2.file.product-flags.tpl.php:26 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c907849091_57352271)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:297 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90783f8a9_16018688)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/e3/fe/57/e3fe579cd80af6849f90f9ca44a41e2ba2219bda_2.file.productlist.tpl.php:33 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9078205d6_02656509)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:64 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:138 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90780ff39_54397157)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_child/fa/6c/c3/fa6cc378d2942c8857b89d6bca728048c0caeedd_2.module.ps_featuredproductsviewstemplateshookps_featuredproducts.tpl.php:45 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9077fe9d3_01263524)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2417 (fetch)
/modules/ps_featuredproducts/ps_featuredproducts.php:202 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 112 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `4s6gv_stock_available`
WHERE (id_product = 8509) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.203
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:266
/classes/Product.php:4117 (getQuantityAvailableByProduct)
/classes/Product.php:5568 (getQuantity)
/classes/ProductAssembler.php:194 (getProductProperties)
/modules/ps_featuredproducts/ps_featuredproducts.php:286 (assembleProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 137 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `4s6gv_stock_available`
WHERE (id_product = 8087) AND (id_product_attribute = 6555) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.203
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:266
/classes/Product.php:2504 (getQuantityAvailableByProduct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:923 (getAttributesResume)
/src/Adapter/Presenter/Product/ProductLazyArray.php:755 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:244 (getFlags)
/var/cache/prod/smarty/compile/sumaysube_child/80/21/d0/8021d070cfee692cff34ece8f0b6e1873b6c5a1c_2.file.product-flags.tpl.php:26 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c907849091_57352271)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:297 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90783f8a9_16018688)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/e3/fe/57/e3fe579cd80af6849f90f9ca44a41e2ba2219bda_2.file.productlist.tpl.php:33 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9078205d6_02656509)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:64 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:138 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90780ff39_54397157)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_child/fa/6c/c3/fa6cc378d2942c8857b89d6bca728048c0caeedd_2.module.ps_featuredproductsviewstemplateshookps_featuredproducts.tpl.php:45 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9077fe9d3_01263524)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2417 (fetch)
/modules/ps_featuredproducts/ps_featuredproducts.php:202 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 197 |
SELECT SQL_NO_CACHE cl.`link_rewrite`
FROM `4s6gv_category_lang` cl
WHERE `id_lang` = 1
AND cl.id_shop = 1
AND cl.`id_category` = 76 LIMIT 1 |
0.203
ms
|
1 |
|
|
/classes/Category.php:1376
/classes/Product.php:717 (getLinkRewrite)
/src/Adapter/Image/ImageRetriever.php:48 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:944 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:118 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:30 (__construct)
/modules/ps_specials/ps_specials.php:205 (present)
/modules/ps_specials/ps_specials.php:158 (getSpecialProducts)
/modules/ps_specials/ps_specials.php:145 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 151 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `4s6gv_stock_available`
WHERE (id_product = 8087) AND (id_product_attribute = 6569) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.202
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:266
/classes/Product.php:2504 (getQuantityAvailableByProduct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:923 (getAttributesResume)
/src/Adapter/Presenter/Product/ProductLazyArray.php:755 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:244 (getFlags)
/var/cache/prod/smarty/compile/sumaysube_child/80/21/d0/8021d070cfee692cff34ece8f0b6e1873b6c5a1c_2.file.product-flags.tpl.php:26 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c907849091_57352271)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:297 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90783f8a9_16018688)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/e3/fe/57/e3fe579cd80af6849f90f9ca44a41e2ba2219bda_2.file.productlist.tpl.php:33 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9078205d6_02656509)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:64 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:138 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90780ff39_54397157)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_child/fa/6c/c3/fa6cc378d2942c8857b89d6bca728048c0caeedd_2.module.ps_featuredproductsviewstemplateshookps_featuredproducts.tpl.php:45 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9077fe9d3_01263524)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2417 (fetch)
/modules/ps_featuredproducts/ps_featuredproducts.php:202 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 77 |
SELECT SQL_NO_CACHE *
FROM `4s6gv_tax_lang`
WHERE `id_tax` = 4 |
0.201
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:62
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/tax/TaxRulesTaxManager.php:93 (__construct)
/classes/Product.php:3672 (getTaxCalculator)
/classes/Product.php:3462 (priceCalculation)
/classes/Product.php:5462 (getPriceStatic)
/classes/ProductAssembler.php:194 (getProductProperties)
/modules/ps_featuredproducts/ps_featuredproducts.php:286 (assembleProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 203 |
SELECT SQL_NO_CACHE `id_module` FROM `4s6gv_module` WHERE `name` = "ps_contactinfo" LIMIT 1 |
0.201
ms
|
1 |
|
|
/classes/module/Module.php:2778
/classes/module/Module.php:2266 (getModuleIdByName)
/classes/Hook.php:1240 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/6e/69/20/6e69203f937c89f3d9ddb9a2675dc129a4feb5b7_2.file.header.tpl.php:41 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9080c0b42_46180155)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:241 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c908020637_19571652)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/4c/80/68/4c8068233d3ff8401b0da93ca4d2a07f7405c43b_2.file.layout-full-width.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90800b4e7_75473193)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/5e/94/2b/5e942b9ba415c1df9e4173cac73249e2168114c6_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9080031d7_87712377)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 139 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `4s6gv_stock_available`
WHERE (id_product = 8087) AND (id_product_attribute = 6557) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.197
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:266
/classes/Product.php:2504 (getQuantityAvailableByProduct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:923 (getAttributesResume)
/src/Adapter/Presenter/Product/ProductLazyArray.php:755 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:244 (getFlags)
/var/cache/prod/smarty/compile/sumaysube_child/80/21/d0/8021d070cfee692cff34ece8f0b6e1873b6c5a1c_2.file.product-flags.tpl.php:26 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c907849091_57352271)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:297 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90783f8a9_16018688)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/e3/fe/57/e3fe579cd80af6849f90f9ca44a41e2ba2219bda_2.file.productlist.tpl.php:33 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9078205d6_02656509)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:64 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:138 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90780ff39_54397157)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_child/fa/6c/c3/fa6cc378d2942c8857b89d6bca728048c0caeedd_2.module.ps_featuredproductsviewstemplateshookps_featuredproducts.tpl.php:45 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9077fe9d3_01263524)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2417 (fetch)
/modules/ps_featuredproducts/ps_featuredproducts.php:202 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 138 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `4s6gv_stock_available`
WHERE (id_product = 8087) AND (id_product_attribute = 6556) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.195
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:266
/classes/Product.php:2504 (getQuantityAvailableByProduct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:923 (getAttributesResume)
/src/Adapter/Presenter/Product/ProductLazyArray.php:755 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:244 (getFlags)
/var/cache/prod/smarty/compile/sumaysube_child/80/21/d0/8021d070cfee692cff34ece8f0b6e1873b6c5a1c_2.file.product-flags.tpl.php:26 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c907849091_57352271)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:297 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90783f8a9_16018688)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/e3/fe/57/e3fe579cd80af6849f90f9ca44a41e2ba2219bda_2.file.productlist.tpl.php:33 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9078205d6_02656509)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:64 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:138 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90780ff39_54397157)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_child/fa/6c/c3/fa6cc378d2942c8857b89d6bca728048c0caeedd_2.module.ps_featuredproductsviewstemplateshookps_featuredproducts.tpl.php:45 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9077fe9d3_01263524)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2417 (fetch)
/modules/ps_featuredproducts/ps_featuredproducts.php:202 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 3 |
SELECT SQL_NO_CACHE *
FROM `4s6gv_shop` a
WHERE (a.`id_shop` = 1) LIMIT 1 |
0.194
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/shop/Shop.php:126 (__construct)
/classes/shop/Shop.php:412 (__construct)
/config/config.inc.php:103 (initialize)
/index.php:20 (require_once)
|
| 141 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `4s6gv_stock_available`
WHERE (id_product = 8087) AND (id_product_attribute = 6559) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.194
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:266
/classes/Product.php:2504 (getQuantityAvailableByProduct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:923 (getAttributesResume)
/src/Adapter/Presenter/Product/ProductLazyArray.php:755 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:244 (getFlags)
/var/cache/prod/smarty/compile/sumaysube_child/80/21/d0/8021d070cfee692cff34ece8f0b6e1873b6c5a1c_2.file.product-flags.tpl.php:26 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c907849091_57352271)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:297 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90783f8a9_16018688)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/e3/fe/57/e3fe579cd80af6849f90f9ca44a41e2ba2219bda_2.file.productlist.tpl.php:33 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9078205d6_02656509)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:64 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:138 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90780ff39_54397157)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_child/fa/6c/c3/fa6cc378d2942c8857b89d6bca728048c0caeedd_2.module.ps_featuredproductsviewstemplateshookps_featuredproducts.tpl.php:45 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9077fe9d3_01263524)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2417 (fetch)
/modules/ps_featuredproducts/ps_featuredproducts.php:202 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 206 |
SELECT SQL_NO_CACHE `id_module` FROM `4s6gv_module` WHERE `name` = "ps_customersignin" LIMIT 1 |
0.193
ms
|
1 |
|
|
/classes/module/Module.php:2778
/classes/module/Module.php:2266 (getModuleIdByName)
/classes/Hook.php:1240 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/6e/69/20/6e69203f937c89f3d9ddb9a2675dc129a4feb5b7_2.file.header.tpl.php:44 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9080c0b42_46180155)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:241 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c908020637_19571652)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/4c/80/68/4c8068233d3ff8401b0da93ca4d2a07f7405c43b_2.file.layout-full-width.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90800b4e7_75473193)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/5e/94/2b/5e942b9ba415c1df9e4173cac73249e2168114c6_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9080031d7_87712377)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 142 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `4s6gv_stock_available`
WHERE (id_product = 8087) AND (id_product_attribute = 6560) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.192
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:266
/classes/Product.php:2504 (getQuantityAvailableByProduct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:923 (getAttributesResume)
/src/Adapter/Presenter/Product/ProductLazyArray.php:755 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:244 (getFlags)
/var/cache/prod/smarty/compile/sumaysube_child/80/21/d0/8021d070cfee692cff34ece8f0b6e1873b6c5a1c_2.file.product-flags.tpl.php:26 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c907849091_57352271)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:297 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90783f8a9_16018688)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/e3/fe/57/e3fe579cd80af6849f90f9ca44a41e2ba2219bda_2.file.productlist.tpl.php:33 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9078205d6_02656509)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:64 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:138 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90780ff39_54397157)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_child/fa/6c/c3/fa6cc378d2942c8857b89d6bca728048c0caeedd_2.module.ps_featuredproductsviewstemplateshookps_featuredproducts.tpl.php:45 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9077fe9d3_01263524)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2417 (fetch)
/modules/ps_featuredproducts/ps_featuredproducts.php:202 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 69 |
SELECT SQL_NO_CACHE 1 FROM `4s6gv_specific_price` WHERE `to` BETWEEN '2026-09-22 00:00:00' AND '2026-09-22 23:59:59' LIMIT 1 |
0.191
ms
|
1 |
|
|
/classes/SpecificPrice.php:368
/classes/SpecificPrice.php:535 (computeExtraConditions)
/classes/Product.php:3572 (getSpecificPrice)
/classes/Product.php:3462 (priceCalculation)
/classes/Product.php:5462 (getPriceStatic)
/classes/ProductAssembler.php:194 (getProductProperties)
/modules/ps_featuredproducts/ps_featuredproducts.php:286 (assembleProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 83 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `4s6gv_stock_available`
WHERE (id_product = 8087) AND (id_product_attribute = 6552) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.190
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:266
/classes/Product.php:4117 (getQuantityAvailableByProduct)
/classes/Product.php:5580 (getQuantity)
/classes/ProductAssembler.php:194 (getProductProperties)
/modules/ps_featuredproducts/ps_featuredproducts.php:286 (assembleProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 152 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `4s6gv_stock_available`
WHERE (id_product = 8087) AND (id_product_attribute = 6570) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.189
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:266
/classes/Product.php:2504 (getQuantityAvailableByProduct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:923 (getAttributesResume)
/src/Adapter/Presenter/Product/ProductLazyArray.php:755 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:244 (getFlags)
/var/cache/prod/smarty/compile/sumaysube_child/80/21/d0/8021d070cfee692cff34ece8f0b6e1873b6c5a1c_2.file.product-flags.tpl.php:26 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c907849091_57352271)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:297 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90783f8a9_16018688)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/e3/fe/57/e3fe579cd80af6849f90f9ca44a41e2ba2219bda_2.file.productlist.tpl.php:33 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9078205d6_02656509)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:64 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:138 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90780ff39_54397157)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_child/fa/6c/c3/fa6cc378d2942c8857b89d6bca728048c0caeedd_2.module.ps_featuredproductsviewstemplateshookps_featuredproducts.tpl.php:45 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9077fe9d3_01263524)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2417 (fetch)
/modules/ps_featuredproducts/ps_featuredproducts.php:202 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 7 |
SELECT SQL_NO_CACHE *
FROM `4s6gv_shop_group` a
WHERE (a.`id_shop_group` = 1) LIMIT 1 |
0.188
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/shop/Shop.php:542 (__construct)
/config/config.inc.php:160 (getGroup)
/index.php:20 (require_once)
|
| 144 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `4s6gv_stock_available`
WHERE (id_product = 8087) AND (id_product_attribute = 6562) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.188
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:266
/classes/Product.php:2504 (getQuantityAvailableByProduct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:923 (getAttributesResume)
/src/Adapter/Presenter/Product/ProductLazyArray.php:755 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:244 (getFlags)
/var/cache/prod/smarty/compile/sumaysube_child/80/21/d0/8021d070cfee692cff34ece8f0b6e1873b6c5a1c_2.file.product-flags.tpl.php:26 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c907849091_57352271)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:297 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90783f8a9_16018688)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/e3/fe/57/e3fe579cd80af6849f90f9ca44a41e2ba2219bda_2.file.productlist.tpl.php:33 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9078205d6_02656509)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:64 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:138 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90780ff39_54397157)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_child/fa/6c/c3/fa6cc378d2942c8857b89d6bca728048c0caeedd_2.module.ps_featuredproductsviewstemplateshookps_featuredproducts.tpl.php:45 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9077fe9d3_01263524)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2417 (fetch)
/modules/ps_featuredproducts/ps_featuredproducts.php:202 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 143 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `4s6gv_stock_available`
WHERE (id_product = 8087) AND (id_product_attribute = 6561) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.186
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:266
/classes/Product.php:2504 (getQuantityAvailableByProduct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:923 (getAttributesResume)
/src/Adapter/Presenter/Product/ProductLazyArray.php:755 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:244 (getFlags)
/var/cache/prod/smarty/compile/sumaysube_child/80/21/d0/8021d070cfee692cff34ece8f0b6e1873b6c5a1c_2.file.product-flags.tpl.php:26 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c907849091_57352271)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:297 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90783f8a9_16018688)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/e3/fe/57/e3fe579cd80af6849f90f9ca44a41e2ba2219bda_2.file.productlist.tpl.php:33 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9078205d6_02656509)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:64 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:138 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90780ff39_54397157)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_child/fa/6c/c3/fa6cc378d2942c8857b89d6bca728048c0caeedd_2.module.ps_featuredproductsviewstemplateshookps_featuredproducts.tpl.php:45 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9077fe9d3_01263524)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2417 (fetch)
/modules/ps_featuredproducts/ps_featuredproducts.php:202 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 145 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `4s6gv_stock_available`
WHERE (id_product = 8087) AND (id_product_attribute = 6563) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.186
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:266
/classes/Product.php:2504 (getQuantityAvailableByProduct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:923 (getAttributesResume)
/src/Adapter/Presenter/Product/ProductLazyArray.php:755 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:244 (getFlags)
/var/cache/prod/smarty/compile/sumaysube_child/80/21/d0/8021d070cfee692cff34ece8f0b6e1873b6c5a1c_2.file.product-flags.tpl.php:26 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c907849091_57352271)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:297 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/c0/ca/a8/c0caa85b3c20a977c128c5eba4d2954d718b3d55_2.file.product.tpl.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90783f8a9_16018688)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/e3/fe/57/e3fe579cd80af6849f90f9ca44a41e2ba2219bda_2.file.productlist.tpl.php:33 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9078205d6_02656509)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:64 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:138 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_child/05/22/a6/0522a6119d1dfec121b715d460eebc5ab8f348b1_2.file.module-products.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90780ff39_54397157)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_child/fa/6c/c3/fa6cc378d2942c8857b89d6bca728048c0caeedd_2.module.ps_featuredproductsviewstemplateshookps_featuredproducts.tpl.php:45 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9077fe9d3_01263524)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2417 (fetch)
/modules/ps_featuredproducts/ps_featuredproducts.php:202 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 181 |
SELECT SQL_NO_CACHE `id_module` FROM `4s6gv_module_shop` WHERE `id_module` = 2 AND `id_shop` = 1 LIMIT 1 |
0.186
ms
|
1 |
|
|
/classes/module/Module.php:2267
/classes/Hook.php:1240 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 124 |
SELECT SQL_NO_CACHE cl.`link_rewrite`
FROM `4s6gv_category_lang` cl
WHERE `id_lang` = 1
AND cl.id_shop = 1
AND cl.`id_category` = 157 LIMIT 1 |
0.183
ms
|
1 |
|
|
/classes/Category.php:1376
/classes/Product.php:717 (getLinkRewrite)
/src/Adapter/Image/ImageRetriever.php:48 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:944 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:118 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:30 (__construct)
/modules/ps_featuredproducts/ps_featuredproducts.php:289 (present)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 127 |
SELECT SQL_NO_CACHE cl.`link_rewrite`
FROM `4s6gv_category_lang` cl
WHERE `id_lang` = 1
AND cl.id_shop = 1
AND cl.`id_category` = 235 LIMIT 1 |
0.182
ms
|
1 |
|
|
/classes/Category.php:1376
/classes/Product.php:717 (getLinkRewrite)
/src/Adapter/Image/ImageRetriever.php:48 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:944 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:118 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:30 (__construct)
/modules/ps_featuredproducts/ps_featuredproducts.php:289 (present)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 185 |
SELECT SQL_NO_CACHE `id_module` FROM `4s6gv_module_shop` WHERE `id_module` = 48 AND `id_shop` = 1 LIMIT 1 |
0.182
ms
|
1 |
|
|
/classes/module/Module.php:2267
/classes/Hook.php:1240 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 90 |
SELECT SQL_NO_CACHE 1 FROM `4s6gv_specific_price` WHERE id_product = 1066 LIMIT 1 |
0.178
ms
|
1 |
|
|
/classes/SpecificPrice.php:422
/classes/SpecificPrice.php:510 (couldHaveSpecificPrice)
/classes/Product.php:3572 (getSpecificPrice)
/classes/Product.php:3462 (priceCalculation)
/classes/Product.php:5462 (getPriceStatic)
/classes/ProductAssembler.php:194 (getProductProperties)
/modules/ps_featuredproducts/ps_featuredproducts.php:286 (assembleProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 89 |
SELECT SQL_NO_CACHE *
FROM `4s6gv_product_attribute_lang`
WHERE `id_product_attribute` = 6552 |
0.174
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:62
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Product.php:5646 (__construct)
/classes/Product.php:5617 (computeUnitPriceRatio)
/classes/ProductAssembler.php:194 (getProductProperties)
/modules/ps_featuredproducts/ps_featuredproducts.php:286 (assembleProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 76 |
SELECT SQL_NO_CACHE *
FROM `4s6gv_tax` a
WHERE (a.`id_tax` = 4) LIMIT 1 |
0.171
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/tax/TaxRulesTaxManager.php:93 (__construct)
/classes/Product.php:3672 (getTaxCalculator)
/classes/Product.php:3462 (priceCalculation)
/classes/Product.php:5462 (getPriceStatic)
/classes/ProductAssembler.php:194 (getProductProperties)
/modules/ps_featuredproducts/ps_featuredproducts.php:286 (assembleProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 70 |
SELECT SQL_NO_CACHE `priority`, `id_specific_price_priority`
FROM `4s6gv_specific_price_priority`
WHERE `id_product` = 8087
ORDER BY `id_specific_price_priority` DESC LIMIT 1 |
0.170
ms
|
0 |
|
|
/classes/SpecificPrice.php:243
/classes/SpecificPrice.php:226 (getPriority)
/classes/SpecificPrice.php:552 (_getScoreQuery)
/classes/Product.php:3572 (getSpecificPrice)
/classes/Product.php:3462 (priceCalculation)
/classes/Product.php:5462 (getPriceStatic)
/classes/ProductAssembler.php:194 (getProductProperties)
/modules/ps_featuredproducts/ps_featuredproducts.php:286 (assembleProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 102 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `4s6gv_stock_available`
WHERE (id_product = 7404) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.163
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:266
/classes/Product.php:4117 (getQuantityAvailableByProduct)
/classes/Product.php:5568 (getQuantity)
/classes/ProductAssembler.php:194 (getProductProperties)
/modules/ps_featuredproducts/ps_featuredproducts.php:286 (assembleProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 204 |
SELECT SQL_NO_CACHE `id_module` FROM `4s6gv_module_shop` WHERE `id_module` = 28 AND `id_shop` = 1 LIMIT 1 |
0.161
ms
|
1 |
|
|
/classes/module/Module.php:2267
/classes/Hook.php:1240 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/6e/69/20/6e69203f937c89f3d9ddb9a2675dc129a4feb5b7_2.file.header.tpl.php:41 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9080c0b42_46180155)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:241 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c908020637_19571652)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/4c/80/68/4c8068233d3ff8401b0da93ca4d2a07f7405c43b_2.file.layout-full-width.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90800b4e7_75473193)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/5e/94/2b/5e942b9ba415c1df9e4173cac73249e2168114c6_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9080031d7_87712377)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 110 |
SELECT SQL_NO_CACHE *
FROM `4s6gv_tax_lang`
WHERE `id_tax` = 6 |
0.160
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:62
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/tax/TaxRulesTaxManager.php:93 (__construct)
/classes/Product.php:3672 (getTaxCalculator)
/classes/Product.php:3462 (priceCalculation)
/classes/Product.php:5462 (getPriceStatic)
/classes/ProductAssembler.php:194 (getProductProperties)
/modules/ps_featuredproducts/ps_featuredproducts.php:286 (assembleProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 205 |
SELECT SQL_NO_CACHE `need_identification_number`
FROM `4s6gv_country`
WHERE `id_country` = 6 LIMIT 1 |
0.156
ms
|
1 |
|
|
/classes/Country.php:386
/classes/AddressFormat.php:612 (isNeedDniByCountryId)
/classes/AddressFormat.php:593 (getFormat)
/classes/AddressFormat.php:540 (getAddressCountryFormat)
/classes/AddressFormat.php:416 (getOrderedAddressFields)
/modules/ps_contactinfo/ps_contactinfo.php:91 (generateAddress)
/modules/ps_contactinfo/ps_contactinfo.php:83 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/6e/69/20/6e69203f937c89f3d9ddb9a2675dc129a4feb5b7_2.file.header.tpl.php:41 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9080c0b42_46180155)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:241 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c908020637_19571652)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/4c/80/68/4c8068233d3ff8401b0da93ca4d2a07f7405c43b_2.file.layout-full-width.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90800b4e7_75473193)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/5e/94/2b/5e942b9ba415c1df9e4173cac73249e2168114c6_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9080031d7_87712377)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 193 |
SELECT SQL_NO_CACHE `reduction`
FROM `4s6gv_product_group_reduction_cache`
WHERE `id_product` = 6092 AND `id_group` = 1 LIMIT 1 |
0.154
ms
|
0 |
|
|
/classes/GroupReduction.php:126
/classes/Product.php:3736 (getValueForProduct)
/classes/Product.php:3462 (priceCalculation)
/classes/Product.php:5462 (getPriceStatic)
/classes/ProductAssembler.php:194 (getProductProperties)
/modules/ps_specials/ps_specials.php:202 (assembleProducts)
/modules/ps_specials/ps_specials.php:158 (getSpecialProducts)
/modules/ps_specials/ps_specials.php:145 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 78 |
SELECT SQL_NO_CACHE `reduction`
FROM `4s6gv_product_group_reduction_cache`
WHERE `id_product` = 8087 AND `id_group` = 1 LIMIT 1 |
0.153
ms
|
0 |
|
|
/classes/GroupReduction.php:126
/classes/Product.php:3736 (getValueForProduct)
/classes/Product.php:3462 (priceCalculation)
/classes/Product.php:5462 (getPriceStatic)
/classes/ProductAssembler.php:194 (getProductProperties)
/modules/ps_featuredproducts/ps_featuredproducts.php:286 (assembleProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 207 |
SELECT SQL_NO_CACHE `id_module` FROM `4s6gv_module_shop` WHERE `id_module` = 64 AND `id_shop` = 1 LIMIT 1 |
0.145
ms
|
1 |
|
|
/classes/module/Module.php:2267
/classes/Hook.php:1240 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/6e/69/20/6e69203f937c89f3d9ddb9a2675dc129a4feb5b7_2.file.header.tpl.php:44 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9080c0b42_46180155)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:241 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/cc/da/32/ccda32a6e8a84d2ce39cf1e8b59afd59523ea28e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c908020637_19571652)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/4c/80/68/4c8068233d3ff8401b0da93ca4d2a07f7405c43b_2.file.layout-full-width.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c90800b4e7_75473193)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/prod/smarty/compile/sumaysube_childlayouts_layout_full_width_tpl/5e/94/2b/5e942b9ba415c1df9e4173cac73249e2168114c6_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6ab2c9080031d7_87712377)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 111 |
SELECT SQL_NO_CACHE `reduction`
FROM `4s6gv_product_group_reduction_cache`
WHERE `id_product` = 8509 AND `id_group` = 1 LIMIT 1 |
0.144
ms
|
0 |
|
|
/classes/GroupReduction.php:126
/classes/Product.php:3736 (getValueForProduct)
/classes/Product.php:3462 (priceCalculation)
/classes/Product.php:5462 (getPriceStatic)
/classes/ProductAssembler.php:194 (getProductProperties)
/modules/ps_featuredproducts/ps_featuredproducts.php:286 (assembleProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 9 |
SELECT SQL_NO_CACHE id_shop
FROM `4s6gv_lang_shop`
WHERE `id_lang` = 1
AND id_shop = 1 LIMIT 1 |
0.139
ms
|
1 |
|
|
/classes/ObjectModel.php:1579
/config/config.inc.php:205 (isAssociatedToShop)
/index.php:20 (require_once)
|
| 101 |
SELECT SQL_NO_CACHE `reduction`
FROM `4s6gv_product_group_reduction_cache`
WHERE `id_product` = 7404 AND `id_group` = 1 LIMIT 1 |
0.134
ms
|
0 |
|
|
/classes/GroupReduction.php:126
/classes/Product.php:3736 (getValueForProduct)
/classes/Product.php:3462 (priceCalculation)
/classes/Product.php:5462 (getPriceStatic)
/classes/ProductAssembler.php:194 (getProductProperties)
/modules/ps_featuredproducts/ps_featuredproducts.php:286 (assembleProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 79 |
SELECT SQL_NO_CACHE `reduction`
FROM `4s6gv_group`
WHERE `id_group` = 1 LIMIT 1 |
0.132
ms
|
1 |
|
|
/classes/Group.php:131
/classes/Product.php:3740 (getReductionByIdGroup)
/classes/Product.php:3462 (priceCalculation)
/classes/Product.php:5462 (getPriceStatic)
/classes/ProductAssembler.php:194 (getProductProperties)
/modules/ps_featuredproducts/ps_featuredproducts.php:286 (assembleProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 91 |
SELECT SQL_NO_CACHE `priority`, `id_specific_price_priority`
FROM `4s6gv_specific_price_priority`
WHERE `id_product` = 1066
ORDER BY `id_specific_price_priority` DESC LIMIT 1 |
0.124
ms
|
0 |
|
|
/classes/SpecificPrice.php:243
/classes/SpecificPrice.php:226 (getPriority)
/classes/SpecificPrice.php:552 (_getScoreQuery)
/classes/Product.php:3572 (getSpecificPrice)
/classes/Product.php:3462 (priceCalculation)
/classes/Product.php:5462 (getPriceStatic)
/classes/ProductAssembler.php:194 (getProductProperties)
/modules/ps_featuredproducts/ps_featuredproducts.php:286 (assembleProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|
| 94 |
SELECT SQL_NO_CACHE `reduction`
FROM `4s6gv_product_group_reduction_cache`
WHERE `id_product` = 1066 AND `id_group` = 1 LIMIT 1 |
0.123
ms
|
0 |
|
|
/classes/GroupReduction.php:126
/classes/Product.php:3736 (getValueForProduct)
/classes/Product.php:3462 (priceCalculation)
/classes/Product.php:5462 (getPriceStatic)
/classes/ProductAssembler.php:194 (getProductProperties)
/modules/ps_featuredproducts/ps_featuredproducts.php:286 (assembleProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:207 (getProducts)
/modules/ps_featuredproducts/ps_featuredproducts.php:194 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1171 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:500 (run)
/index.php:66 (dispatch)
|