| 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 `xr23z_configuration` c
LEFT JOIN `xr23z_configuration_lang` cl ON (c.`id_configuration` = cl.`id_configuration`) |
2.109
ms
|
2401 |
|
|
/classes/Configuration.php:182
/classes/Configuration.php:230 (loadConfiguration)
/classes/Configuration.php:303 (get)
/classes/shop/Shop.php:402 (getMultiShopValues)
/config/config.inc.php:146 (initialize)
/index.php:40 (require_once)
|
| 37 |
SELECT SQL_NO_CACHE `id_hook`, `name`
FROM `xr23z_hook`
UNION
SELECT `id_hook`, ha.`alias` as name
FROM `xr23z_hook_alias` ha
INNER JOIN `xr23z_hook` h ON ha.name = h.name |
2.059
ms
|
0 |
|
|
/classes/Hook.php:1582
/classes/Hook.php:251 (getAllHookIds)
/classes/tax/TaxManagerFactory.php:67 (getIdByName)
/classes/tax/TaxManagerFactory.php:46 (execHookTaxManagerFactory)
/classes/Product.php:6519 (getManager)
/classes/Product.php:723 (getTaxesRate)
/controllers/front/ProductController.php:149 (__construct)
/tools/profiling/Controller.php:46 (init)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 13 |
SELECT SQL_NO_CACHE h.`name` as hook, m.`id_module`, h.`id_hook`, m.`name` as module
FROM `xr23z_module` m
INNER JOIN xr23z_module_shop module_shop
ON (module_shop.id_module = m.id_module AND module_shop.id_shop = 1)
INNER JOIN `xr23z_hook_module` `hm` ON hm.`id_module` = m.`id_module`
INNER JOIN `xr23z_hook` `h` ON hm.`id_hook` = h.`id_hook`
LEFT JOIN `xr23z_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.029
ms
|
194 |
Yes
|
Yes
|
/classes/Hook.php:1514
/classes/Hook.php:823 (getAllHookRegistrations)
/classes/Hook.php:966 (getHookModuleExecList)
/classes/Dispatcher.php:587 (exec)
/classes/Dispatcher.php:238 (loadRoutes)
/classes/Dispatcher.php:196 (__construct)
/index.php:78 (getInstance)
|
| 38 |
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 `xr23z_hook_module` hm
STRAIGHT_JOIN `xr23z_hook` h ON (h.id_hook = hm.id_hook AND hm.id_shop = 1)
STRAIGHT_JOIN `xr23z_module` as m ON (m.id_module = hm.id_module)
ORDER BY hm.position |
1.380
ms
|
726 |
|
|
/classes/Hook.php:505
/classes/Hook.php:554 (getHookModuleList)
/classes/tax/TaxManagerFactory.php:67 (getModulesFromHook)
/classes/tax/TaxManagerFactory.php:46 (execHookTaxManagerFactory)
/classes/Product.php:6519 (getManager)
/classes/Product.php:723 (getTaxesRate)
/controllers/front/ProductController.php:149 (__construct)
/tools/profiling/Controller.php:46 (init)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 219 |
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-01-07 00:00:00",
INTERVAL 20 DAY)) > 0 AS new, product_shop.price AS orderprice, psales.`quantity` as sales
FROM `xr23z_category_product` cp
LEFT JOIN `xr23z_product` p
ON p.`id_product` = cp.`id_product`
INNER JOIN xr23z_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1) LEFT JOIN `xr23z_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 xr23z_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 `xr23z_category_lang` cl
ON (product_shop.`id_category_default` = cl.`id_category`
AND cl.`id_lang` = 1 AND cl.id_shop = 1 )
LEFT JOIN `xr23z_product_lang` pl
ON (p.`id_product` = pl.`id_product`
AND pl.`id_lang` = 1 AND pl.id_shop = 1 )
LEFT JOIN `xr23z_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 `xr23z_image_lang` il
ON (image_shop.`id_image` = il.`id_image`
AND il.`id_lang` = 1)
LEFT JOIN `xr23z_manufacturer` m
ON m.`id_manufacturer` = p.`id_manufacturer`
LEFT JOIN `xr23z_product_sale` psales
ON psales.`id_product` = p.`id_product`
WHERE product_shop.`id_shop` = 1
AND cp.`id_category` = 9 AND product_shop.`active` = 1 AND product_shop.`visibility` IN ("both", "catalog") ORDER BY RAND() LIMIT 17 |
1.226
ms
|
7 |
Yes
|
|
/classes/Category.php:1064
/src/Adapter/Category/CategoryProductSearchProvider.php:83 (getProducts)
/src/Adapter/Category/CategoryProductSearchProvider.php:118 (getProductsOrCount)
/modules/ps_categoryproducts/ps_categoryproducts.php:287 (runQuery)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 143 |
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, cl.`name` AS category_default, IFNULL(product_attribute_shop.id_product_attribute, 0) id_product_attribute,
DATEDIFF(
p.`date_add`,
DATE_SUB(
"2026-01-07 00:00:00",
INTERVAL 20 DAY
)
) > 0 AS new
FROM `xr23z_accessory`
LEFT JOIN `xr23z_product` p ON p.`id_product` = `id_product_2`
INNER JOIN xr23z_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `xr23z_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 `xr23z_product_lang` pl ON (
p.`id_product` = pl.`id_product`
AND pl.`id_lang` = 1 AND pl.id_shop = 1
)
LEFT JOIN `xr23z_category_lang` cl ON (
product_shop.`id_category_default` = cl.`id_category`
AND cl.`id_lang` = 1 AND cl.id_shop = 1
)
LEFT JOIN `xr23z_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 `xr23z_image_lang` il ON (image_shop.`id_image` = il.`id_image` AND il.`id_lang` = 1)
LEFT JOIN `xr23z_manufacturer` m ON (p.`id_manufacturer`= m.`id_manufacturer`)
LEFT JOIN xr23z_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 `id_product_1` = 14 AND product_shop.`active` = 1 AND product_shop.`visibility` != 'none'
GROUP BY product_shop.id_product
ORDER BY pl.`name` |
1.096
ms
|
1 |
Yes
|
Yes
|
/classes/Product.php:4431
/controllers/front/ProductController.php:380 (getAccessories)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 382 |
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 `xr23z_cart_product` cp
WHERE cp.`id_product_attribute` = 16
AND cp.`id_cart` = 0 AND cp.`id_product` = 4 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `xr23z_cart_product` cp JOIN `xr23z_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `xr23z_product` pr ON p.`id_product_pack` = pr.`id_product`
WHERE cp.`id_product_attribute` = 16
AND cp.`id_cart` = 0 AND p.`id_product_item` = 4 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.981
ms
|
0 |
|
|
/classes/Cart.php:1421
/classes/Product.php:4078 (getProductQuantity)
/classes/Product.php:5523 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 145 |
SELECT SQL_NO_CACHE ag.`id_attribute_group`, ag.`is_color_group`, agl.`name` AS group_name, agl.`public_name` AS public_group_name, a.`id_attribute`, al.`name` AS attribute_name, a.`color` AS attribute_color, product_attribute_shop.`id_product_attribute`, IFNULL(stock.quantity, 0) as quantity, product_attribute_shop.`price`, product_attribute_shop.`ecotax`, product_attribute_shop.`weight`, product_attribute_shop.`default_on`, pa.`reference`, pa.`ean13`, pa.`mpn`, pa.`upc`, pa.`isbn`, product_attribute_shop.`unit_price_impact`, product_attribute_shop.`minimal_quantity`, product_attribute_shop.`available_date`, ag.`group_type`, pal.`available_now`, pal.`available_later`
FROM `xr23z_product_attribute` pa
INNER JOIN xr23z_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 xr23z_stock_available stock
ON (stock.id_product = `pa`.id_product AND stock.id_product_attribute = IFNULL(`pa`.id_product_attribute, 0) AND stock.id_shop = 1 AND stock.id_shop_group = 0 )
LEFT JOIN `xr23z_product_attribute_lang` `pal` ON pa.id_product_attribute = pal.id_product_attribute AND pal.id_lang = 1
LEFT JOIN `xr23z_product_attribute_combination` `pac` ON pac.id_product_attribute = pa.id_product_attribute
LEFT JOIN `xr23z_attribute` `a` ON a.id_attribute = pac.id_attribute
LEFT JOIN `xr23z_attribute_group` `ag` ON ag.id_attribute_group = a.id_attribute_group
LEFT JOIN `xr23z_attribute_lang` `al` ON a.id_attribute = al.id_attribute
LEFT JOIN `xr23z_attribute_group_lang` `agl` ON ag.id_attribute_group = agl.id_attribute_group
INNER JOIN xr23z_attribute_shop attribute_shop
ON (attribute_shop.id_attribute = a.id_attribute AND attribute_shop.id_shop = 1)
WHERE (pa.id_product = 14) AND (al.id_lang = 1) AND (agl.id_lang = 1)
GROUP BY id_attribute_group, id_product_attribute
ORDER BY ag.position ASC, a.position ASC, agl.name ASC |
0.644
ms
|
1 |
Yes
|
Yes
|
/classes/Product.php:4317
/controllers/front/ProductController.php:607 (getAttributesGroups)
/controllers/front/ProductController.php:415 (assignAttributesGroups)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 446 |
SELECT SQL_NO_CACHE snl.*, snll.*
FROM `xr23z_st_notification` snl
INNER JOIN xr23z_st_notification_shop st_notification_shop
ON (st_notification_shop.id_st_notification = snl.id_st_notification AND st_notification_shop.id_shop = 1)
LEFT JOIN `xr23z_st_notification_lang` snll ON (snl.`id_st_notification` = snll.`id_st_notification`)
WHERE snl.`active`=1 AND snll.`id_lang` = 1
ORDER BY snl.`position` |
0.631
ms
|
1 |
Yes
|
|
/modules/stnotification/classes/StNotificationClass.php:217
/modules/stnotification/stnotification.php:1249 (getNotification)
/modules/stnotification/stnotification.php:1242 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:628 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:182 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 194 |
SELECT SQL_NO_CACHE sms.*, smsl.*
,IF(image_multi_lang<>"" && !ISNULL(image_multi_lang), image_multi_lang, image_lang_default) AS image_multi_lang
FROM `xr23z_st_page_banner` sms
LEFT JOIN `xr23z_st_page_banner_lang` smsl ON (sms.`id_st_page_banner` = smsl.`id_st_page_banner` AND smsl.`id_lang` = 1)
INNER JOIN xr23z_st_page_banner_shop st_page_banner_shop
ON (st_page_banner_shop.id_st_page_banner = sms.id_st_page_banner AND st_page_banner_shop.id_shop = 1)
WHERE 1 AND sms.`active`=1 AND sms.`item_k`=1 AND (sms.`show_subcate` = 0 AND sms.`item_v`="9" OR sms.`show_subcate` = 1 AND sms.`item_v` IN(9,2)) ORDER BY sms.`position`
LIMIT 1 |
0.609
ms
|
1 |
Yes
|
|
/modules/stpagebanner/classes/StPageBannerClass.php:186
/modules/stpagebanner/stpagebanner.php:1434 (getAll)
/modules/stpagebanner/stpagebanner.php:1555 (_prepareHook)
/classes/Hook.php:1251 (hookDisplayBreadcrumb)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:301 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:92 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 65 |
SELECT SQL_NO_CACHE c.*, cl.`id_lang`, cl.`name`, cl.`description`, cl.`additional_description`, cl.`link_rewrite`, cl.`meta_title`, cl.`meta_description`
FROM `xr23z_category` c
INNER JOIN xr23z_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
LEFT JOIN `xr23z_category_lang` cl ON (c.`id_category` = cl.`id_category` AND `id_lang` = 1 AND cl.id_shop = 1 )
LEFT JOIN `xr23z_category_group` cg ON (cg.`id_category` = c.`id_category`)
WHERE `id_parent` = 9
AND `active` = 1
AND cg.`id_group` =1
GROUP BY c.`id_category`
ORDER BY `level_depth` ASC, category_shop.`position` ASC |
0.605
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:916
/controllers/front/ProductController.php:889 (getSubCategories)
/controllers/front/ProductController.php:321 (assignCategory)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 419 |
SELECT SQL_NO_CACHE snl.*, snll.`content`
FROM `xr23z_st_news_letter` snl
INNER JOIN xr23z_st_news_letter_shop st_news_letter_shop
ON (st_news_letter_shop.id_st_news_letter = snl.id_st_news_letter AND st_news_letter_shop.id_shop = 1)
LEFT JOIN `xr23z_st_news_letter_lang` snll ON (snl.`id_st_news_letter` = snll.`id_st_news_letter`)
WHERE snl.`active`=1 AND snll.`id_lang` = 1 AND snl.`location` IN (4)
ORDER BY snl.`position` |
0.592
ms
|
1 |
Yes
|
|
/modules/stnewsletter/classes/StNewsLetterClass.php:244
/modules/stnewsletter/stnewsletter.php:1745 (getNewsLetter)
/modules/stnewsletter/stnewsletter.php:1801 (_prepareHook)
/classes/Hook.php:1251 (hookDisplaySideBar)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:526 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:147 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 185 |
SELECT SQL_NO_CACHE snl.*, snll.*
FROM `xr23z_st_sidebar` snl
INNER JOIN xr23z_st_sidebar_shop st_sidebar_shop
ON (st_sidebar_shop.id_st_sidebar = snl.id_st_sidebar AND st_sidebar_shop.id_shop = 1)
LEFT JOIN `xr23z_st_sidebar_lang` snll ON (snl.`id_st_sidebar` = snll.`id_st_sidebar`)
WHERE snll.`id_lang` = 1 AND snl.`active`=1
ORDER BY snl.`location`, snl.`position` |
0.578
ms
|
5 |
Yes
|
|
/modules/stsidebar/classes/StSidebarClass.php:111
/modules/stsidebar/stsidebar.php:1329 (getAll)
/modules/stsidebar/stsidebar.php:1351 (hookDisplayMobileBar)
/classes/Hook.php:1251 (hookDisplayMobileBarLeft)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/ff/02/12/ff021241fc8d9795aa2c8f534088eec29022dd12_2.file.header.tpl.php:122 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/ff/02/12/ff021241fc8d9795aa2c8f534088eec29022dd12_2.file.header.tpl.php:200 (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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/ff/02/12/ff021241fc8d9795aa2c8f534088eec29022dd12_2.file.header.tpl.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e36500ee11_74762667)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:283 (_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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:86 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 171 |
SELECT SQL_NO_CACHE snl.*, snll.*
FROM `xr23z_st_notification` snl
INNER JOIN xr23z_st_notification_shop st_notification_shop
ON (st_notification_shop.id_st_notification = snl.id_st_notification AND st_notification_shop.id_shop = 1)
LEFT JOIN `xr23z_st_notification_lang` snll ON (snl.`id_st_notification` = snll.`id_st_notification`)
WHERE snl.`active`=1 AND snll.`id_lang` = 1
ORDER BY snl.`position` |
0.574
ms
|
1 |
Yes
|
|
/modules/stnotification/classes/StNotificationClass.php:217
/modules/stnotification/stnotification.php:1249 (getNotification)
/modules/stnotification/stnotification.php:1242 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/ff/02/12/ff021241fc8d9795aa2c8f534088eec29022dd12_2.file.header.tpl.php:57 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/ff/02/12/ff021241fc8d9795aa2c8f534088eec29022dd12_2.file.header.tpl.php:26 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e36500ee11_74762667)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:283 (_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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:86 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 420 |
SELECT SQL_NO_CACHE snl.*, snll.*
FROM `xr23z_st_sidebar` snl
INNER JOIN xr23z_st_sidebar_shop st_sidebar_shop
ON (st_sidebar_shop.id_st_sidebar = snl.id_st_sidebar AND st_sidebar_shop.id_shop = 1)
LEFT JOIN `xr23z_st_sidebar_lang` snll ON (snl.`id_st_sidebar` = snll.`id_st_sidebar`)
WHERE snll.`id_lang` = 1 AND snl.`active`=1
ORDER BY snl.`location`, snl.`position` |
0.541
ms
|
5 |
Yes
|
|
/modules/stsidebar/classes/StSidebarClass.php:111
/modules/stsidebar/stsidebar.php:1375 (getAll)
/classes/Hook.php:1251 (hookDisplaySideBar)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:526 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:147 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 120 |
SELECT SQL_NO_CACHE p.`id_product`,
pl.`link_rewrite`,pl.`name`,
product_shop.`id_category_default`,
MAX(image_shop.`id_image`) id_image
FROM `xr23z_category_product` cp
LEFT JOIN `xr23z_product` p ON p.`id_product` = cp.`id_product`
INNER JOIN xr23z_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `xr23z_product_lang` pl
ON (p.`id_product` = pl.`id_product`
AND pl.`id_lang` = 1 AND pl.id_shop = 1 )
LEFT JOIN `xr23z_image` i
ON (i.`id_product` = p.`id_product`) LEFT JOIN xr23z_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1 AND image_shop.cover=1)
LEFT JOIN `xr23z_image_lang` il
ON (image_shop.`id_image` = il.`id_image`
AND il.`id_lang` = 1)
WHERE product_shop.`id_shop` = 1
AND cp.`id_category` = 9
AND product_shop.`active` = 1
AND product_shop.`visibility` IN ("both", "catalog")
AND cp.`position` <6
GROUP BY product_shop.id_product
ORDER BY cp.`position` DESC LIMIT 1 |
0.530
ms
|
19 |
Yes
|
|
/modules/stproductlinknav/stproductlinknav.php:124
/modules/stproductlinknav/stproductlinknav.php:186 (_prepareHook)
/classes/Hook.php:1251 (hookDisplayProductExtraContent)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/src/Adapter/HookManager.php:81 (exec)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:71 (exec)
/src/Core/Product/ProductExtraContentFinder.php:57 (find)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:103 (find)
/controllers/front/ProductController.php:1198 (present)
/controllers/front/ProductController.php:337 (getTemplateVarProduct)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (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 xr23z_shop_group gs
LEFT JOIN xr23z_shop s
ON s.id_shop_group = gs.id_shop_group
LEFT JOIN xr23z_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.518
ms
|
1 |
Yes
|
|
/classes/shop/Shop.php:719
/classes/shop/Shop.php:778 (cacheShops)
/classes/Configuration.php:300 (getShops)
/classes/shop/Shop.php:402 (getMultiShopValues)
/config/config.inc.php:146 (initialize)
/index.php:40 (require_once)
|
| 422 |
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2026-01-07 00:00:00',
INTERVAL 20 DAY
)
) > 0) as new
FROM xr23z_product p
LEFT JOIN xr23z_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 1
LEFT JOIN xr23z_stock_available sa ON sa.id_product = p.id_product
AND sa.id_product_attribute = 0
AND sa.id_shop = 1 LEFT JOIN xr23z_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product IN (14) |
0.513
ms
|
1 |
|
|
/classes/ProductAssembler.php:70
/classes/ProductAssembler.php:189 (addMissingProductFields)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/stviewedproducts/stviewedproducts.php:208 (assembleProduct)
/modules/stviewedproducts/stviewedproducts.php:224 (getProducts)
/modules/stviewedproducts/stviewedproducts.php:234 (_prepareSimple)
/classes/Hook.php:1251 (hookDisplaySideBar)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:526 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:147 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 0 |
SELECT SQL_NO_CACHE s.id_shop, CONCAT(su.physical_uri, su.virtual_uri) AS uri, su.domain, su.main
FROM xr23z_shop_url su
LEFT JOIN xr23z_shop s ON (s.id_shop = su.id_shop)
WHERE (su.domain = 'presta.denku.ro' OR su.domain_ssl = 'presta.denku.ro')
AND s.active = 1
AND s.deleted = 0
ORDER BY LENGTH(CONCAT(su.physical_uri, su.virtual_uri)) DESC |
0.511
ms
|
1 |
Yes
|
|
/classes/shop/Shop.php:1395
/classes/shop/Shop.php:359 (findShopByHost)
/config/config.inc.php:146 (initialize)
/index.php:40 (require_once)
|
| 221 |
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2026-01-07 00:00:00',
INTERVAL 20 DAY
)
) > 0) as new
FROM xr23z_product p
LEFT JOIN xr23z_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 1
LEFT JOIN xr23z_stock_available sa ON sa.id_product = p.id_product
AND sa.id_product_attribute = 0
AND sa.id_shop = 1 LEFT JOIN xr23z_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product IN (3) |
0.507
ms
|
1 |
|
|
/classes/ProductAssembler.php:70
/classes/ProductAssembler.php:189 (addMissingProductFields)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 12 |
SELECT SQL_NO_CACHE lower(name) as name
FROM `xr23z_hook` h
WHERE (h.active = 1) |
0.503
ms
|
1261 |
|
|
/classes/Hook.php:1622
/classes/Hook.php:924 (getHookStatusByName)
/classes/Dispatcher.php:587 (exec)
/classes/Dispatcher.php:238 (loadRoutes)
/classes/Dispatcher.php:196 (__construct)
/index.php:78 (getInstance)
|
| 15 |
SELECT SQL_NO_CACHE `id_hook`, `name` FROM `xr23z_hook` |
0.486
ms
|
1261 |
|
|
/classes/Hook.php:1582
/classes/Hook.php:251 (getAllHookIds)
/classes/Hook.php:975 (getIdByName)
/classes/Dispatcher.php:587 (exec)
/classes/Dispatcher.php:238 (loadRoutes)
/classes/Dispatcher.php:196 (__construct)
/index.php:78 (getInstance)
|
| 165 |
SELECT SQL_NO_CACHE s.*, sl.*
,IF(image_multi_lang<>"" && !ISNULL(image_multi_lang), image_multi_lang, image_lang_default) AS image_multi_lang
FROM `xr23z_st_sticker` s
LEFT JOIN `xr23z_st_sticker_lang` sl ON (s.`id_st_sticker` = sl.`id_st_sticker` AND sl.`id_lang` = 1)
LEFT JOIN `xr23z_st_sticker_shop` ss ON (s.`id_st_sticker` = ss.`id_st_sticker`)
WHERE ss.`id_shop` = 1 AND s.`active`=1 AND s.`type` IN (1,2,3,4,5,6,7)
ORDER BY s.`position` ASC, s.`id_st_sticker` |
0.482
ms
|
6 |
Yes
|
|
/modules/ststickers/classes/StStickersClass.php:159
/modules/ststickers/ststickers.php:1700 (getAll)
/modules/ststickers/ststickers.php:1431 (getWidgetVariables)
/classes/Hook.php:1251 (hookDisplayHeader)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/classes/controller/FrontController.php:589 (exec)
/override/classes/controller/FrontController.php:11 (initContent)
/controllers/front/ProductController.php:418 (initContent)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 195 |
SELECT SQL_NO_CACHE sms.*, smsl.*
,IF(image_multi_lang<>"" && !ISNULL(image_multi_lang), image_multi_lang, image_lang_default) AS image_multi_lang
FROM `xr23z_st_page_banner` sms
LEFT JOIN `xr23z_st_page_banner_lang` smsl ON (sms.`id_st_page_banner` = smsl.`id_st_page_banner` AND smsl.`id_lang` = 1)
INNER JOIN xr23z_st_page_banner_shop st_page_banner_shop
ON (st_page_banner_shop.id_st_page_banner = sms.id_st_page_banner AND st_page_banner_shop.id_shop = 1)
WHERE 1 AND sms.`active`=1 AND sms.`item_k`=11 AND sms.`item_v`="1" ORDER BY sms.`position`
LIMIT 1 |
0.482
ms
|
1 |
Yes
|
|
/modules/stpagebanner/classes/StPageBannerClass.php:186
/modules/stpagebanner/stpagebanner.php:1436 (getAll)
/modules/stpagebanner/stpagebanner.php:1555 (_prepareHook)
/classes/Hook.php:1251 (hookDisplayBreadcrumb)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:301 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:92 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 226 |
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 `xr23z_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 3 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `xr23z_cart_product` cp JOIN `xr23z_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `xr23z_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` = 3 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.481
ms
|
0 |
|
|
/classes/Cart.php:1421
/classes/Product.php:4078 (getProductQuantity)
/classes/Product.php:5511 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 440 |
SELECT SQL_NO_CACHE id_page_type
FROM xr23z_page_type
WHERE name = 'product' LIMIT 1 |
0.477
ms
|
2 |
|
|
/classes/Page.php:100
/classes/Page.php:55 (getPageTypeByName)
/classes/Connection.php:180 (getCurrentId)
/classes/Connection.php:97 (setNewConnection)
/modules/statsdata/statsdata.php:118 (setPageConnection)
/modules/statsdata/statsdata.php:74 (getScriptCustomerPagesViews)
/classes/Hook.php:1251 (hookDisplayBeforeBodyClosingTag)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:628 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:182 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 334 |
SELECT SQL_NO_CACHE p.*, product_shop.*, pl.*, image_shop.`id_image` id_image, il.`legend`, cl.`name` AS category_default, a.quantity AS pack_quantity, product_shop.`id_category_default`, a.id_product_pack, a.id_product_attribute_item
FROM `xr23z_pack` a
LEFT JOIN `xr23z_product` p ON p.id_product = a.id_product_item
LEFT JOIN `xr23z_product_lang` pl
ON p.id_product = pl.id_product
AND pl.`id_lang` = 1 AND pl.id_shop = 1
LEFT JOIN `xr23z_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 `xr23z_image_lang` il ON (image_shop.`id_image` = il.`id_image` AND il.`id_lang` = 1)
INNER JOIN xr23z_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `xr23z_category_lang` cl
ON product_shop.`id_category_default` = cl.`id_category`
AND cl.`id_lang` = 1 AND cl.id_shop = 1
WHERE product_shop.`id_shop` = 1
AND a.`id_product_pack` = 15
GROUP BY a.`id_product_item`, a.`id_product_attribute_item` |
0.468
ms
|
2 |
|
Yes
|
/classes/Pack.php:387
/classes/Product.php:5539 (getItemTable)
/classes/ProductAssembler.php:191 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 139 |
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 `xr23z_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 14 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `xr23z_cart_product` cp JOIN `xr23z_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `xr23z_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` = 14 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.456
ms
|
0 |
|
|
/classes/Cart.php:1421
/classes/Product.php:4078 (getProductQuantity)
/classes/Product.php:5511 (getQuantity)
/controllers/front/ProductController.php:1202 (getProductProperties)
/controllers/front/ProductController.php:337 (getTemplateVarProduct)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 21 |
SELECT SQL_NO_CACHE m.page, ml.url_rewrite, ml.id_lang
FROM `xr23z_meta` m
LEFT JOIN `xr23z_meta_lang` ml ON (m.id_meta = ml.id_meta AND ml.id_shop = 1 )
ORDER BY LENGTH(ml.url_rewrite) DESC |
0.436
ms
|
56 |
Yes
|
|
/classes/Dispatcher.php:635
/classes/Dispatcher.php:238 (loadRoutes)
/classes/Dispatcher.php:196 (__construct)
/index.php:78 (getInstance)
|
| 416 |
SELECT SQL_NO_CACHE cp.`id_category`, cp.`id_product`, cl.`name` FROM `xr23z_category_product` cp
LEFT JOIN `xr23z_category` c ON (c.id_category = cp.id_category)
LEFT JOIN `xr23z_category_lang` cl ON (cp.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN xr23z_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE cp.`id_product` IN (14) AND cl.`id_lang` = 1
ORDER BY c.`level_depth` DESC |
0.433
ms
|
2 |
Yes
|
|
/modules/ps_googleanalytics/classes/Wrapper/ProductWrapper.php:103
/modules/ps_googleanalytics/classes/Wrapper/ProductWrapper.php:191 (loadCategories)
/modules/ps_googleanalytics/classes/Hook/HookDisplayFooterProduct.php:62 (prepareItemFromProduct)
/modules/ps_googleanalytics/ps_googleanalytics.php:120 (run)
/classes/Hook.php:1251 (hookDisplayFooterProduct)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 126 |
SELECT SQL_NO_CACHE p.`id_product`,
pl.`link_rewrite`,pl.`name`,
product_shop.`id_category_default`,
MAX(image_shop.`id_image`) id_image
FROM `xr23z_category_product` cp
LEFT JOIN `xr23z_product` p ON p.`id_product` = cp.`id_product`
INNER JOIN xr23z_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `xr23z_product_lang` pl
ON (p.`id_product` = pl.`id_product`
AND pl.`id_lang` = 1 AND pl.id_shop = 1 )
LEFT JOIN `xr23z_image` i
ON (i.`id_product` = p.`id_product`) LEFT JOIN xr23z_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1 AND image_shop.cover=1)
LEFT JOIN `xr23z_image_lang` il
ON (image_shop.`id_image` = il.`id_image`
AND il.`id_lang` = 1)
WHERE product_shop.`id_shop` = 1
AND cp.`id_category` = 9
AND product_shop.`active` = 1
AND product_shop.`visibility` IN ("both", "catalog")
AND cp.`position` >6
GROUP BY product_shop.id_product
ORDER BY cp.`position` ASC LIMIT 1 |
0.429
ms
|
1 |
Yes
|
|
/modules/stproductlinknav/stproductlinknav.php:124
/modules/stproductlinknav/stproductlinknav.php:187 (_prepareHook)
/classes/Hook.php:1251 (hookDisplayProductExtraContent)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/src/Adapter/HookManager.php:81 (exec)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:71 (exec)
/src/Core/Product/ProductExtraContentFinder.php:57 (find)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:103 (find)
/controllers/front/ProductController.php:1198 (present)
/controllers/front/ProductController.php:337 (getTemplateVarProduct)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 335 |
SELECT SQL_NO_CACHE pa.`reference` AS attribute_reference, agl.`name` AS group_name, al.`name` AS attribute_name, pai.`id_image` AS id_product_attribute_image
FROM `xr23z_product_attribute` pa
INNER JOIN xr23z_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 `xr23z_product_attribute_combination` pac ON pac.`id_product_attribute` = 19
LEFT JOIN `xr23z_attribute` a ON a.`id_attribute` = pac.`id_attribute`
LEFT JOIN `xr23z_attribute_group` ag ON ag.`id_attribute_group` = a.`id_attribute_group`
LEFT JOIN `xr23z_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 1)
LEFT JOIN `xr23z_attribute_group_lang` agl ON (ag.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 1)
LEFT JOIN `xr23z_product_attribute_image` pai ON (19 = pai.`id_product_attribute`)
WHERE pa.`id_product` = 5 AND pa.`id_product_attribute` = 19
GROUP BY pa.`id_product_attribute`, ag.`id_attribute_group`
ORDER BY pa.`id_product_attribute` |
0.419
ms
|
1 |
|
Yes
|
/classes/Pack.php:407
/classes/Product.php:5539 (getItemTable)
/classes/ProductAssembler.php:191 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 408 |
SELECT SQL_NO_CACHE pa.*, product_attribute_shop.*
FROM `xr23z_product_attribute` pa
INNER JOIN xr23z_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` = 5
GROUP BY pa.`id_product_attribute`
ORDER BY pa.`id_product_attribute` |
0.418
ms
|
3 |
Yes
|
Yes
|
/classes/Product.php:2471
/src/Adapter/Presenter/Product/ProductLazyArray.php:920 (getAttributesResume)
/src/Adapter/Presenter/Product/ProductLazyArray.php:752 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getFlags)
/var/cache/dev/smarty/compile/transformer/53/b8/7e/53b87e48cd68c1673fe52d704a3eeb41c7d46cac_2.file.sticker.tpl.cache.php:48 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e3653af629_15962486)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/transformer/2e/1c/87/2e1c87f7b380ff9e03bb6b63e57add60db8c1479_2.file.product.tpl.cache.php:63 (_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/dev/smarty/compile/transformer/2e/1c/87/2e1c87f7b380ff9e03bb6b63e57add60db8c1479_2.file.product.tpl.cache.php:192 (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/dev/smarty/compile/transformer/2e/1c/87/2e1c87f7b380ff9e03bb6b63e57add60db8c1479_2.file.product.tpl.cache.php:404 (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/dev/smarty/compile/transformer/2e/1c/87/2e1c87f7b380ff9e03bb6b63e57add60db8c1479_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e365386d75_77248485)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/transformer/4a/dd/9c/4add9c4a8c2e435790d5fd17d45d1c288f523876_2.file.product-slider.tpl.cache.php:102 (_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/dev/smarty/compile/transformer/4a/dd/9c/4add9c4a8c2e435790d5fd17d45d1c288f523876_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e36530d2e7_26274938)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/transformer/39/d3/1a/39d31a599d73c039735add7bd5dc7a2a3a72c0ba_2.module.ps_categoryproductsviewstemplateshookps_categoryproducts.tpl.cache.php:53 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_68ff99ca35e378_79665226)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:55 (fetch)
/classes/module/Module.php:2395 (fetch)
/modules/ps_categoryproducts/ps_categoryproducts.php:254 (fetch)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 81 |
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 `xr23z_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_customization` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 14 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `xr23z_cart_product` cp JOIN `xr23z_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `xr23z_product` pr ON p.`id_product_pack` = pr.`id_product`
WHERE cp.`id_product_attribute` = 0
AND cp.`id_customization` = 0
AND cp.`id_cart` = 0 AND p.`id_product_item` = 14 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.396
ms
|
0 |
|
|
/classes/Cart.php:1421
/controllers/front/ProductController.php:1196 (getProductQuantity)
/controllers/front/ProductController.php:337 (getTemplateVarProduct)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 279 |
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 `xr23z_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 13 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `xr23z_cart_product` cp JOIN `xr23z_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `xr23z_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` = 13 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.396
ms
|
0 |
|
|
/classes/Cart.php:1421
/classes/Product.php:4078 (getProductQuantity)
/classes/Product.php:5511 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 325 |
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2026-01-07 00:00:00',
INTERVAL 20 DAY
)
) > 0) as new
FROM xr23z_product p
LEFT JOIN xr23z_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 1
LEFT JOIN xr23z_stock_available sa ON sa.id_product = p.id_product
AND sa.id_product_attribute = 0
AND sa.id_shop = 1 LEFT JOIN xr23z_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product IN (15) |
0.394
ms
|
1 |
|
|
/classes/ProductAssembler.php:70
/classes/ProductAssembler.php:189 (addMissingProductFields)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 301 |
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 `xr23z_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 5 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `xr23z_cart_product` cp JOIN `xr23z_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `xr23z_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` = 5 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.391
ms
|
0 |
|
|
/classes/Cart.php:1421
/classes/Product.php:4078 (getProductQuantity)
/classes/Product.php:5511 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 333 |
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 `xr23z_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 15 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `xr23z_cart_product` cp JOIN `xr23z_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `xr23z_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` = 15 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.383
ms
|
0 |
|
|
/classes/Cart.php:1421
/classes/Pack.php:352 (getProductQuantity)
/classes/Product.php:4062 (getQuantity)
/classes/Product.php:5511 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 228 |
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 `xr23z_cart_product` cp
WHERE cp.`id_product_attribute` = 13
AND cp.`id_cart` = 0 AND cp.`id_product` = 3 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `xr23z_cart_product` cp JOIN `xr23z_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `xr23z_product` pr ON p.`id_product_pack` = pr.`id_product`
WHERE cp.`id_product_attribute` = 13
AND cp.`id_cart` = 0 AND p.`id_product_item` = 3 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.380
ms
|
0 |
|
|
/classes/Cart.php:1421
/classes/Product.php:4078 (getProductQuantity)
/classes/Product.php:5523 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 296 |
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2026-01-07 00:00:00',
INTERVAL 20 DAY
)
) > 0) as new
FROM xr23z_product p
LEFT JOIN xr23z_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 1
LEFT JOIN xr23z_stock_available sa ON sa.id_product = p.id_product
AND sa.id_product_attribute = 0
AND sa.id_shop = 1 LEFT JOIN xr23z_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product IN (5) |
0.378
ms
|
1 |
|
|
/classes/ProductAssembler.php:70
/classes/ProductAssembler.php:189 (addMissingProductFields)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 79 |
SELECT SQL_NO_CACHE COALESCE(SUM(pack_quantity), 0) as pack_quantity,
COALESCE(SUM(standalone_quantity), 0) as standalone_quantity
FROM (SELECT
SUM(cp.`quantity`) as standalone_quantity,
0 as pack_quantity
FROM `xr23z_cart_product` cp
WHERE cp.`id_cart` = 0 AND cp.`id_product` = 14 UNION SELECT
0 as standalone_quantity,
SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `xr23z_cart_product` cp
INNER JOIN `xr23z_pack` p ON cp.`id_product` = p.`id_product_pack`
WHERE cp.`id_cart` = 0 AND p.`id_product_item` = 14) as q LIMIT 1 |
0.375
ms
|
0 |
|
|
/classes/Cart.php:4833
/controllers/front/ProductController.php:521 (getProductQuantityInAllVariants)
/controllers/front/ProductController.php:333 (addCartQuantityNotification)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 423 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `xr23z_image` i
INNER JOIN xr23z_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `xr23z_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 14
ORDER BY `position` |
0.375
ms
|
1 |
Yes
|
|
/modules/stthemeeditor/stthemeeditor.php:5421
/modules/stthemeeditor/stthemeeditor.php:5396 (getProductImages)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stviewedproducts/stviewedproducts.php:208 (assembleProduct)
/modules/stviewedproducts/stviewedproducts.php:224 (getProducts)
/modules/stviewedproducts/stviewedproducts.php:234 (_prepareSimple)
/classes/Hook.php:1251 (hookDisplaySideBar)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:526 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:147 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 274 |
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2026-01-07 00:00:00',
INTERVAL 20 DAY
)
) > 0) as new
FROM xr23z_product p
LEFT JOIN xr23z_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 1
LEFT JOIN xr23z_stock_available sa ON sa.id_product = p.id_product
AND sa.id_product_attribute = 0
AND sa.id_shop = 1 LEFT JOIN xr23z_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product IN (13) |
0.371
ms
|
1 |
|
|
/classes/ProductAssembler.php:70
/classes/ProductAssembler.php:189 (addMissingProductFields)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 163 |
SELECT SQL_NO_CACHE *
FROM `xr23z_st_social` s
LEFT JOIN `xr23z_st_social_lang` sl
ON (s.`id_st_social`=sl.`id_st_social` AND sl.`id_lang`=1)
INNER JOIN xr23z_st_social_shop st_social_shop
ON (st_social_shop.id_st_social = s.id_st_social AND st_social_shop.id_shop = 1) WHERE s.`active`=1 ORDER BY s.`position`, s.`id_st_social` |
0.370
ms
|
4 |
Yes
|
|
/modules/stsocial/classes/StSocialClass.php:107
/modules/stsocial/stsocial.php:1537 (getAll)
/modules/stsocial/stsocial.php:1251 (getWidgetVariables)
/classes/Hook.php:1251 (hookDisplayHeader)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/classes/controller/FrontController.php:589 (exec)
/override/classes/controller/FrontController.php:11 (initContent)
/controllers/front/ProductController.php:418 (initContent)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 303 |
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 `xr23z_cart_product` cp
WHERE cp.`id_product_attribute` = 19
AND cp.`id_cart` = 0 AND cp.`id_product` = 5 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `xr23z_cart_product` cp JOIN `xr23z_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `xr23z_product` pr ON p.`id_product_pack` = pr.`id_product`
WHERE cp.`id_product_attribute` = 19
AND cp.`id_cart` = 0 AND p.`id_product_item` = 5 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.367
ms
|
0 |
|
|
/classes/Cart.php:1421
/classes/Product.php:4078 (getProductQuantity)
/classes/Product.php:5523 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 405 |
SELECT SQL_NO_CACHE pac.id_product_attribute, GROUP_CONCAT(agl.`name`, ' - ',al.`name` ORDER BY agl.`id_attribute_group` SEPARATOR ', ') as attribute_designation
FROM `xr23z_product_attribute_combination` pac
LEFT JOIN `xr23z_attribute` a ON a.`id_attribute` = pac.`id_attribute`
LEFT JOIN `xr23z_attribute_group` ag ON ag.`id_attribute_group` = a.`id_attribute_group`
LEFT JOIN `xr23z_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 1)
LEFT JOIN `xr23z_attribute_group_lang` agl ON (ag.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 1)
WHERE pac.id_product_attribute IN (13,14,15)
GROUP BY pac.id_product_attribute
ORDER BY pac.id_product_attribute |
0.367
ms
|
3 |
|
|
/classes/Product.php:2486
/src/Adapter/Presenter/Product/ProductLazyArray.php:920 (getAttributesResume)
/src/Adapter/Presenter/Product/ProductLazyArray.php:752 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getFlags)
/var/cache/dev/smarty/compile/transformer/53/b8/7e/53b87e48cd68c1673fe52d704a3eeb41c7d46cac_2.file.sticker.tpl.cache.php:48 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e3653af629_15962486)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/transformer/2e/1c/87/2e1c87f7b380ff9e03bb6b63e57add60db8c1479_2.file.product.tpl.cache.php:63 (_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/dev/smarty/compile/transformer/2e/1c/87/2e1c87f7b380ff9e03bb6b63e57add60db8c1479_2.file.product.tpl.cache.php:192 (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/dev/smarty/compile/transformer/2e/1c/87/2e1c87f7b380ff9e03bb6b63e57add60db8c1479_2.file.product.tpl.cache.php:404 (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/dev/smarty/compile/transformer/2e/1c/87/2e1c87f7b380ff9e03bb6b63e57add60db8c1479_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e365386d75_77248485)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/transformer/4a/dd/9c/4add9c4a8c2e435790d5fd17d45d1c288f523876_2.file.product-slider.tpl.cache.php:102 (_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/dev/smarty/compile/transformer/4a/dd/9c/4add9c4a8c2e435790d5fd17d45d1c288f523876_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e36530d2e7_26274938)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/transformer/39/d3/1a/39d31a599d73c039735add7bd5dc7a2a3a72c0ba_2.module.ps_categoryproductsviewstemplateshookps_categoryproducts.tpl.cache.php:53 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_68ff99ca35e378_79665226)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:55 (fetch)
/classes/module/Module.php:2395 (fetch)
/modules/ps_categoryproducts/ps_categoryproducts.php:254 (fetch)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 257 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `xr23z_image` i
INNER JOIN xr23z_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `xr23z_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 12
ORDER BY `position` |
0.356
ms
|
1 |
Yes
|
|
/modules/stthemeeditor/stthemeeditor.php:5421
/modules/stthemeeditor/stthemeeditor.php:5396 (getProductImages)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 34 |
SELECT SQL_NO_CACHE *
FROM `xr23z_product` a
LEFT JOIN `xr23z_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `xr23z_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 14) AND (b.`id_shop` = 1) LIMIT 1 |
0.352
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:219 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:708 (__construct)
/controllers/front/ProductController.php:149 (__construct)
/tools/profiling/Controller.php:46 (init)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 220 |
SELECT SQL_NO_CACHE COUNT(cp.`id_product`) AS total
FROM `xr23z_product` p
INNER JOIN xr23z_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `xr23z_category_product` cp ON p.`id_product` = cp.`id_product`
WHERE cp.`id_category` = 9 AND product_shop.`visibility` IN ("both", "catalog") AND product_shop.`active` = 1 LIMIT 1 |
0.351
ms
|
7 |
|
|
/classes/Category.php:991
/src/Adapter/Category/CategoryProductSearchProvider.php:83 (getProducts)
/src/Adapter/Category/CategoryProductSearchProvider.php:119 (getProductsOrCount)
/modules/ps_categoryproducts/ps_categoryproducts.php:287 (runQuery)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 380 |
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 `xr23z_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 4 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `xr23z_cart_product` cp JOIN `xr23z_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `xr23z_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` = 4 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.351
ms
|
0 |
|
|
/classes/Cart.php:1421
/classes/Product.php:4078 (getProductQuantity)
/classes/Product.php:5511 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 256 |
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 `xr23z_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 12 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `xr23z_cart_product` cp JOIN `xr23z_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `xr23z_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` = 12 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.344
ms
|
0 |
|
|
/classes/Cart.php:1421
/classes/Product.php:4078 (getProductQuantity)
/classes/Product.php:5511 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 404 |
SELECT SQL_NO_CACHE pa.*, product_attribute_shop.*
FROM `xr23z_product_attribute` pa
INNER JOIN xr23z_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` = 3
GROUP BY pa.`id_product_attribute`
ORDER BY pa.`id_product_attribute` |
0.343
ms
|
3 |
Yes
|
Yes
|
/classes/Product.php:2471
/src/Adapter/Presenter/Product/ProductLazyArray.php:920 (getAttributesResume)
/src/Adapter/Presenter/Product/ProductLazyArray.php:752 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getFlags)
/var/cache/dev/smarty/compile/transformer/53/b8/7e/53b87e48cd68c1673fe52d704a3eeb41c7d46cac_2.file.sticker.tpl.cache.php:48 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e3653af629_15962486)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/transformer/2e/1c/87/2e1c87f7b380ff9e03bb6b63e57add60db8c1479_2.file.product.tpl.cache.php:63 (_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/dev/smarty/compile/transformer/2e/1c/87/2e1c87f7b380ff9e03bb6b63e57add60db8c1479_2.file.product.tpl.cache.php:192 (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/dev/smarty/compile/transformer/2e/1c/87/2e1c87f7b380ff9e03bb6b63e57add60db8c1479_2.file.product.tpl.cache.php:404 (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/dev/smarty/compile/transformer/2e/1c/87/2e1c87f7b380ff9e03bb6b63e57add60db8c1479_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e365386d75_77248485)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/transformer/4a/dd/9c/4add9c4a8c2e435790d5fd17d45d1c288f523876_2.file.product-slider.tpl.cache.php:102 (_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/dev/smarty/compile/transformer/4a/dd/9c/4add9c4a8c2e435790d5fd17d45d1c288f523876_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e36530d2e7_26274938)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/transformer/39/d3/1a/39d31a599d73c039735add7bd5dc7a2a3a72c0ba_2.module.ps_categoryproductsviewstemplateshookps_categoryproducts.tpl.cache.php:53 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_68ff99ca35e378_79665226)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:55 (fetch)
/classes/module/Module.php:2395 (fetch)
/modules/ps_categoryproducts/ps_categoryproducts.php:254 (fetch)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 413 |
SELECT SQL_NO_CACHE pac.id_product_attribute, GROUP_CONCAT(agl.`name`, ' - ',al.`name` ORDER BY agl.`id_attribute_group` SEPARATOR ', ') as attribute_designation
FROM `xr23z_product_attribute_combination` pac
LEFT JOIN `xr23z_attribute` a ON a.`id_attribute` = pac.`id_attribute`
LEFT JOIN `xr23z_attribute_group` ag ON ag.`id_attribute_group` = a.`id_attribute_group`
LEFT JOIN `xr23z_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 1)
LEFT JOIN `xr23z_attribute_group_lang` agl ON (ag.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 1)
WHERE pac.id_product_attribute IN (16,17,18)
GROUP BY pac.id_product_attribute
ORDER BY pac.id_product_attribute |
0.339
ms
|
3 |
|
|
/classes/Product.php:2486
/src/Adapter/Presenter/Product/ProductLazyArray.php:920 (getAttributesResume)
/src/Adapter/Presenter/Product/ProductLazyArray.php:752 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getFlags)
/var/cache/dev/smarty/compile/transformer/53/b8/7e/53b87e48cd68c1673fe52d704a3eeb41c7d46cac_2.file.sticker.tpl.cache.php:48 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e3653af629_15962486)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/transformer/2e/1c/87/2e1c87f7b380ff9e03bb6b63e57add60db8c1479_2.file.product.tpl.cache.php:63 (_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/dev/smarty/compile/transformer/2e/1c/87/2e1c87f7b380ff9e03bb6b63e57add60db8c1479_2.file.product.tpl.cache.php:192 (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/dev/smarty/compile/transformer/2e/1c/87/2e1c87f7b380ff9e03bb6b63e57add60db8c1479_2.file.product.tpl.cache.php:404 (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/dev/smarty/compile/transformer/2e/1c/87/2e1c87f7b380ff9e03bb6b63e57add60db8c1479_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e365386d75_77248485)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/transformer/4a/dd/9c/4add9c4a8c2e435790d5fd17d45d1c288f523876_2.file.product-slider.tpl.cache.php:102 (_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/dev/smarty/compile/transformer/4a/dd/9c/4add9c4a8c2e435790d5fd17d45d1c288f523876_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e36530d2e7_26274938)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/transformer/39/d3/1a/39d31a599d73c039735add7bd5dc7a2a3a72c0ba_2.module.ps_categoryproductsviewstemplateshookps_categoryproducts.tpl.cache.php:53 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_68ff99ca35e378_79665226)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:55 (fetch)
/classes/module/Module.php:2395 (fetch)
/modules/ps_categoryproducts/ps_categoryproducts.php:254 (fetch)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 251 |
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2026-01-07 00:00:00',
INTERVAL 20 DAY
)
) > 0) as new
FROM xr23z_product p
LEFT JOIN xr23z_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 1
LEFT JOIN xr23z_stock_available sa ON sa.id_product = p.id_product
AND sa.id_product_attribute = 0
AND sa.id_shop = 1 LEFT JOIN xr23z_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product IN (12) |
0.337
ms
|
1 |
|
|
/classes/ProductAssembler.php:70
/classes/ProductAssembler.php:189 (addMissingProductFields)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 77 |
SELECT SQL_NO_CACHE *,
( IF (`id_shop` = 1, 2, 0) + IF (`id_country` = 36, 4, 0) + IF (`id_currency` = 1, 8, 0) + IF (`id_group` = 1, 16, 0) + IF (`id_customer` = 0, 32, 0)) AS `score`
FROM `xr23z_specific_price`
WHERE
`id_shop` IN (0, 1) AND
`id_currency` IN (0, 1) AND
`id_country` IN (0, 36) AND
`id_group` IN (0, 1) AND `id_product` = 0 AND `id_customer` = 0 AND `id_cart` = 0 AND (`from` = '0000-00-00 00:00:00' OR '2026-01-07 00:00:00' >= `from`) AND (`to` = '0000-00-00 00:00:00' OR '2026-01-07 00:00:00' <= `to`)
ORDER BY `from_quantity` ASC, `id_specific_price_rule` ASC, `score` DESC, `to` DESC, `from` DESC |
0.334
ms
|
1 |
Yes
|
|
/classes/SpecificPrice.php:612
/controllers/front/ProductController.php:570 (getQuantityDiscounts)
/controllers/front/ProductController.php:327 (assignPriceAndTax)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 108 |
SELECT SQL_NO_CACHE sec.*, secl.*, st_easy_content_shop.`id_shop`
FROM `xr23z_st_easy_content` sec
INNER JOIN xr23z_st_easy_content_shop st_easy_content_shop
ON (st_easy_content_shop.id_st_easy_content = sec.id_st_easy_content AND st_easy_content_shop.id_shop = 1)
LEFT JOIN `xr23z_st_easy_content_lang` secl ON (sec.`id_st_easy_content` = secl.`id_st_easy_content`)
WHERE secl.`id_lang` = 1 AND sec.`active`=1 AND sec.`type`=9 AND ((sec.id_manufacturer = 0 AND sec.id_category = 0 AND sec.id_product = "") OR (sec.id_manufacturer > 0 AND sec.id_manufacturer=2) OR (sec.id_category > 0 AND sec.id_category IN(9,2)) OR (sec.id_product LIKE "%,14,%"))
ORDER BY sec.`position` LIMIT 0, 50 |
0.332
ms
|
1 |
Yes
|
|
/modules/steasycontent/classes/StEasyContentClass.php:343
/modules/steasycontent/steasycontent.php:2626 (getListContent)
/modules/steasycontent/steasycontent.php:3822 (_prepareHook)
/classes/Hook.php:1251 (hookDisplayProductExtraContent)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/src/Adapter/HookManager.php:81 (exec)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:71 (exec)
/src/Core/Product/ProductExtraContentFinder.php:57 (find)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:103 (find)
/controllers/front/ProductController.php:1198 (present)
/controllers/front/ProductController.php:337 (getTemplateVarProduct)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 78 |
SELECT SQL_NO_CACHE DISTINCT a.`id_attribute`, a.`id_attribute_group`, al.`name` as `attribute`, agl.`name` as `group`,pa.`reference`, pa.`ean13`, pa.`isbn`, pa.`upc`, pa.`mpn`
FROM `xr23z_attribute` a
LEFT JOIN `xr23z_attribute_lang` al
ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 1)
LEFT JOIN `xr23z_attribute_group_lang` agl
ON (a.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 1)
LEFT JOIN `xr23z_product_attribute_combination` pac
ON (a.`id_attribute` = pac.`id_attribute`)
LEFT JOIN `xr23z_product_attribute` pa
ON (pac.`id_product_attribute` = pa.`id_product_attribute`)
INNER JOIN xr23z_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
INNER JOIN xr23z_attribute_shop attribute_shop
ON (attribute_shop.id_attribute = pac.id_attribute AND attribute_shop.id_shop = 1)
WHERE pa.`id_product` = 14 |
0.329
ms
|
1 |
|
|
/classes/Product.php:7171
/controllers/front/ProductController.php:829 (getAttributesInformationsByProduct)
/controllers/front/ProductController.php:330 (assignAttributesCombinations)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 375 |
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2026-01-07 00:00:00',
INTERVAL 20 DAY
)
) > 0) as new
FROM xr23z_product p
LEFT JOIN xr23z_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 1
LEFT JOIN xr23z_stock_available sa ON sa.id_product = p.id_product
AND sa.id_product_attribute = 0
AND sa.id_shop = 1 LEFT JOIN xr23z_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product IN (4) |
0.328
ms
|
1 |
|
|
/classes/ProductAssembler.php:70
/classes/ProductAssembler.php:189 (addMissingProductFields)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 366 |
SELECT SQL_NO_CACHE agl.`name` AS group_name, al.`name` AS attribute_name, pa.`reference` AS attribute_reference
FROM `xr23z_product_attribute` pa
INNER JOIN xr23z_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 `xr23z_product_attribute_combination` pac ON pac.`id_product_attribute` = pa.`id_product_attribute`
LEFT JOIN `xr23z_attribute` a ON a.`id_attribute` = pac.`id_attribute`
LEFT JOIN `xr23z_attribute_group` ag ON ag.`id_attribute_group` = a.`id_attribute_group`
LEFT JOIN `xr23z_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 1)
LEFT JOIN `xr23z_attribute_group_lang` agl ON (ag.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 1)
WHERE pa.`id_product_attribute` = 19
GROUP BY pa.`id_product_attribute`, ag.`id_attribute_group`
ORDER BY pa.`id_product_attribute` |
0.327
ms
|
1 |
|
Yes
|
/classes/Pack.php:209
/classes/Pack.php:138 (getItems)
/src/Adapter/Presenter/Product/ProductLazyArray.php:1128 (noPackPrice)
/src/Adapter/Presenter/Product/ProductLazyArray.php:140 (addPriceInformation)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:50 (__construct)
/modules/ps_categoryproducts/ps_categoryproducts.php:326 (present)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 409 |
SELECT SQL_NO_CACHE pac.id_product_attribute, GROUP_CONCAT(agl.`name`, ' - ',al.`name` ORDER BY agl.`id_attribute_group` SEPARATOR ', ') as attribute_designation
FROM `xr23z_product_attribute_combination` pac
LEFT JOIN `xr23z_attribute` a ON a.`id_attribute` = pac.`id_attribute`
LEFT JOIN `xr23z_attribute_group` ag ON ag.`id_attribute_group` = a.`id_attribute_group`
LEFT JOIN `xr23z_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 1)
LEFT JOIN `xr23z_attribute_group_lang` agl ON (ag.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 1)
WHERE pac.id_product_attribute IN (19,20,21)
GROUP BY pac.id_product_attribute
ORDER BY pac.id_product_attribute |
0.324
ms
|
3 |
|
|
/classes/Product.php:2486
/src/Adapter/Presenter/Product/ProductLazyArray.php:920 (getAttributesResume)
/src/Adapter/Presenter/Product/ProductLazyArray.php:752 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getFlags)
/var/cache/dev/smarty/compile/transformer/53/b8/7e/53b87e48cd68c1673fe52d704a3eeb41c7d46cac_2.file.sticker.tpl.cache.php:48 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e3653af629_15962486)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/transformer/2e/1c/87/2e1c87f7b380ff9e03bb6b63e57add60db8c1479_2.file.product.tpl.cache.php:63 (_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/dev/smarty/compile/transformer/2e/1c/87/2e1c87f7b380ff9e03bb6b63e57add60db8c1479_2.file.product.tpl.cache.php:192 (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/dev/smarty/compile/transformer/2e/1c/87/2e1c87f7b380ff9e03bb6b63e57add60db8c1479_2.file.product.tpl.cache.php:404 (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/dev/smarty/compile/transformer/2e/1c/87/2e1c87f7b380ff9e03bb6b63e57add60db8c1479_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e365386d75_77248485)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/transformer/4a/dd/9c/4add9c4a8c2e435790d5fd17d45d1c288f523876_2.file.product-slider.tpl.cache.php:102 (_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/dev/smarty/compile/transformer/4a/dd/9c/4add9c4a8c2e435790d5fd17d45d1c288f523876_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e36530d2e7_26274938)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/transformer/39/d3/1a/39d31a599d73c039735add7bd5dc7a2a3a72c0ba_2.module.ps_categoryproductsviewstemplateshookps_categoryproducts.tpl.cache.php:53 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_68ff99ca35e378_79665226)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:55 (fetch)
/classes/module/Module.php:2395 (fetch)
/modules/ps_categoryproducts/ps_categoryproducts.php:254 (fetch)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 101 |
SELECT SQL_NO_CACHE sec.*, secl.*, st_easy_content_shop.`id_shop`
FROM `xr23z_st_easy_content` sec
INNER JOIN xr23z_st_easy_content_shop st_easy_content_shop
ON (st_easy_content_shop.id_st_easy_content = sec.id_st_easy_content AND st_easy_content_shop.id_shop = 1)
LEFT JOIN `xr23z_st_easy_content_lang` secl ON (sec.`id_st_easy_content` = secl.`id_st_easy_content`)
WHERE secl.`id_lang` = 1 AND sec.`active`=1 AND sec.`type`=10 AND ((sec.id_manufacturer = 0 AND sec.id_category = 0 AND sec.id_product = "") OR (sec.id_manufacturer > 0 AND sec.id_manufacturer=2) OR (sec.id_category > 0 AND sec.id_category IN(9,2)) OR (sec.id_product LIKE "%,14,%"))
ORDER BY sec.`position` LIMIT 0, 50 |
0.323
ms
|
1 |
Yes
|
|
/modules/steasycontent/classes/StEasyContentClass.php:343
/modules/steasycontent/steasycontent.php:2626 (getListContent)
/modules/steasycontent/steasycontent.php:3819 (_prepareHook)
/classes/Hook.php:1251 (hookDisplayProductExtraContent)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/src/Adapter/HookManager.php:81 (exec)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:71 (exec)
/src/Core/Product/ProductExtraContentFinder.php:57 (find)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:103 (find)
/controllers/front/ProductController.php:1198 (present)
/controllers/front/ProductController.php:337 (getTemplateVarProduct)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 16 |
SELECT SQL_NO_CACHE m.`id_module`, m.`name`, ms.`id_module`as `mshop`
FROM `xr23z_module` m
LEFT JOIN `xr23z_module_shop` ms
ON m.`id_module` = ms.`id_module`
AND ms.`id_shop` = 1 |
0.322
ms
|
131 |
|
|
/classes/module/Module.php:340
/modules/ps_checkout/ps_checkout.php:123 (__construct)
:undefined (__construct)
/src/Core/Foundation/IoC/Container.php:124 (newInstance)
/src/Core/Foundation/IoC/Container.php:154 (makeInstanceFromClassName)
/src/Core/Foundation/IoC/Container.php:167 (doMake)
/src/Adapter/ServiceLocator.php:70 (make)
/classes/module/Module.php:1364 (get)
/tools/profiling/Module.php:35 (coreLoadModule)
/classes/module/Module.php:1343 (coreLoadModule)
/classes/Hook.php:1122 (getInstanceByName)
/classes/Dispatcher.php:587 (exec)
/classes/Dispatcher.php:238 (loadRoutes)
/classes/Dispatcher.php:196 (__construct)
/index.php:78 (getInstance)
|
| 223 |
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 `xr23z_product` p
INNER JOIN `xr23z_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `xr23z_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` = 3) |
0.312
ms
|
3 |
|
|
/classes/Product.php:3577
/classes/Product.php:3433 (priceCalculation)
/classes/Product.php:5405 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 66 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `xr23z_category` c
LEFT JOIN `xr23z_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN xr23z_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 1
AND c.`id_parent` = 2
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.311
ms
|
3 |
Yes
|
Yes
|
/classes/Category.php:1148
/classes/Category.php:1088 (getChildren)
/controllers/front/ProductController.php:899 (getHomeCategories)
/controllers/front/ProductController.php:321 (assignCategory)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 115 |
SELECT SQL_NO_CACHE od.*
FROM xr23z_orders o
LEFT JOIN xr23z_order_detail od
ON o.id_order = od.id_order
LEFT JOIN xr23z_order_history oh
ON oh.`id_order` = o.`id_order`
LEFT JOIN xr23z_order_state os
ON oh.`id_order_state` = os.`id_order_state`
WHERE o.id_customer = 0
AND od.product_id = 14
AND os.`logable` = 1
ORDER BY o.date_add DESC |
0.309
ms
|
1 |
Yes
|
|
/modules/stproductcomments/classes/StProductCommentClass.php:621
/modules/stproductcomments/classes/StProductCommentClass.php:651 (getOrderInfo)
/modules/stproductcomments/stproductcomments.php:1786 (canComment)
/modules/stproductcomments/stproductcomments.php:1819 (_prepare_comments)
/classes/Hook.php:1251 (hookDisplayProductExtraContent)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/src/Adapter/HookManager.php:81 (exec)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:71 (exec)
/src/Core/Product/ProductExtraContentFinder.php:57 (find)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:103 (find)
/controllers/front/ProductController.php:1198 (present)
/controllers/front/ProductController.php:337 (getTemplateVarProduct)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 68 |
SELECT SQL_NO_CACHE * FROM `xr23z_image_type` WHERE 1 AND `manufacturers` = 1 AND `theme_name` = 'transformer' OR `theme_name` IS NULL ORDER BY `width` DESC, `height` DESC, `name`ASC |
0.307
ms
|
24 |
Yes
|
|
/classes/ImageType.php:113
/src/Adapter/Image/ImageRetriever.php:216 (getImagesTypes)
/src/Adapter/Presenter/Manufacturer/ManufacturerLazyArray.php:97 (getImage)
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getImage)
/controllers/front/ProductController.php:863 (offsetGet)
/controllers/front/ProductController.php:324 (assignManufacturer)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 85 |
SELECT SQL_NO_CACHE *
FROM `xr23z_product` a
LEFT JOIN `xr23z_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 14) LIMIT 1 |
0.303
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:219 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:708 (__construct)
/modules/steasycontent/classes/StEasyContentClass.php:278 (__construct)
/modules/steasycontent/steasycontent.php:2626 (getListContent)
/modules/steasycontent/steasycontent.php:3819 (_prepareHook)
/classes/Hook.php:1251 (hookDisplayProductExtraContent)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/src/Adapter/HookManager.php:81 (exec)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:71 (exec)
/src/Core/Product/ProductExtraContentFinder.php:57 (find)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:103 (find)
/controllers/front/ProductController.php:1198 (present)
/controllers/front/ProductController.php:337 (getTemplateVarProduct)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 412 |
SELECT SQL_NO_CACHE pa.*, product_attribute_shop.*
FROM `xr23z_product_attribute` pa
INNER JOIN xr23z_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` = 4
GROUP BY pa.`id_product_attribute`
ORDER BY pa.`id_product_attribute` |
0.303
ms
|
3 |
Yes
|
Yes
|
/classes/Product.php:2471
/src/Adapter/Presenter/Product/ProductLazyArray.php:920 (getAttributesResume)
/src/Adapter/Presenter/Product/ProductLazyArray.php:752 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getFlags)
/var/cache/dev/smarty/compile/transformer/53/b8/7e/53b87e48cd68c1673fe52d704a3eeb41c7d46cac_2.file.sticker.tpl.cache.php:48 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e3653af629_15962486)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/transformer/2e/1c/87/2e1c87f7b380ff9e03bb6b63e57add60db8c1479_2.file.product.tpl.cache.php:63 (_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/dev/smarty/compile/transformer/2e/1c/87/2e1c87f7b380ff9e03bb6b63e57add60db8c1479_2.file.product.tpl.cache.php:192 (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/dev/smarty/compile/transformer/2e/1c/87/2e1c87f7b380ff9e03bb6b63e57add60db8c1479_2.file.product.tpl.cache.php:404 (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/dev/smarty/compile/transformer/2e/1c/87/2e1c87f7b380ff9e03bb6b63e57add60db8c1479_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e365386d75_77248485)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/transformer/4a/dd/9c/4add9c4a8c2e435790d5fd17d45d1c288f523876_2.file.product-slider.tpl.cache.php:102 (_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/dev/smarty/compile/transformer/4a/dd/9c/4add9c4a8c2e435790d5fd17d45d1c288f523876_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e36530d2e7_26274938)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/transformer/39/d3/1a/39d31a599d73c039735add7bd5dc7a2a3a72c0ba_2.module.ps_categoryproductsviewstemplateshookps_categoryproducts.tpl.cache.php:53 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_68ff99ca35e378_79665226)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:55 (fetch)
/classes/module/Module.php:2395 (fetch)
/modules/ps_categoryproducts/ps_categoryproducts.php:254 (fetch)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 11 |
SELECT SQL_NO_CACHE COUNT(DISTINCT l.id_lang) FROM `xr23z_lang` l
JOIN xr23z_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.300
ms
|
1 |
|
|
/classes/Language.php:1204
/classes/Language.php:1510 (countActiveLanguages)
/classes/Dispatcher.php:508 (isMultiLanguageActivated)
/classes/Dispatcher.php:227 (setRequestUri)
/classes/Dispatcher.php:196 (__construct)
/index.php:78 (getInstance)
|
| 212 |
SELECT SQL_NO_CACHE name, value, pf.id_feature, f.position, fvl.id_feature_value
FROM xr23z_feature_product pf
LEFT JOIN xr23z_feature_lang fl ON (fl.id_feature = pf.id_feature AND fl.id_lang = 1)
LEFT JOIN xr23z_feature_value fv ON (fv.id_feature_value = pf.id_feature_value)
LEFT JOIN xr23z_feature_value_lang fvl ON (fvl.id_feature_value = pf.id_feature_value AND fvl.id_lang = 1)
LEFT JOIN xr23z_feature f ON (f.id_feature = pf.id_feature AND fl.id_lang = 1)
INNER JOIN xr23z_feature_shop feature_shop
ON (feature_shop.id_feature = f.id_feature AND feature_shop.id_shop = 1)
WHERE pf.id_product = 14
ORDER BY f.position ASC, fvl.value ASC |
0.300
ms
|
2 |
Yes
|
|
/classes/Product.php:5704
/src/Adapter/Presenter/Product/ProductLazyArray.php:470 (getFrontFeaturesStatic)
/src/Adapter/Presenter/Product/ProductLazyArray.php:487 (getFeatures)
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getGroupedFeatures)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/a4/ef/79/a4ef79883dab518b491b549e6e9de0ab3167c998_2.file.product-details.tpl.php:108 (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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/a4/ef/79/a4ef79883dab518b491b549e6e9de0ab3167c998_2.file.product-details.tpl.php:56 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742d8813_29196329)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/4b/84/1c/4b841cab7d1db9c57ebe993e2f5e78e0a6f360a0_2.file.product-tabs.tpl.php:71 (_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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/4b/84/1c/4b841cab7d1db9c57ebe993e2f5e78e0a6f360a0_2.file.product-tabs.tpl.php:272 (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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/4b/84/1c/4b841cab7d1db9c57ebe993e2f5e78e0a6f360a0_2.file.product-tabs.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742bd346_99061344)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/88/d0/01/88d001883bab322019b04f6ee9e4a47175c15b08_2.file.product-second.tpl.php:42 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742857a9_07429601)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:148 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 367 |
SELECT SQL_NO_CACHE *
FROM `xr23z_product` a
LEFT JOIN `xr23z_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `xr23z_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 7) AND (b.`id_shop` = 1) LIMIT 1 |
0.297
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:219 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:708 (__construct)
/classes/Pack.php:192 (__construct)
/classes/Pack.php:138 (getItems)
/src/Adapter/Presenter/Product/ProductLazyArray.php:1128 (noPackPrice)
/src/Adapter/Presenter/Product/ProductLazyArray.php:140 (addPriceInformation)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:50 (__construct)
/modules/ps_categoryproducts/ps_categoryproducts.php:326 (present)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 137 |
SELECT SQL_NO_CACHE v.*,vl.*
FROM `xr23z_st_video` v
LEFT JOIN `xr23z_st_video_lang` vl
ON (v.`id_st_video`=vl.`id_st_video` AND vl.`id_lang`=1)
INNER JOIN xr23z_st_video_shop st_video_shop
ON (st_video_shop.id_st_video = v.id_st_video AND st_video_shop.id_shop = 1)
WHERE v.`type` = 0
AND v.`active`=1
AND (v.`location` = 0 OR (v.`location` = 3 AND (v.`id_manufacturer` = 0 OR v.`id_manufacturer`=2)) OR (v.`location` = 2 AND (v.`id_category` = 0 OR v.`id_category` IN(2,9))) OR (v.`location` = 1 AND (v.`id_products` LIKE "%,14,%"))) |
0.297
ms
|
1 |
|
|
/modules/stvideo/classes/StVideoClass.php:193
/modules/stvideo/stvideo.php:1362 (getForProduct)
/classes/Hook.php:1251 (hookDisplayProductExtraContent)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/src/Adapter/HookManager.php:81 (exec)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:71 (exec)
/src/Core/Product/ProductExtraContentFinder.php:57 (find)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:103 (find)
/controllers/front/ProductController.php:1198 (present)
/controllers/front/ProductController.php:337 (getTemplateVarProduct)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 121 |
SELECT SQL_NO_CACHE *
FROM `xr23z_product` a
LEFT JOIN `xr23z_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `xr23z_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 13) AND (b.`id_shop` = 1) LIMIT 1 |
0.284
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:219 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:708 (__construct)
/classes/Link.php:112 (__construct)
/classes/Link.php:184 (getProductObject)
/modules/stproductlinknav/stproductlinknav.php:128 (getProductLink)
/modules/stproductlinknav/stproductlinknav.php:186 (_prepareHook)
/classes/Hook.php:1251 (hookDisplayProductExtraContent)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/src/Adapter/HookManager.php:81 (exec)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:71 (exec)
/src/Core/Product/ProductExtraContentFinder.php:57 (find)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:103 (find)
/controllers/front/ProductController.php:1198 (present)
/controllers/front/ProductController.php:337 (getTemplateVarProduct)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 18 |
SELECT SQL_NO_CACHE m.`id_module`, m.`name`, ms.`id_module`as `mshop`
FROM `xr23z_module` m
LEFT JOIN `xr23z_module_shop` ms
ON m.`id_module` = ms.`id_module`
AND ms.`id_shop` = 1 |
0.277
ms
|
131 |
|
|
/classes/module/Module.php:340
/modules/stblog/stblog.php:89 (__construct)
:undefined (__construct)
/src/Core/Foundation/IoC/Container.php:124 (newInstance)
/src/Core/Foundation/IoC/Container.php:154 (makeInstanceFromClassName)
/src/Core/Foundation/IoC/Container.php:167 (doMake)
/src/Adapter/ServiceLocator.php:70 (make)
/classes/module/Module.php:1364 (get)
/tools/profiling/Module.php:35 (coreLoadModule)
/classes/module/Module.php:1343 (coreLoadModule)
/classes/Hook.php:1122 (getInstanceByName)
/classes/Dispatcher.php:587 (exec)
/classes/Dispatcher.php:238 (loadRoutes)
/classes/Dispatcher.php:196 (__construct)
/index.php:78 (getInstance)
|
| 91 |
SELECT SQL_NO_CACHE DISTINCT c.*
FROM `xr23z_category` c
LEFT JOIN `xr23z_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.`id_lang` = 1)
WHERE `level_depth` = 1 |
0.277
ms
|
1 |
|
|
/classes/Category.php:2211
/classes/Category.php:1115 (getCategoriesWithoutParent)
/classes/Category.php:1567 (getRootCategory)
/modules/steasycontent/classes/StEasyContentClass.php:299 (getParentsCategories)
/modules/steasycontent/steasycontent.php:2626 (getListContent)
/modules/steasycontent/steasycontent.php:3819 (_prepareHook)
/classes/Hook.php:1251 (hookDisplayProductExtraContent)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/src/Adapter/HookManager.php:81 (exec)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:71 (exec)
/src/Core/Product/ProductExtraContentFinder.php:57 (find)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:103 (find)
/controllers/front/ProductController.php:1198 (present)
/controllers/front/ProductController.php:337 (getTemplateVarProduct)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 305 |
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 `xr23z_attribute` a
LEFT JOIN `xr23z_attribute_lang` al
ON (al.`id_attribute` = a.`id_attribute` AND al.`id_lang` = 1)
LEFT JOIN `xr23z_product_attribute_combination` pac
ON (pac.`id_attribute` = a.`id_attribute`)
LEFT JOIN `xr23z_product_attribute` pa
ON (pa.`id_product_attribute` = pac.`id_product_attribute`)
INNER JOIN xr23z_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 `xr23z_product_attribute_lang` pal
ON (pal.`id_product_attribute` = pac.`id_product_attribute` AND pal.`id_lang` = 1)
LEFT JOIN `xr23z_attribute_group_lang` agl
ON (a.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 1)
WHERE pa.`id_product` = 5
AND pac.`id_product_attribute` = 19
AND agl.`id_lang` = 1 |
0.270
ms
|
1 |
|
|
/classes/Product.php:7137
/classes/Product.php:5542 (getAttributesParams)
/classes/ProductAssembler.php:191 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 222 |
SELECT SQL_NO_CACHE 1 FROM `xr23z_specific_price` WHERE id_product = 3 LIMIT 1 |
0.270
ms
|
1 |
|
|
/classes/SpecificPrice.php:432
/classes/SpecificPrice.php:520 (couldHaveSpecificPrice)
/classes/Product.php:3543 (getSpecificPrice)
/classes/Product.php:3433 (priceCalculation)
/classes/Product.php:5405 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 19 |
SELECT SQL_NO_CACHE m.`id_module`, m.`name`, ms.`id_module`as `mshop`
FROM `xr23z_module` m
LEFT JOIN `xr23z_module_shop` ms
ON m.`id_module` = ms.`id_module`
AND ms.`id_shop` = 1 |
0.269
ms
|
131 |
|
|
/classes/module/Module.php:340
/modules/stblogarchives/stblogarchives.php:40 (__construct)
:undefined (__construct)
/src/Core/Foundation/IoC/Container.php:124 (newInstance)
/src/Core/Foundation/IoC/Container.php:154 (makeInstanceFromClassName)
/src/Core/Foundation/IoC/Container.php:167 (doMake)
/src/Adapter/ServiceLocator.php:70 (make)
/classes/module/Module.php:1364 (get)
/tools/profiling/Module.php:35 (coreLoadModule)
/classes/module/Module.php:1343 (coreLoadModule)
/classes/Hook.php:1122 (getInstanceByName)
/classes/Dispatcher.php:587 (exec)
/classes/Dispatcher.php:238 (loadRoutes)
/classes/Dispatcher.php:196 (__construct)
/index.php:78 (getInstance)
|
| 202 |
SELECT SQL_NO_CACHE od.*
FROM xr23z_orders o
LEFT JOIN xr23z_order_detail od
ON o.id_order = od.id_order
LEFT JOIN xr23z_order_history oh
ON oh.`id_order` = o.`id_order`
LEFT JOIN xr23z_order_state os
ON oh.`id_order_state` = os.`id_order_state`
WHERE o.id_customer = 0
AND od.product_id = 14
AND os.`logable` = 1
ORDER BY o.date_add DESC |
0.267
ms
|
1 |
Yes
|
|
/modules/stproductcomments/classes/StProductCommentClass.php:621
/modules/stproductcomments/classes/StProductCommentClass.php:651 (getOrderInfo)
/modules/stproductcomments/stproductcomments.php:1697 (canComment)
/modules/stproductcomments/stproductcomments.php:2382 (renderCommentExtra)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/c5/fe/40/c5fe40dd64cdd89eba28b52f0981bc2787b40b5c_2.file.product-first.tpl.php:358 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/c5/fe/40/c5fe40dd64cdd89eba28b52f0981bc2787b40b5c_2.file.product-first.tpl.php:59 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473e00b51_98407663)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:142 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 438 |
INSERT INTO `xr23z_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') |
0.266
ms
|
1 |
|
|
/classes/ObjectModel.php:543
/classes/ObjectModel.php:497 (add)
/classes/Guest.php:256 (save)
/modules/statsdata/statsdata.php:82 (setNewGuest)
/modules/statsdata/statsdata.php:73 (getScriptPlugins)
/classes/Hook.php:1251 (hookDisplayBeforeBodyClosingTag)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:628 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:182 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 61 |
SELECT SQL_NO_CACHE m.`id_module`, m.`name`, ms.`id_module`as `mshop`
FROM `xr23z_module` m
LEFT JOIN `xr23z_module_shop` ms
ON m.`id_module` = ms.`id_module`
AND ms.`id_shop` = 1 |
0.265
ms
|
131 |
|
|
/classes/module/Module.php:340
/modules/ps_facebook/ps_facebook.php:104 (__construct)
:undefined (__construct)
/src/Core/Foundation/IoC/Container.php:124 (newInstance)
/src/Core/Foundation/IoC/Container.php:154 (makeInstanceFromClassName)
/src/Core/Foundation/IoC/Container.php:167 (doMake)
/src/Adapter/ServiceLocator.php:70 (make)
/classes/module/Module.php:1364 (get)
/tools/profiling/Module.php:35 (coreLoadModule)
/classes/module/Module.php:1343 (coreLoadModule)
/classes/Hook.php:1122 (getInstanceByName)
/classes/controller/FrontController.php:957 (exec)
/tools/profiling/Controller.php:53 (setMedia)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 127 |
SELECT SQL_NO_CACHE *
FROM `xr23z_product` a
LEFT JOIN `xr23z_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `xr23z_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 15) AND (b.`id_shop` = 1) LIMIT 1 |
0.264
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:219 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:708 (__construct)
/classes/Link.php:112 (__construct)
/classes/Link.php:184 (getProductObject)
/modules/stproductlinknav/stproductlinknav.php:128 (getProductLink)
/modules/stproductlinknav/stproductlinknav.php:187 (_prepareHook)
/classes/Hook.php:1251 (hookDisplayProductExtraContent)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/src/Adapter/HookManager.php:81 (exec)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:71 (exec)
/src/Core/Product/ProductExtraContentFinder.php:57 (find)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:103 (find)
/controllers/front/ProductController.php:1198 (present)
/controllers/front/ProductController.php:337 (getTemplateVarProduct)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 154 |
SELECT SQL_NO_CACHE *
FROM `xr23z_category` a0
LEFT JOIN `xr23z_category_lang` `a1` ON (a0.`id_category` = a1.`id_category`)
WHERE (a0.`nleft` < 15) AND (a0.`nright` > 16) AND (a1.`id_lang` = 1) AND (a1.`id_shop` = 1)
ORDER BY a0.`nleft` asc |
0.263
ms
|
2 |
Yes
|
|
/classes/PrestaShopCollection.php:383
/classes/PrestaShopCollection.php:440 (getAll)
/controllers/front/ProductController.php:1339 (rewind)
/classes/controller/FrontController.php:1833 (getBreadcrumbLinks)
/classes/controller/FrontController.php:527 (getBreadcrumb)
/classes/controller/FrontController.php:585 (assignGeneralPurposeVariables)
/override/classes/controller/FrontController.php:11 (initContent)
/controllers/front/ProductController.php:418 (initContent)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 191 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `xr23z_category` c
LEFT JOIN `xr23z_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 9 LIMIT 1 |
0.262
ms
|
1 |
|
|
/classes/Category.php:1577
/modules/stpagebanner/classes/StPageBannerClass.php:173 (getParentsCategories)
/modules/stpagebanner/stpagebanner.php:1434 (getAll)
/modules/stpagebanner/stpagebanner.php:1555 (_prepareHook)
/classes/Hook.php:1251 (hookDisplayBreadcrumb)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:301 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:92 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 109 |
SELECT SQL_NO_CACHE pc.`id_st_product_comment`, pcg.`grade`, pccl.`name`, pcc.`id_st_product_comment_criterion`
FROM `xr23z_st_product_comment` pc
LEFT JOIN `xr23z_st_product_comment_grade` pcg ON (pcg.`id_st_product_comment` = pc.`id_st_product_comment`)
LEFT JOIN `xr23z_st_product_comment_criterion` pcc ON (pcc.`id_st_product_comment_criterion` = pcg.`id_st_product_comment_criterion`)
LEFT JOIN `xr23z_st_product_comment_criterion_lang` pccl ON (pccl.`id_st_product_comment_criterion` = pcg.`id_st_product_comment_criterion` AND pccl.`id_lang` = 1)
WHERE pc.`id_product` = 14
AND pc.`id_parent` = 0
AND pcc.`active` = 1
AND pc.`id_shop` = 1 AND pc.`validate` = 1 |
0.259
ms
|
1 |
|
|
/modules/stproductcomments/classes/StProductCommentClass.php:268
/modules/stproductcomments/classes/StProductCommentClass.php:392 (getGradeByProduct)
/modules/stproductcomments/stproductcomments.php:1742 (getAveragesByProduct)
/modules/stproductcomments/stproductcomments.php:1819 (_prepare_comments)
/classes/Hook.php:1251 (hookDisplayProductExtraContent)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/src/Adapter/HookManager.php:81 (exec)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:71 (exec)
/src/Core/Product/ProductExtraContentFinder.php:57 (find)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:103 (find)
/controllers/front/ProductController.php:1198 (present)
/controllers/front/ProductController.php:337 (getTemplateVarProduct)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 114 |
SELECT SQL_NO_CACHE pc.*,
(SELECT count(*) FROM `xr23z_st_product_comment_usefulness` pcu WHERE pcu.`id_st_product_comment` = pc.`id_st_product_comment` AND pcu.`usefulness` = 1) as total_useful,
(SELECT count(*) FROM `xr23z_st_product_comment_usefulness` pcu WHERE pcu.`id_st_product_comment` = pc.`id_st_product_comment`) as total_advice,
(SELECT count(*) FROM `xr23z_st_product_comment` pcs WHERE pcs.`id_parent` = pc.`id_st_product_comment` AND pcs.`validate` = 1) as total_reply,
IF(c.`id_customer`, CONCAT(c.`firstname`, ' ', c.`lastname`), pc.customer_name) customer_name
FROM `xr23z_st_product_comment` pc
LEFT JOIN `xr23z_customer` c ON c.`id_customer` = pc.`id_customer`
WHERE pc.`id_shop` = 1 AND pc.`validate` = 1 AND pc.`id_product` = 14
AND pc.`id_parent` = 0
ORDER BY pc.`featured`, `date_add`
Limit 0, 1 |
0.259
ms
|
1 |
Yes
|
|
/modules/stproductcomments/classes/StProductCommentClass.php:192
/modules/stproductcomments/stproductcomments.php:1766 (getListComments)
/modules/stproductcomments/stproductcomments.php:1819 (_prepare_comments)
/classes/Hook.php:1251 (hookDisplayProductExtraContent)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/src/Adapter/HookManager.php:81 (exec)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:71 (exec)
/src/Core/Product/ProductExtraContentFinder.php:57 (find)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:103 (find)
/controllers/front/ProductController.php:1198 (present)
/controllers/front/ProductController.php:337 (getTemplateVarProduct)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 211 |
SELECT SQL_NO_CACHE count(0)
FROM `xr23z_st_wishlist_product` whp
LEFT JOIN `xr23z_st_wishlist` wh ON (wh.`id_st_wishlist`=whp.`id_st_wishlist`)
WHERE whp.`id_product` = 14 AND wh.`id_shop`= 1 LIMIT 1 |
0.258
ms
|
1 |
|
|
/modules/stwishlist/classes/StWishListClass.php:348
/modules/stwishlist/stwishlist.php:1123 (getProductTotal)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/c5/fe/40/c5fe40dd64cdd89eba28b52f0981bc2787b40b5c_2.file.product-first.tpl.php:135 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473e00b51_98407663)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:142 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 421 |
SELECT SQL_NO_CACHE *
FROM `xr23z_currency` c
INNER JOIN xr23z_currency_shop currency_shop
ON (currency_shop.id_currency = c.id_currency AND currency_shop.id_shop = 1)
WHERE c.`deleted` = 0 AND c.`active` = 1 ORDER BY `iso_code` ASC |
0.257
ms
|
1 |
Yes
|
|
/classes/Currency.php:687
/classes/Currency.php:669 (findAll)
/modules/stcurrencyselector/stcurrencyselector.php:436 (getCurrencies)
/modules/stcurrencyselector/stcurrencyselector.php:384 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformer/f5/b0/57/f5b0572dbf09cbea15f05c9a207c164e666d1a4f_2.module.stsidebarviewstemplateshookstsidebar.tpl.php:56 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_68ff98d4d1bb01_29578676)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDevTemplate.php:55 (fetch)
/classes/module/Module.php:2395 (fetch)
/modules/stsidebar/stsidebar.php:1383 (fetch)
/classes/Hook.php:1251 (hookDisplaySideBar)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:526 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:147 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 230 |
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 `xr23z_attribute` a
LEFT JOIN `xr23z_attribute_lang` al
ON (al.`id_attribute` = a.`id_attribute` AND al.`id_lang` = 1)
LEFT JOIN `xr23z_product_attribute_combination` pac
ON (pac.`id_attribute` = a.`id_attribute`)
LEFT JOIN `xr23z_product_attribute` pa
ON (pa.`id_product_attribute` = pac.`id_product_attribute`)
INNER JOIN xr23z_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 `xr23z_product_attribute_lang` pal
ON (pal.`id_product_attribute` = pac.`id_product_attribute` AND pal.`id_lang` = 1)
LEFT JOIN `xr23z_attribute_group_lang` agl
ON (a.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 1)
WHERE pa.`id_product` = 3
AND pac.`id_product_attribute` = 13
AND agl.`id_lang` = 1 |
0.256
ms
|
1 |
|
|
/classes/Product.php:7137
/classes/Product.php:5542 (getAttributesParams)
/classes/ProductAssembler.php:191 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 20 |
SELECT SQL_NO_CACHE m.`id_module`, m.`name`, ms.`id_module`as `mshop`
FROM `xr23z_module` m
LEFT JOIN `xr23z_module_shop` ms
ON m.`id_module` = ms.`id_module`
AND ms.`id_shop` = 1 |
0.255
ms
|
131 |
|
|
/classes/module/Module.php:340
/modules/stblogsearch/stblogsearch.php:56 (__construct)
:undefined (__construct)
/src/Core/Foundation/IoC/Container.php:124 (newInstance)
/src/Core/Foundation/IoC/Container.php:154 (makeInstanceFromClassName)
/src/Core/Foundation/IoC/Container.php:167 (doMake)
/src/Adapter/ServiceLocator.php:70 (make)
/classes/module/Module.php:1364 (get)
/tools/profiling/Module.php:35 (coreLoadModule)
/classes/module/Module.php:1343 (coreLoadModule)
/classes/Hook.php:1122 (getInstanceByName)
/classes/Dispatcher.php:587 (exec)
/classes/Dispatcher.php:238 (loadRoutes)
/classes/Dispatcher.php:196 (__construct)
/index.php:78 (getInstance)
|
| 111 |
SELECT SQL_NO_CACHE pcc.*, pccl.`name`
FROM `xr23z_st_product_comment_criterion` pcc
JOIN `xr23z_st_product_comment_criterion_lang` pccl ON (pcc.id_st_product_comment_criterion = pccl.id_st_product_comment_criterion)
WHERE pccl.`id_lang` = 1 AND active = 1
ORDER BY pccl.`name` ASC |
0.254
ms
|
4 |
Yes
|
|
/modules/stproductcomments/classes/StProductCommentCriterionClass.php:94
/modules/stproductcomments/stproductcomments.php:1750 (getCriterions)
/modules/stproductcomments/stproductcomments.php:1819 (_prepare_comments)
/classes/Hook.php:1251 (hookDisplayProductExtraContent)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/src/Adapter/HookManager.php:81 (exec)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:71 (exec)
/src/Core/Product/ProductExtraContentFinder.php:57 (find)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:103 (find)
/controllers/front/ProductController.php:1198 (present)
/controllers/front/ProductController.php:337 (getTemplateVarProduct)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 40 |
SELECT SQL_NO_CACHE tr.*
FROM `xr23z_tax_rule` tr
JOIN `xr23z_tax_rules_group` trg ON (tr.`id_tax_rules_group` = trg.`id_tax_rules_group`)
WHERE trg.`active` = 1
AND tr.`id_country` = 36
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.253
ms
|
1 |
|
|
/classes/tax/TaxRulesTaxManager.php:100
/classes/Product.php:6520 (getTaxCalculator)
/classes/Product.php:723 (getTaxesRate)
/controllers/front/ProductController.php:149 (__construct)
/tools/profiling/Controller.php:46 (init)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 140 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `xr23z_image` i
INNER JOIN xr23z_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `xr23z_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 14
ORDER BY `position` |
0.252
ms
|
1 |
Yes
|
|
/classes/Product.php:3259
/src/Adapter/Image/ImageRetriever.php:76 (getImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:941 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:137 (fillImages)
/src/Adapter/Presenter/Product/ProductPresenter.php:100 (__construct)
/controllers/front/ProductController.php:1223 (present)
/controllers/front/ProductController.php:337 (getTemplateVarProduct)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 168 |
SELECT SQL_NO_CACHE 1 FROM xr23z_cart_product cp INNER JOIN xr23z_product p
ON (p.id_product = cp.id_product) INNER JOIN xr23z_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.252
ms
|
1 |
|
|
/classes/Cart.php:3961
/classes/Cart.php:3942 (hasProducts)
/classes/Cart.php:2012 (isVirtualCart)
/src/Adapter/Presenter/Cart/CartLazyArray.php:138 (getOrderTotal)
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getTotals)
/src/Adapter/Presenter/AbstractLazyArray.php:124 (offsetGet)
:undefined (jsonSerialize)
/classes/Smarty/SmartyLazyRegister.php:81 (json_encode)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/8b/27/1b/8b271bd5da6c9085b2166c412e6e293968145a02_2.file.javascript.tpl.php:65 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364eb51e3_82407748)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/d8/31/1f/d8311f7307b583642db05b9b413d6ed861c8a6bd_2.file.head.tpl.php:334 (_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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/d8/31/1f/d8311f7307b583642db05b9b413d6ed861c8a6bd_2.file.head.tpl.php:58 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e9b954_85693664)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:201 (_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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:40 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 384 |
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 `xr23z_attribute` a
LEFT JOIN `xr23z_attribute_lang` al
ON (al.`id_attribute` = a.`id_attribute` AND al.`id_lang` = 1)
LEFT JOIN `xr23z_product_attribute_combination` pac
ON (pac.`id_attribute` = a.`id_attribute`)
LEFT JOIN `xr23z_product_attribute` pa
ON (pa.`id_product_attribute` = pac.`id_product_attribute`)
INNER JOIN xr23z_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 `xr23z_product_attribute_lang` pal
ON (pal.`id_product_attribute` = pac.`id_product_attribute` AND pal.`id_lang` = 1)
LEFT JOIN `xr23z_attribute_group_lang` agl
ON (a.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 1)
WHERE pa.`id_product` = 4
AND pac.`id_product_attribute` = 16
AND agl.`id_lang` = 1 |
0.248
ms
|
1 |
|
|
/classes/Product.php:7137
/classes/Product.php:5542 (getAttributesParams)
/classes/ProductAssembler.php:191 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 22 |
SELECT SQL_NO_CACHE * FROM `xr23z_currency` c ORDER BY `iso_code` ASC |
0.245
ms
|
1 |
Yes
|
|
/classes/Currency.php:708
/src/Adapter/Currency/CurrencyDataProvider.php:84 (findAllInstalled)
/src/Core/Localization/Currency/DataLayer/CurrencyInstalled.php:89 (findAllInstalled)
/src/Core/Localization/Currency/CurrencyDataSource.php:96 (getAllInstalledCurrencyIsoCodes)
/src/Core/Localization/Currency/Repository.php:87 (getAllInstalledCurrenciesData)
/src/Core/Localization/Locale/Repository.php:206 (getAllInstalledCurrencies)
/src/Core/Localization/Locale/Repository.php:149 (getPriceSpecifications)
/classes/controller/Controller.php:219 (getLocale)
/classes/controller/FrontController.php:242 (init)
/controllers/front/ProductController.php:127 (init)
/tools/profiling/Controller.php:46 (init)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 146 |
SELECT SQL_NO_CACHE * FROM `xr23z_image_type` WHERE 1 AND `categories` = 1 AND `theme_name` = 'transformer' OR `theme_name` IS NULL ORDER BY `width` DESC, `height` DESC, `name`ASC |
0.241
ms
|
24 |
Yes
|
|
/classes/ImageType.php:113
/src/Adapter/Image/ImageRetriever.php:375 (getImagesTypes)
/classes/controller/FrontController.php:1541 (getNoPictureImage)
/classes/controller/FrontController.php:1693 (getTemplateVarUrls)
/classes/controller/FrontController.php:522 (getTemplateVarShop)
/classes/controller/FrontController.php:585 (assignGeneralPurposeVariables)
/override/classes/controller/FrontController.php:11 (initContent)
/controllers/front/ProductController.php:418 (initContent)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 326 |
SELECT SQL_NO_CACHE 1 FROM `xr23z_specific_price` WHERE id_product = 15 LIMIT 1 |
0.241
ms
|
1 |
|
|
/classes/SpecificPrice.php:432
/classes/SpecificPrice.php:520 (couldHaveSpecificPrice)
/classes/Product.php:3543 (getSpecificPrice)
/classes/Product.php:3433 (priceCalculation)
/classes/Product.php:5405 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 225 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `xr23z_stock_available`
WHERE (id_product = 3) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.241
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:269
/classes/Product.php:4066 (getQuantityAvailableByProduct)
/classes/Product.php:5511 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 138 |
SELECT SQL_NO_CACHE v.*,vl.*
FROM `xr23z_st_video` v
LEFT JOIN `xr23z_st_video_lang` vl
ON (v.`id_st_video`=vl.`id_st_video` AND vl.`id_lang`=1)
INNER JOIN xr23z_st_video_shop st_video_shop
ON (st_video_shop.id_st_video = v.id_st_video AND st_video_shop.id_shop = 1)
WHERE v.`type` = 1
AND v.`active`=1
AND (v.`location` = 0 OR (v.`location` = 3 AND (v.`id_manufacturer` = 0 OR v.`id_manufacturer`=2)) OR (v.`location` = 2 AND (v.`id_category` = 0 OR v.`id_category` IN(2,9))) OR (v.`location` = 1 AND (v.`id_products` LIKE "%,14,%"))) |
0.240
ms
|
1 |
|
|
/modules/stvideo/classes/StVideoClass.php:193
/modules/stvideo/stvideo.php:1363 (getForProduct)
/classes/Hook.php:1251 (hookDisplayProductExtraContent)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/src/Adapter/HookManager.php:81 (exec)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:71 (exec)
/src/Core/Product/ProductExtraContentFinder.php:57 (find)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:103 (find)
/controllers/front/ProductController.php:1198 (present)
/controllers/front/ProductController.php:337 (getTemplateVarProduct)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 327 |
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 `xr23z_product` p
INNER JOIN `xr23z_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `xr23z_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` = 15) |
0.238
ms
|
1 |
|
|
/classes/Product.php:3577
/classes/Product.php:3433 (priceCalculation)
/classes/Product.php:5405 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 271 |
SELECT SQL_NO_CACHE *
FROM `xr23z_product` a
LEFT JOIN `xr23z_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `xr23z_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 12) AND (b.`id_shop` = 1) LIMIT 1 |
0.237
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:219 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:708 (__construct)
/src/Adapter/Image/ImageRetriever.php:69 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:941 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:137 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:50 (__construct)
/modules/ps_categoryproducts/ps_categoryproducts.php:326 (present)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 17 |
SELECT SQL_NO_CACHE name, alias FROM `xr23z_hook_alias` |
0.236
ms
|
86 |
|
|
/classes/Hook.php:375
/classes/Hook.php:171 (getCanonicalHookNames)
/classes/Hook.php:402 (normalizeHookName)
/classes/Hook.php:426 (getAllKnownNames)
/classes/Hook.php:1133 (isHookCallableOn)
/classes/Dispatcher.php:587 (exec)
/classes/Dispatcher.php:238 (loadRoutes)
/classes/Dispatcher.php:196 (__construct)
/index.php:78 (getInstance)
|
| 193 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `xr23z_category` c
LEFT JOIN `xr23z_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 15 AND c.`nright` >= 16 AND c.`nleft` >= 2 AND c.`nright` <= 17 ORDER BY `nleft` DESC |
0.236
ms
|
2 |
Yes
|
|
/classes/Category.php:1587
/modules/stpagebanner/classes/StPageBannerClass.php:173 (getParentsCategories)
/modules/stpagebanner/stpagebanner.php:1434 (getAll)
/modules/stpagebanner/stpagebanner.php:1555 (_prepareHook)
/classes/Hook.php:1251 (hookDisplayBreadcrumb)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:301 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:92 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 280 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `xr23z_image` i
INNER JOIN xr23z_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `xr23z_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 13
ORDER BY `position` |
0.236
ms
|
1 |
Yes
|
|
/modules/stthemeeditor/stthemeeditor.php:5421
/modules/stthemeeditor/stthemeeditor.php:5396 (getProductImages)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 401 |
SELECT SQL_NO_CACHE *
FROM `xr23z_product` a
LEFT JOIN `xr23z_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `xr23z_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 4) AND (b.`id_shop` = 1) LIMIT 1 |
0.236
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:219 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:708 (__construct)
/src/Adapter/Image/ImageRetriever.php:69 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:941 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:137 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:50 (__construct)
/modules/ps_categoryproducts/ps_categoryproducts.php:326 (present)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 70 |
SELECT SQL_NO_CACHE tr.*
FROM `xr23z_tax_rule` tr
JOIN `xr23z_tax_rules_group` trg ON (tr.`id_tax_rules_group` = trg.`id_tax_rules_group`)
WHERE trg.`active` = 1
AND tr.`id_country` = 36
AND tr.`id_tax_rules_group` = 0
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.235
ms
|
0 |
|
|
/classes/tax/TaxRulesTaxManager.php:100
/classes/Product.php:3669 (getTaxCalculator)
/classes/Product.php:3433 (priceCalculation)
/controllers/front/ProductController.php:560 (getPriceStatic)
/controllers/front/ProductController.php:327 (assignPriceAndTax)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 104 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `xr23z_category` c
LEFT JOIN `xr23z_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 2 AND c.`nright` >= 17 AND c.`nleft` >= 2 AND c.`nright` <= 17 ORDER BY `nleft` DESC |
0.232
ms
|
1 |
Yes
|
|
/classes/Category.php:1587
/modules/steasycontent/classes/StEasyContentClass.php:299 (getParentsCategories)
/modules/steasycontent/steasycontent.php:2626 (getListContent)
/modules/steasycontent/steasycontent.php:3822 (_prepareHook)
/classes/Hook.php:1251 (hookDisplayProductExtraContent)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/src/Adapter/HookManager.php:81 (exec)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:71 (exec)
/src/Core/Product/ProductExtraContentFinder.php:57 (find)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:103 (find)
/controllers/front/ProductController.php:1198 (present)
/controllers/front/ProductController.php:337 (getTemplateVarProduct)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 176 |
SELECT SQL_NO_CACHE *
FROM `xr23z_currency` c
INNER JOIN xr23z_currency_shop currency_shop
ON (currency_shop.id_currency = c.id_currency AND currency_shop.id_shop = 1)
WHERE c.`deleted` = 0 AND c.`active` = 1 ORDER BY `iso_code` ASC |
0.232
ms
|
1 |
Yes
|
|
/classes/Currency.php:687
/classes/Currency.php:669 (findAll)
/modules/stcurrencyselector/stcurrencyselector.php:436 (getCurrencies)
/modules/stcurrencyselector/stcurrencyselector.php:384 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/ff/02/12/ff021241fc8d9795aa2c8f534088eec29022dd12_2.file.header.tpl.php:81 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/ff/02/12/ff021241fc8d9795aa2c8f534088eec29022dd12_2.file.header.tpl.php:30 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e36500ee11_74762667)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:283 (_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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:86 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 308 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `xr23z_image` i
INNER JOIN xr23z_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `xr23z_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 5
ORDER BY `position` |
0.229
ms
|
1 |
Yes
|
|
/modules/stthemeeditor/stthemeeditor.php:5421
/modules/stthemeeditor/stthemeeditor.php:5396 (getProductImages)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 439 |
SELECT SQL_NO_CACHE `id_guest`
FROM `xr23z_connections`
WHERE `id_guest` = 3710
AND `date_add` > '2026-01-07 08:32:00'
AND id_shop IN (1)
ORDER BY `date_add` DESC LIMIT 1 |
0.228
ms
|
1 |
Yes
|
|
/classes/Connection.php:168
/classes/Connection.php:97 (setNewConnection)
/modules/statsdata/statsdata.php:118 (setPageConnection)
/modules/statsdata/statsdata.php:74 (getScriptCustomerPagesViews)
/classes/Hook.php:1251 (hookDisplayBeforeBodyClosingTag)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:628 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:182 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 248 |
SELECT SQL_NO_CACHE *
FROM `xr23z_product` a
LEFT JOIN `xr23z_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `xr23z_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 3) AND (b.`id_shop` = 1) LIMIT 1 |
0.227
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:219 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:708 (__construct)
/src/Adapter/Image/ImageRetriever.php:69 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:941 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:137 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:50 (__construct)
/modules/ps_categoryproducts/ps_categoryproducts.php:326 (present)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 62 |
SELECT SQL_NO_CACHE `id_module` FROM `xr23z_module` WHERE `name` = "ps_accounts" LIMIT 1 |
0.226
ms
|
1 |
|
|
/src/Adapter/Module/ModuleDataProvider.php:251
/src/Adapter/Module/ModuleDataProvider.php:223 (getModuleIdByName)
/src/Core/Module/ModuleManager.php:297 (isInstalled)
/modules/psxmarketingwithgoogle/vendor/prestashop/prestashop-accounts-installer/src/Installer/Installer.php:83 (isInstalled)
/modules/psxmarketingwithgoogle/vendor/prestashop/prestashop-accounts-installer/src/Installer/Facade/PsAccounts.php:44 (isModuleInstalled)
/modules/psxmarketingwithgoogle/vendor/prestashop/prestashop-accounts-installer/src/Installer/Facade/PsAccounts.php:62 (getService)
/modules/ps_checkout/src/Repository/PsAccountRepository.php:37 (getPsAccountsService)
/var/cache/dev/Ps_checkout9433FrontContainer.php:1189 (__construct)
/var/cache/dev/Ps_checkout9433FrontContainer.php:1279 (getPsAccountRepositoryService)
/var/cache/dev/Ps_checkout9433FrontContainer.php:1269 (getMerchantValidatorService)
/vendor/symfony/dependency-injection/Container.php:231 (getFrontControllerValidatorService)
/vendor/symfony/dependency-injection/Container.php:211 (make)
/modules/psxmarketingwithgoogle/vendor/prestashop/module-lib-service-container/src/DependencyInjection/ServiceContainer.php:64 (get)
/modules/ps_checkout/ps_checkout.php:1340 (getService)
/modules/ps_checkout/ps_checkout.php:770 (getService)
/classes/Hook.php:1251 (hookActionFrontControllerSetMedia)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/classes/controller/FrontController.php:957 (exec)
/tools/profiling/Controller.php:53 (setMedia)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 107 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `xr23z_category` c
LEFT JOIN `xr23z_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 15 AND c.`nright` >= 16 AND c.`nleft` >= 2 AND c.`nright` <= 17 ORDER BY `nleft` DESC |
0.223
ms
|
2 |
Yes
|
|
/classes/Category.php:1587
/modules/steasycontent/classes/StEasyContentClass.php:299 (getParentsCategories)
/modules/steasycontent/steasycontent.php:2626 (getListContent)
/modules/steasycontent/steasycontent.php:3822 (_prepareHook)
/classes/Hook.php:1251 (hookDisplayProductExtraContent)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/src/Adapter/HookManager.php:81 (exec)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:71 (exec)
/src/Core/Product/ProductExtraContentFinder.php:57 (find)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:103 (find)
/controllers/front/ProductController.php:1198 (present)
/controllers/front/ProductController.php:337 (getTemplateVarProduct)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 102 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `xr23z_category` c
LEFT JOIN `xr23z_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 2 LIMIT 1 |
0.222
ms
|
1 |
|
|
/classes/Category.php:1577
/modules/steasycontent/classes/StEasyContentClass.php:299 (getParentsCategories)
/modules/steasycontent/steasycontent.php:2626 (getListContent)
/modules/steasycontent/steasycontent.php:3822 (_prepareHook)
/classes/Hook.php:1251 (hookDisplayProductExtraContent)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/src/Adapter/HookManager.php:81 (exec)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:71 (exec)
/src/Core/Product/ProductExtraContentFinder.php:57 (find)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:103 (find)
/controllers/front/ProductController.php:1198 (present)
/controllers/front/ProductController.php:337 (getTemplateVarProduct)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 183 |
SELECT SQL_NO_CACHE `id_module` FROM `xr23z_module` WHERE `name` = "stcompare" LIMIT 1 |
0.220
ms
|
1 |
|
|
/classes/module/Module.php:2758
/classes/module/Module.php:2244 (getModuleIdByName)
/classes/Hook.php:1257 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/ff/02/12/ff021241fc8d9795aa2c8f534088eec29022dd12_2.file.header.tpl.php:84 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/ff/02/12/ff021241fc8d9795aa2c8f534088eec29022dd12_2.file.header.tpl.php:30 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e36500ee11_74762667)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:283 (_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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:86 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 135 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `xr23z_category` c
LEFT JOIN `xr23z_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 15 AND c.`nright` >= 16 AND c.`nleft` >= 2 AND c.`nright` <= 17 ORDER BY `nleft` DESC |
0.220
ms
|
2 |
Yes
|
|
/classes/Category.php:1587
/modules/ststickers/classes/StStickersMapClass.php:174 (getParentsCategories)
/modules/ststickers/ststickers.php:1741 (getForProduct)
/classes/Hook.php:1251 (hookDisplayProductExtraContent)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/src/Adapter/HookManager.php:81 (exec)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:71 (exec)
/src/Core/Product/ProductExtraContentFinder.php:57 (find)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:103 (find)
/controllers/front/ProductController.php:1198 (present)
/controllers/front/ProductController.php:337 (getTemplateVarProduct)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 278 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `xr23z_stock_available`
WHERE (id_product = 13) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.218
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:269
/classes/Product.php:4066 (getQuantityAvailableByProduct)
/classes/Product.php:5511 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 428 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `xr23z_category` c
LEFT JOIN `xr23z_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 2 AND c.`nright` >= 17 AND c.`nleft` >= 2 AND c.`nright` <= 17 ORDER BY `nleft` DESC |
0.217
ms
|
1 |
Yes
|
|
/classes/Category.php:1587
/modules/ststickers/classes/StStickersMapClass.php:174 (getParentsCategories)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stviewedproducts/stviewedproducts.php:208 (assembleProduct)
/modules/stviewedproducts/stviewedproducts.php:224 (getProducts)
/modules/stviewedproducts/stviewedproducts.php:234 (_prepareSimple)
/classes/Hook.php:1251 (hookDisplaySideBar)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:526 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:147 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 218 |
SELECT SQL_NO_CACHE ctg.`id_group`
FROM xr23z_category_group ctg
WHERE ctg.`id_category` = 9 AND ctg.`id_group` = 1 LIMIT 1 |
0.216
ms
|
1 |
|
|
/classes/Category.php:1744
/classes/Category.php:973 (checkAccess)
/src/Adapter/Category/CategoryProductSearchProvider.php:83 (getProducts)
/src/Adapter/Category/CategoryProductSearchProvider.php:118 (getProductsOrCount)
/modules/ps_categoryproducts/ps_categoryproducts.php:287 (runQuery)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 402 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `xr23z_image` i
INNER JOIN xr23z_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `xr23z_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 4
ORDER BY `position` |
0.216
ms
|
1 |
Yes
|
|
/classes/Product.php:3259
/src/Adapter/Image/ImageRetriever.php:76 (getImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:941 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:137 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:50 (__construct)
/modules/ps_categoryproducts/ps_categoryproducts.php:326 (present)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 330 |
SELECT SQL_NO_CACHE *
FROM `xr23z_product_lang`
WHERE `id_product` = 15 AND `id_shop` = 1 |
0.215
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:81
/classes/ObjectModel.php:219 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:708 (__construct)
/classes/Pack.php:288 (__construct)
/classes/Product.php:4062 (getQuantity)
/classes/Product.php:5511 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 205 |
SELECT SQL_NO_CACHE *
FROM `xr23z_st_social` s
LEFT JOIN `xr23z_st_social_lang` sl
ON (s.`id_st_social`=sl.`id_st_social` AND sl.`id_lang`=1)
INNER JOIN xr23z_st_social_shop st_social_shop
ON (st_social_shop.id_st_social = s.id_st_social AND st_social_shop.id_shop = 1) WHERE s.`active`=1 ORDER BY s.`position`, s.`id_st_social` |
0.212
ms
|
4 |
Yes
|
|
/modules/stsocial/classes/StSocialClass.php:107
/modules/stsocial/stsocial.php:1537 (getAll)
/modules/stsocial/stsocial.php:1525 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/36/28/e4/3628e4f5afe166eddd4b4cdffff592223c027d5d_2.file.product-add-to-cart.tpl.php:56 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04741226f5_03201691)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/23/2c/b4/232cb4c3d60eef13f80ba9ebfd305b666551b940_2.file.product-buy.tpl.php:112 (_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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/23/2c/b4/232cb4c3d60eef13f80ba9ebfd305b666551b940_2.file.product-buy.tpl.php:209 (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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/23/2c/b4/232cb4c3d60eef13f80ba9ebfd305b666551b940_2.file.product-buy.tpl.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04740d0ba8_11468668)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/c5/fe/40/c5fe40dd64cdd89eba28b52f0981bc2787b40b5c_2.file.product-first.tpl.php:106 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473e00b51_98407663)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:142 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 5 |
SELECT SQL_NO_CACHE l.*, ls.`id_shop`
FROM `xr23z_lang` l
LEFT JOIN `xr23z_lang_shop` ls ON (l.id_lang = ls.id_lang) |
0.211
ms
|
1 |
|
|
/classes/Language.php:1070
/config/config.inc.php:175 (loadLanguages)
/index.php:40 (require_once)
|
| 10 |
SELECT SQL_NO_CACHE domain, domain_ssl
FROM xr23z_shop_url
WHERE main = 1
AND id_shop = 1 LIMIT 1 |
0.211
ms
|
1 |
|
|
/classes/shop/ShopUrl.php:178
/classes/shop/ShopUrl.php:198 (cacheMainDomainForShop)
/classes/Tools.php:292 (getMainShopDomain)
/classes/Link.php:64 (getShopDomain)
/config/config.inc.php:309 (__construct)
/index.php:40 (require_once)
|
| 322 |
SELECT SQL_NO_CACHE *
FROM `xr23z_product` a
LEFT JOIN `xr23z_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `xr23z_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 5) AND (b.`id_shop` = 1) LIMIT 1 |
0.209
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:219 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:708 (__construct)
/src/Adapter/Image/ImageRetriever.php:69 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:941 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:137 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:50 (__construct)
/modules/ps_categoryproducts/ps_categoryproducts.php:326 (present)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 400 |
SELECT SQL_NO_CACHE count(0)
FROM `xr23z_st_wishlist_product` whp
LEFT JOIN `xr23z_st_wishlist` wh ON (wh.`id_st_wishlist`=whp.`id_st_wishlist`)
WHERE whp.`id_product` = 4 AND wh.`id_customer`=0 AND wh.`id_shop`= 1 LIMIT 1 |
0.208
ms
|
1 |
|
|
/modules/stwishlist/classes/StWishListClass.php:364
/modules/stwishlist/stwishlist.php:1259 (countProCustomer)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 100 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `xr23z_category` c
LEFT JOIN `xr23z_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 15 AND c.`nright` >= 16 AND c.`nleft` >= 2 AND c.`nright` <= 17 ORDER BY `nleft` DESC |
0.206
ms
|
2 |
Yes
|
|
/classes/Category.php:1587
/modules/steasycontent/classes/StEasyContentClass.php:299 (getParentsCategories)
/modules/steasycontent/steasycontent.php:2626 (getListContent)
/modules/steasycontent/steasycontent.php:3819 (_prepareHook)
/classes/Hook.php:1251 (hookDisplayProductExtraContent)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/src/Adapter/HookManager.php:81 (exec)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:71 (exec)
/src/Core/Product/ProductExtraContentFinder.php:57 (find)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:103 (find)
/controllers/front/ProductController.php:1198 (present)
/controllers/front/ProductController.php:337 (getTemplateVarProduct)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 132 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `xr23z_category` c
LEFT JOIN `xr23z_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 2 AND c.`nright` >= 17 AND c.`nleft` >= 2 AND c.`nright` <= 17 ORDER BY `nleft` DESC |
0.206
ms
|
1 |
Yes
|
|
/classes/Category.php:1587
/modules/ststickers/classes/StStickersMapClass.php:174 (getParentsCategories)
/modules/ststickers/ststickers.php:1741 (getForProduct)
/classes/Hook.php:1251 (hookDisplayProductExtraContent)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/src/Adapter/HookManager.php:81 (exec)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:71 (exec)
/src/Core/Product/ProductExtraContentFinder.php:57 (find)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:103 (find)
/controllers/front/ProductController.php:1198 (present)
/controllers/front/ProductController.php:337 (getTemplateVarProduct)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 390 |
SELECT SQL_NO_CACHE *
FROM `xr23z_product` a
LEFT JOIN `xr23z_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 4) LIMIT 1 |
0.206
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:219 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:708 (__construct)
/modules/ststickers/classes/StStickersMapClass.php:158 (__construct)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 71 |
SELECT SQL_NO_CACHE pa.id_product_attribute
FROM `xr23z_product_attribute` pa INNER JOIN xr23z_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` = 14 |
0.205
ms
|
1 |
|
|
/classes/Product.php:7113
/classes/Product.php:7197 (getProductAttributesIds)
/controllers/front/ProductController.php:1054 (hasCombinations)
/controllers/front/ProductController.php:567 (getIdProductAttributeByGroupOrRequestOrDefault)
/controllers/front/ProductController.php:327 (assignPriceAndTax)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 424 |
SELECT SQL_NO_CACHE COUNT(0) as total,
(SUM(pc.`grade`) / COUNT(pc.`grade`)) AS avg,
MIN(pc.`grade`) AS min,
MAX(pc.`grade`) AS max
FROM `xr23z_st_product_comment` pc
WHERE pc.`id_product` = 14
AND pc.`id_parent` = 0
AND pc.`id_shop`=1 AND pc.`validate` = 1 LIMIT 1 |
0.205
ms
|
1 |
|
|
/modules/stproductcomments/classes/StProductCommentClass.php:373
/modules/stproductcomments/stproductcomments.php:1724 (getRatings)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stviewedproducts/stviewedproducts.php:208 (assembleProduct)
/modules/stviewedproducts/stviewedproducts.php:224 (getProducts)
/modules/stviewedproducts/stviewedproducts.php:234 (_prepareSimple)
/classes/Hook.php:1251 (hookDisplaySideBar)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:526 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:147 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 3 |
SELECT SQL_NO_CACHE *
FROM `xr23z_shop` a
WHERE (a.`id_shop` = 1) LIMIT 1 |
0.204
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:219 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/shop/Shop.php:149 (__construct)
/classes/shop/Shop.php:435 (__construct)
/config/config.inc.php:146 (initialize)
/index.php:40 (require_once)
|
| 80 |
SELECT SQL_NO_CACHE pa.id_product_attribute
FROM `xr23z_product_attribute` pa INNER JOIN xr23z_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` = 14 |
0.204
ms
|
1 |
|
|
/classes/Product.php:7113
/classes/Product.php:7197 (getProductAttributesIds)
/controllers/front/ProductController.php:1054 (hasCombinations)
/controllers/front/ProductController.php:1194 (getIdProductAttributeByGroupOrRequestOrDefault)
/controllers/front/ProductController.php:337 (getTemplateVarProduct)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 144 |
SELECT SQL_NO_CACHE GROUP_CONCAT(a.`id_product_pack`)
FROM `xr23z_pack` a
WHERE a.`id_product_item` = 14 LIMIT 1 |
0.202
ms
|
1 |
|
|
/classes/Pack.php:438
/controllers/front/ProductController.php:411 (getPacksTable)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 95 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `xr23z_category` c
LEFT JOIN `xr23z_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 2 AND c.`nright` >= 17 AND c.`nleft` >= 2 AND c.`nright` <= 17 ORDER BY `nleft` DESC |
0.201
ms
|
1 |
Yes
|
|
/classes/Category.php:1587
/modules/steasycontent/classes/StEasyContentClass.php:299 (getParentsCategories)
/modules/steasycontent/steasycontent.php:2626 (getListContent)
/modules/steasycontent/steasycontent.php:3819 (_prepareHook)
/classes/Hook.php:1251 (hookDisplayProductExtraContent)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/src/Adapter/HookManager.php:81 (exec)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:71 (exec)
/src/Core/Product/ProductExtraContentFinder.php:57 (find)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:103 (find)
/controllers/front/ProductController.php:1198 (present)
/controllers/front/ProductController.php:337 (getTemplateVarProduct)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 345 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `xr23z_category` c
LEFT JOIN `xr23z_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 2 AND c.`nright` >= 17 AND c.`nleft` >= 2 AND c.`nright` <= 17 ORDER BY `nleft` DESC |
0.201
ms
|
1 |
Yes
|
|
/classes/Category.php:1587
/modules/ststickers/classes/StStickersMapClass.php:174 (getParentsCategories)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 387 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `xr23z_image` i
INNER JOIN xr23z_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `xr23z_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 4
ORDER BY `position` |
0.201
ms
|
1 |
Yes
|
|
/modules/stthemeeditor/stthemeeditor.php:5421
/modules/stthemeeditor/stthemeeditor.php:5396 (getProductImages)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 28 |
SELECT SQL_NO_CACHE *
FROM `xr23z_currency` a
LEFT JOIN `xr23z_currency_shop` `c` ON a.`id_currency` = c.`id_currency` AND c.`id_shop` = 1
WHERE (a.`id_currency` = 1) LIMIT 1 |
0.200
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:219 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Currency.php:246 (__construct)
/classes/Currency.php:1089 (__construct)
/classes/Tools.php:685 (getCurrencyInstance)
/classes/controller/FrontController.php:331 (setCurrency)
/controllers/front/ProductController.php:127 (init)
/tools/profiling/Controller.php:46 (init)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 43 |
SELECT SQL_NO_CACHE COUNT(p.id_product)
FROM `xr23z_product` p
INNER JOIN xr23z_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1)
WHERE p.id_product = 14
AND DATEDIFF("2026-01-07 00:00:00", product_shop.`date_add`) < 20 LIMIT 1 |
0.200
ms
|
0 |
|
|
/classes/Product.php:1686
/classes/Product.php:1665 (isNewStatic)
/classes/Product.php:725 (isNew)
/controllers/front/ProductController.php:149 (__construct)
/tools/profiling/Controller.php:46 (init)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 190 |
SELECT SQL_NO_CACHE SUM(`quantity`)
FROM `xr23z_cart_product`
WHERE `id_cart` = 0 LIMIT 1 |
0.200
ms
|
1 |
|
|
/classes/Cart.php:1292
/src/Adapter/Presenter/Cart/CartLazyArray.php:247 (getNbProducts)
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getProductsCount)
/var/cache/dev/smarty/compile/transformer/52/33/2e/52332e14d92f82d3c12217bc32b7318ae730bb0c_2.module.stshoppingcartviewstemplateshookstshoppingcart.tpl.php:33 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_68ff98d422a184_85529317)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDevTemplate.php:55 (fetch)
/classes/module/Module.php:2395 (fetch)
/modules/stshoppingcart/stshoppingcart.php:846 (fetch)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/ff/02/12/ff021241fc8d9795aa2c8f534088eec29022dd12_2.file.header.tpl.php:299 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/ff/02/12/ff021241fc8d9795aa2c8f534088eec29022dd12_2.file.header.tpl.php:38 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e36500ee11_74762667)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:283 (_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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:86 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 8 |
SELECT SQL_NO_CACHE *
FROM `xr23z_lang` a
LEFT JOIN `xr23z_lang_shop` `c` ON a.`id_lang` = c.`id_lang` AND c.`id_shop` = 1
WHERE (a.`id_lang` = 1) LIMIT 1 |
0.199
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:219 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/config/config.inc.php:243 (__construct)
/index.php:40 (require_once)
|
| 14 |
SELECT SQL_NO_CACHE `name`, `alias` FROM `xr23z_hook_alias` |
0.199
ms
|
86 |
|
|
/classes/Hook.php:321
/classes/Hook.php:354 (getAllHookAliases)
/classes/Hook.php:839 (getHookAliasesFor)
/classes/Hook.php:966 (getHookModuleExecList)
/classes/Dispatcher.php:587 (exec)
/classes/Dispatcher.php:238 (loadRoutes)
/classes/Dispatcher.php:196 (__construct)
/index.php:78 (getInstance)
|
| 160 |
SELECT SQL_NO_CACHE `id_module` FROM `xr23z_module` WHERE `name` = "ps_facebook" LIMIT 1 |
0.198
ms
|
1 |
|
|
/classes/module/Module.php:2758
/classes/module/Module.php:2244 (getModuleIdByName)
/modules/ps_facebook/classes/Handler/ErrorHandler/ErrorHandler.php:55 (isEnabled)
/var/cache/dev/Ps_facebookFrontContainer.php:268 (__construct)
/vendor/symfony/dependency-injection/Container.php:231 (getErrorHandlerService)
/vendor/symfony/dependency-injection/Container.php:211 (make)
/modules/psxmarketingwithgoogle/vendor/prestashop/module-lib-service-container/src/DependencyInjection/ServiceContainer.php:64 (get)
/modules/ps_facebook/ps_facebook.php:145 (getService)
/modules/ps_facebook/ps_facebook.php:308 (getService)
/classes/Hook.php:1251 (hookDisplayHeader)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/classes/controller/FrontController.php:589 (exec)
/override/classes/controller/FrontController.php:11 (initContent)
/controllers/front/ProductController.php:418 (initContent)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 141 |
SELECT SQL_NO_CACHE pai.`id_image`, pai.`id_product_attribute`, il.`legend`
FROM `xr23z_product_attribute_image` pai
LEFT JOIN `xr23z_image_lang` il ON (il.`id_image` = pai.`id_image`)
INNER JOIN `xr23z_image` i ON (i.`id_image` = pai.`id_image`)
WHERE i.`id_product` = 14 AND il.`id_lang` = 1 ORDER by i.`position` |
0.198
ms
|
1 |
Yes
|
|
/classes/Product.php:2642
/src/Adapter/Image/ImageRetriever.php:82 (getCombinationImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:941 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:137 (fillImages)
/src/Adapter/Presenter/Product/ProductPresenter.php:100 (__construct)
/controllers/front/ProductController.php:1223 (present)
/controllers/front/ProductController.php:337 (getTemplateVarProduct)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 142 |
SELECT SQL_NO_CACHE * FROM `xr23z_image_type` WHERE 1 AND `products` = 1 AND `theme_name` = 'transformer' OR `theme_name` IS NULL ORDER BY `width` DESC, `height` DESC, `name`ASC |
0.198
ms
|
24 |
Yes
|
|
/classes/ImageType.php:113
/src/Adapter/Image/ImageRetriever.php:216 (getImagesTypes)
/src/Adapter/Image/ImageRetriever.php:103 (getImage)
:undefined (PrestaShop\PrestaShop\Adapter\Image\{closure})
/src/Adapter/Image/ImageRetriever.php:96 (array_map)
/src/Adapter/Presenter/Product/ProductLazyArray.php:941 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:137 (fillImages)
/src/Adapter/Presenter/Product/ProductPresenter.php:100 (__construct)
/controllers/front/ProductController.php:1223 (present)
/controllers/front/ProductController.php:337 (getTemplateVarProduct)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 304 |
SELECT SQL_NO_CACHE pa.`available_date` FROM `xr23z_product` p LEFT JOIN `xr23z_product_attribute` pa ON (pa.`id_product` = p.`id_product`) INNER JOIN xr23z_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1) INNER JOIN xr23z_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` = 5 AND pa.`id_product` = 5 AND pa.`id_product_attribute` = 19 LIMIT 1 |
0.197
ms
|
1 |
|
|
/classes/Product.php:1180
/classes/Product.php:5531 (getAvailableDate)
/classes/ProductAssembler.php:191 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 329 |
SELECT SQL_NO_CACHE *
FROM `xr23z_product` a
LEFT JOIN `xr23z_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 15) LIMIT 1 |
0.197
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:219 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:708 (__construct)
/classes/Pack.php:288 (__construct)
/classes/Product.php:4062 (getQuantity)
/classes/Product.php:5511 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 67 |
SELECT SQL_NO_CACHE *
FROM `xr23z_manufacturer` a
LEFT JOIN `xr23z_manufacturer_lang` `b` ON a.`id_manufacturer` = b.`id_manufacturer` AND b.`id_lang` = 1
LEFT JOIN `xr23z_manufacturer_shop` `c` ON a.`id_manufacturer` = c.`id_manufacturer` AND c.`id_shop` = 1
WHERE (a.`id_manufacturer` = 2) LIMIT 1 |
0.196
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:219 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Manufacturer.php:111 (__construct)
/controllers/front/ProductController.php:858 (__construct)
/controllers/front/ProductController.php:324 (assignManufacturer)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 156 |
SELECT SQL_NO_CACHE `id_module` FROM `xr23z_module` WHERE `name` = "sthoverimage" LIMIT 1 |
0.196
ms
|
1 |
|
|
/classes/module/Module.php:2758
/classes/module/Module.php:2212 (getModuleIdByName)
/modules/stthemeeditor/stthemeeditor.php:4272 (isInstalled)
/modules/stthemeeditor/stthemeeditor.php:4155 (getStBasicVals)
/classes/Hook.php:1251 (hookDisplayHeader)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/classes/controller/FrontController.php:589 (exec)
/override/classes/controller/FrontController.php:11 (initContent)
/controllers/front/ProductController.php:418 (initContent)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 6 |
SELECT SQL_NO_CACHE *
FROM `xr23z_country` a
LEFT JOIN `xr23z_country_lang` `b` ON a.`id_country` = b.`id_country` AND b.`id_lang` = 1
LEFT JOIN `xr23z_country_shop` `c` ON a.`id_country` = c.`id_country` AND c.`id_shop` = 1
WHERE (a.`id_country` = 36) LIMIT 1 |
0.195
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:219 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/config/config.inc.php:178 (__construct)
/index.php:40 (require_once)
|
| 147 |
SELECT SQL_NO_CACHE * FROM `xr23z_image_type` WHERE 1 AND `suppliers` = 1 AND `theme_name` = 'transformer' OR `theme_name` IS NULL ORDER BY `width` DESC, `height` DESC, `name`ASC |
0.194
ms
|
24 |
Yes
|
|
/classes/ImageType.php:113
/src/Adapter/Image/ImageRetriever.php:375 (getImagesTypes)
/classes/controller/FrontController.php:1541 (getNoPictureImage)
/classes/controller/FrontController.php:1693 (getTemplateVarUrls)
/classes/controller/FrontController.php:522 (getTemplateVarShop)
/classes/controller/FrontController.php:585 (assignGeneralPurposeVariables)
/override/classes/controller/FrontController.php:11 (initContent)
/controllers/front/ProductController.php:418 (initContent)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 63 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright`, c.`level_depth`
FROM `xr23z_category` c
WHERE (c.`id_category` = 2) LIMIT 1 |
0.192
ms
|
1 |
|
|
/classes/Category.php:1946
/classes/Category.php:1970 (getInterval)
/controllers/front/ProductController.php:881 (inShop)
/controllers/front/ProductController.php:321 (assignCategory)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 311 |
SELECT SQL_NO_CACHE *
FROM `xr23z_product` a
LEFT JOIN `xr23z_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 5) LIMIT 1 |
0.192
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:219 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:708 (__construct)
/modules/ststickers/classes/StStickersMapClass.php:158 (__construct)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 339 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `xr23z_image` i
INNER JOIN xr23z_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `xr23z_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 15
ORDER BY `position` |
0.192
ms
|
1 |
Yes
|
|
/modules/stthemeeditor/stthemeeditor.php:5421
/modules/stthemeeditor/stthemeeditor.php:5396 (getProductImages)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 151 |
SELECT SQL_NO_CACHE *
FROM `xr23z_country` a
LEFT JOIN `xr23z_country_shop` `c` ON a.`id_country` = c.`id_country` AND c.`id_shop` = 1
WHERE (a.`id_country` = 36) LIMIT 1 |
0.191
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:219 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/AddressFormat.php:402 (__construct)
/classes/AddressFormat.php:437 (getFormattedAddressFieldsValues)
/classes/controller/FrontController.php:1713 (generateAddress)
/classes/controller/FrontController.php:522 (getTemplateVarShop)
/classes/controller/FrontController.php:585 (assignGeneralPurposeVariables)
/override/classes/controller/FrontController.php:11 (initContent)
/controllers/front/ProductController.php:418 (initContent)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 164 |
SELECT SQL_NO_CACHE `id_module` FROM `xr23z_module` WHERE `name` = "jscomposer" LIMIT 1 |
0.190
ms
|
0 |
|
|
/classes/module/Module.php:2758
/classes/module/Module.php:2212 (getModuleIdByName)
/modules/stproductcategoriesslider/stproductcategoriesslider.php:91 (isInstalled)
/modules/stproductcategoriesslider/stproductcategoriesslider.php:83 (initHookArray)
:undefined (__construct)
/src/Core/Foundation/IoC/Container.php:124 (newInstance)
/src/Core/Foundation/IoC/Container.php:154 (makeInstanceFromClassName)
/src/Core/Foundation/IoC/Container.php:167 (doMake)
/src/Adapter/ServiceLocator.php:70 (make)
/classes/module/Module.php:1364 (get)
/tools/profiling/Module.php:35 (coreLoadModule)
/classes/module/Module.php:1343 (coreLoadModule)
/classes/Hook.php:1122 (getInstanceByName)
/classes/controller/FrontController.php:589 (exec)
/override/classes/controller/FrontController.php:11 (initContent)
/controllers/front/ProductController.php:418 (initContent)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 425 |
SELECT SQL_NO_CACHE *
FROM `xr23z_image` i
LEFT JOIN `xr23z_image_lang` il ON (i.`id_image` = il.`id_image`) WHERE i.`id_product` = 14 AND il.`id_lang` = 1
ORDER BY i.`position` ASC |
0.190
ms
|
1 |
Yes
|
|
/classes/Image.php:280
/modules/sthoverimage/sthoverimage.php:445 (getImages)
/modules/sthoverimage/sthoverimage.php:327 (getHoverImageByProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stviewedproducts/stviewedproducts.php:208 (assembleProduct)
/modules/stviewedproducts/stviewedproducts.php:224 (getProducts)
/modules/stviewedproducts/stviewedproducts.php:234 (_prepareSimple)
/classes/Hook.php:1251 (hookDisplaySideBar)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:526 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:147 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 323 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `xr23z_image` i
INNER JOIN xr23z_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `xr23z_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 5
ORDER BY `position` |
0.189
ms
|
1 |
Yes
|
|
/classes/Product.php:3259
/src/Adapter/Image/ImageRetriever.php:76 (getImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:941 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:137 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:50 (__construct)
/modules/ps_categoryproducts/ps_categoryproducts.php:326 (present)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 383 |
SELECT SQL_NO_CACHE pa.`available_date` FROM `xr23z_product` p LEFT JOIN `xr23z_product_attribute` pa ON (pa.`id_product` = p.`id_product`) INNER JOIN xr23z_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1) INNER JOIN xr23z_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` = 4 AND pa.`id_product` = 4 AND pa.`id_product_attribute` = 16 LIMIT 1 |
0.189
ms
|
1 |
|
|
/classes/Product.php:1180
/classes/Product.php:5531 (getAvailableDate)
/classes/ProductAssembler.php:191 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 252 |
SELECT SQL_NO_CACHE 1 FROM `xr23z_specific_price` WHERE id_product = 12 LIMIT 1 |
0.188
ms
|
1 |
|
|
/classes/SpecificPrice.php:432
/classes/SpecificPrice.php:520 (couldHaveSpecificPrice)
/classes/Product.php:3543 (getSpecificPrice)
/classes/Product.php:3433 (priceCalculation)
/classes/Product.php:5405 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 298 |
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 `xr23z_product` p
INNER JOIN `xr23z_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `xr23z_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` = 5) |
0.188
ms
|
3 |
|
|
/classes/Product.php:3577
/classes/Product.php:3433 (priceCalculation)
/classes/Product.php:5405 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 395 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `xr23z_category` c
LEFT JOIN `xr23z_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 2 AND c.`nright` >= 17 AND c.`nleft` >= 2 AND c.`nright` <= 17 ORDER BY `nleft` DESC |
0.187
ms
|
1 |
Yes
|
|
/classes/Category.php:1587
/modules/ststickers/classes/StStickersMapClass.php:174 (getParentsCategories)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 59 |
SELECT SQL_NO_CACHE *
FROM `xr23z_category` a
LEFT JOIN `xr23z_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 1
LEFT JOIN `xr23z_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 9) AND (b.`id_shop` = 1) LIMIT 1 |
0.186
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:219 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:178 (__construct)
/controllers/front/ProductController.php:308 (__construct)
/controllers/front/ProductController.php:175 (initializeCategory)
/tools/profiling/Controller.php:46 (init)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 130 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `xr23z_category` c
LEFT JOIN `xr23z_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 2 LIMIT 1 |
0.186
ms
|
1 |
|
|
/classes/Category.php:1577
/modules/ststickers/classes/StStickersMapClass.php:174 (getParentsCategories)
/modules/ststickers/ststickers.php:1741 (getForProduct)
/classes/Hook.php:1251 (hookDisplayProductExtraContent)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/src/Adapter/HookManager.php:81 (exec)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:71 (exec)
/src/Core/Product/ProductExtraContentFinder.php:57 (find)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:103 (find)
/controllers/front/ProductController.php:1198 (present)
/controllers/front/ProductController.php:337 (getTemplateVarProduct)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 166 |
SELECT SQL_NO_CACHE `name`
FROM `xr23z_hook`
WHERE `id_hook` = 1271 LIMIT 1 |
0.185
ms
|
1 |
|
|
/classes/Hook.php:267
/classes/Hook.php:1044 (getNameById)
/classes/controller/FrontController.php:589 (exec)
/override/classes/controller/FrontController.php:11 (initContent)
/controllers/front/ProductController.php:418 (initContent)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 169 |
SELECT SQL_NO_CACHE `id_module` FROM `xr23z_module` WHERE `name` = "stnotification" LIMIT 1 |
0.185
ms
|
1 |
|
|
/classes/module/Module.php:2758
/classes/module/Module.php:2244 (getModuleIdByName)
/classes/Hook.php:1257 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/ff/02/12/ff021241fc8d9795aa2c8f534088eec29022dd12_2.file.header.tpl.php:57 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/ff/02/12/ff021241fc8d9795aa2c8f534088eec29022dd12_2.file.header.tpl.php:26 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e36500ee11_74762667)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:283 (_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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:86 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 259 |
SELECT SQL_NO_CACHE *
FROM `xr23z_image` i
LEFT JOIN `xr23z_image_lang` il ON (i.`id_image` = il.`id_image`) WHERE i.`id_product` = 12 AND il.`id_lang` = 1
ORDER BY i.`position` ASC |
0.185
ms
|
1 |
Yes
|
|
/classes/Image.php:280
/modules/sthoverimage/sthoverimage.php:445 (getImages)
/modules/sthoverimage/sthoverimage.php:327 (getHoverImageByProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 260 |
SELECT SQL_NO_CACHE *
FROM `xr23z_product` a
LEFT JOIN `xr23z_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 12) LIMIT 1 |
0.185
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:219 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:708 (__construct)
/modules/ststickers/classes/StStickersMapClass.php:158 (__construct)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 82 |
SELECT SQL_NO_CACHE `id_module` FROM `xr23z_module` WHERE `name` = "stblog" LIMIT 1 |
0.184
ms
|
1 |
|
|
/classes/module/Module.php:2758
/classes/module/Module.php:2212 (getModuleIdByName)
/modules/steasycontent/steasycontent.php:330 (isInstalled)
:undefined (__construct)
/src/Core/Foundation/IoC/Container.php:124 (newInstance)
/src/Core/Foundation/IoC/Container.php:154 (makeInstanceFromClassName)
/src/Core/Foundation/IoC/Container.php:167 (doMake)
/src/Adapter/ServiceLocator.php:70 (make)
/classes/module/Module.php:1364 (get)
/tools/profiling/Module.php:35 (coreLoadModule)
/classes/module/Module.php:1343 (coreLoadModule)
/classes/Hook.php:1122 (getInstanceByName)
/src/Adapter/HookManager.php:81 (exec)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:71 (exec)
/src/Core/Product/ProductExtraContentFinder.php:57 (find)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:103 (find)
/controllers/front/ProductController.php:1198 (present)
/controllers/front/ProductController.php:337 (getTemplateVarProduct)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 237 |
SELECT SQL_NO_CACHE *
FROM `xr23z_product` a
LEFT JOIN `xr23z_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 3) LIMIT 1 |
0.184
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:219 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:708 (__construct)
/modules/ststickers/classes/StStickersMapClass.php:158 (__construct)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 417 |
SELECT SQL_NO_CACHE `id_module` FROM `xr23z_module` WHERE `name` = "gformbuilderpro" LIMIT 1 |
0.184
ms
|
0 |
|
|
/classes/module/Module.php:2758
/classes/module/Module.php:2244 (getModuleIdByName)
/modules/steasycontent/steasycontent.php:4253 (isEnabled)
/modules/steasycontent/steasycontent.php:3602 (renderShortcode)
/classes/Hook.php:1251 (hookDisplayFooter)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/ef/b5/8f/efb58f1942cb002896e8245199fc597627fac2b2_2.file.footer.tpl.php:106 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/ef/b5/8f/efb58f1942cb002896e8245199fc597627fac2b2_2.file.footer.tpl.php:37 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e36559f047_41433756)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:508 (_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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:135 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 188 |
SELECT SQL_NO_CACHE `id_module` FROM `xr23z_module` WHERE `name` = "stsearchbar" LIMIT 1 |
0.183
ms
|
1 |
|
|
/classes/module/Module.php:2758
/classes/module/Module.php:2244 (getModuleIdByName)
/classes/Hook.php:1257 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/ff/02/12/ff021241fc8d9795aa2c8f534088eec29022dd12_2.file.header.tpl.php:299 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/ff/02/12/ff021241fc8d9795aa2c8f534088eec29022dd12_2.file.header.tpl.php:38 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e36500ee11_74762667)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:283 (_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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:86 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 283 |
SELECT SQL_NO_CACHE *
FROM `xr23z_product` a
LEFT JOIN `xr23z_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 13) LIMIT 1 |
0.183
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:219 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:708 (__construct)
/modules/ststickers/classes/StStickersMapClass.php:158 (__construct)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 431 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `xr23z_category` c
LEFT JOIN `xr23z_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 15 AND c.`nright` >= 16 AND c.`nleft` >= 2 AND c.`nright` <= 17 ORDER BY `nleft` DESC |
0.182
ms
|
2 |
Yes
|
|
/classes/Category.php:1587
/modules/ststickers/classes/StStickersMapClass.php:174 (getParentsCategories)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stviewedproducts/stviewedproducts.php:208 (assembleProduct)
/modules/stviewedproducts/stviewedproducts.php:224 (getProducts)
/modules/stviewedproducts/stviewedproducts.php:234 (_prepareSimple)
/classes/Hook.php:1251 (hookDisplaySideBar)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:526 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:147 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 316 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `xr23z_category` c
LEFT JOIN `xr23z_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 2 AND c.`nright` >= 17 AND c.`nleft` >= 2 AND c.`nright` <= 17 ORDER BY `nleft` DESC |
0.182
ms
|
1 |
Yes
|
|
/classes/Category.php:1587
/modules/ststickers/classes/StStickersMapClass.php:174 (getParentsCategories)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 434 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `xr23z_image` i
INNER JOIN xr23z_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `xr23z_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 14
ORDER BY `position` |
0.182
ms
|
1 |
Yes
|
|
/classes/Product.php:3259
/src/Adapter/Image/ImageRetriever.php:76 (getImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:941 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:137 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:50 (__construct)
/modules/stviewedproducts/stviewedproducts.php:206 (present)
/modules/stviewedproducts/stviewedproducts.php:224 (getProducts)
/modules/stviewedproducts/stviewedproducts.php:234 (_prepareSimple)
/classes/Hook.php:1251 (hookDisplaySideBar)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:526 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:147 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 122 |
SELECT SQL_NO_CACHE `width`, `height`
FROM xr23z_image_type
WHERE `name` = 'small_default' LIMIT 1 |
0.181
ms
|
2 |
|
|
/classes/Image.php:554
/modules/stproductlinknav/stproductlinknav.php:129 (getSize)
/modules/stproductlinknav/stproductlinknav.php:186 (_prepareHook)
/classes/Hook.php:1251 (hookDisplayProductExtraContent)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/src/Adapter/HookManager.php:81 (exec)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:71 (exec)
/src/Core/Product/ProductExtraContentFinder.php:57 (find)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:103 (find)
/controllers/front/ProductController.php:1198 (present)
/controllers/front/ProductController.php:337 (getTemplateVarProduct)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 231 |
SELECT SQL_NO_CACHE *
FROM `xr23z_product_attribute` a
LEFT JOIN `xr23z_product_attribute_shop` `c` ON a.`id_product_attribute` = c.`id_product_attribute` AND c.`id_shop` = 1
WHERE (a.`id_product_attribute` = 13) LIMIT 1 |
0.181
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:219 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:5597 (__construct)
/classes/Product.php:5560 (computeUnitPriceRatio)
/classes/ProductAssembler.php:191 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 406 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `xr23z_stock_available`
WHERE (id_product = 3) AND (id_product_attribute = 14) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.181
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:269
/classes/Product.php:2506 (getQuantityAvailableByProduct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:920 (getAttributesResume)
/src/Adapter/Presenter/Product/ProductLazyArray.php:752 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getFlags)
/var/cache/dev/smarty/compile/transformer/53/b8/7e/53b87e48cd68c1673fe52d704a3eeb41c7d46cac_2.file.sticker.tpl.cache.php:48 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e3653af629_15962486)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/transformer/2e/1c/87/2e1c87f7b380ff9e03bb6b63e57add60db8c1479_2.file.product.tpl.cache.php:63 (_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/dev/smarty/compile/transformer/2e/1c/87/2e1c87f7b380ff9e03bb6b63e57add60db8c1479_2.file.product.tpl.cache.php:192 (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/dev/smarty/compile/transformer/2e/1c/87/2e1c87f7b380ff9e03bb6b63e57add60db8c1479_2.file.product.tpl.cache.php:404 (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/dev/smarty/compile/transformer/2e/1c/87/2e1c87f7b380ff9e03bb6b63e57add60db8c1479_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e365386d75_77248485)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/transformer/4a/dd/9c/4add9c4a8c2e435790d5fd17d45d1c288f523876_2.file.product-slider.tpl.cache.php:102 (_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/dev/smarty/compile/transformer/4a/dd/9c/4add9c4a8c2e435790d5fd17d45d1c288f523876_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e36530d2e7_26274938)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/transformer/39/d3/1a/39d31a599d73c039735add7bd5dc7a2a3a72c0ba_2.module.ps_categoryproductsviewstemplateshookps_categoryproducts.tpl.cache.php:53 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_68ff99ca35e378_79665226)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:55 (fetch)
/classes/module/Module.php:2395 (fetch)
/modules/ps_categoryproducts/ps_categoryproducts.php:254 (fetch)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 201 |
SELECT SQL_NO_CACHE (SUM(pc.`grade`) / COUNT(pc.`grade`)) AS grade
FROM `xr23z_st_product_comment` pc
WHERE pc.`id_product` = 14
AND pc.`id_shop`=1
AND pc.`id_parent` = 0 AND pc.`validate` = 1 LIMIT 1 |
0.180
ms
|
1 |
|
|
/modules/stproductcomments/classes/StProductCommentClass.php:380
/modules/stproductcomments/stproductcomments.php:1692 (getAverageGrade)
/modules/stproductcomments/stproductcomments.php:2382 (renderCommentExtra)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/c5/fe/40/c5fe40dd64cdd89eba28b52f0981bc2787b40b5c_2.file.product-first.tpl.php:358 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/c5/fe/40/c5fe40dd64cdd89eba28b52f0981bc2787b40b5c_2.file.product-first.tpl.php:59 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473e00b51_98407663)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:142 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 377 |
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 `xr23z_product` p
INNER JOIN `xr23z_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `xr23z_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` = 4) |
0.180
ms
|
3 |
|
|
/classes/Product.php:3577
/classes/Product.php:3433 (priceCalculation)
/classes/Product.php:5405 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 388 |
SELECT SQL_NO_CACHE COUNT(0) as total,
(SUM(pc.`grade`) / COUNT(pc.`grade`)) AS avg,
MIN(pc.`grade`) AS min,
MAX(pc.`grade`) AS max
FROM `xr23z_st_product_comment` pc
WHERE pc.`id_product` = 4
AND pc.`id_parent` = 0
AND pc.`id_shop`=1 AND pc.`validate` = 1 LIMIT 1 |
0.180
ms
|
1 |
|
|
/modules/stproductcomments/classes/StProductCommentClass.php:373
/modules/stproductcomments/stproductcomments.php:1724 (getRatings)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 435 |
SELECT SQL_NO_CACHE pai.`id_image`, pai.`id_product_attribute`, il.`legend`
FROM `xr23z_product_attribute_image` pai
LEFT JOIN `xr23z_image_lang` il ON (il.`id_image` = pai.`id_image`)
INNER JOIN `xr23z_image` i ON (i.`id_image` = pai.`id_image`)
WHERE i.`id_product` = 14 AND il.`id_lang` = 1 ORDER by i.`position` |
0.180
ms
|
1 |
Yes
|
|
/classes/Product.php:2642
/src/Adapter/Image/ImageRetriever.php:82 (getCombinationImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:941 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:137 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:50 (__construct)
/modules/stviewedproducts/stviewedproducts.php:206 (present)
/modules/stviewedproducts/stviewedproducts.php:224 (getProducts)
/modules/stviewedproducts/stviewedproducts.php:234 (_prepareSimple)
/classes/Hook.php:1251 (hookDisplaySideBar)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:526 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:147 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 86 |
SELECT SQL_NO_CACHE *
FROM `xr23z_product_lang`
WHERE `id_product` = 14 AND `id_shop` = 1 |
0.179
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:81
/classes/ObjectModel.php:219 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:708 (__construct)
/modules/steasycontent/classes/StEasyContentClass.php:278 (__construct)
/modules/steasycontent/steasycontent.php:2626 (getListContent)
/modules/steasycontent/steasycontent.php:3819 (_prepareHook)
/classes/Hook.php:1251 (hookDisplayProductExtraContent)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/src/Adapter/HookManager.php:81 (exec)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:71 (exec)
/src/Core/Product/ProductExtraContentFinder.php:57 (find)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:103 (find)
/controllers/front/ProductController.php:1198 (present)
/controllers/front/ProductController.php:337 (getTemplateVarProduct)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 39 |
SELECT SQL_NO_CACHE s.id_shop, s.id_shop_group FROM xr23z_shop s |
0.179
ms
|
1 |
|
|
/classes/shop/Shop.php:925
/src/Adapter/Configuration.php:383 (getGroupIdFromShopId)
/src/Adapter/Configuration.php:119 (getShopGroupId)
/classes/tax/TaxRulesTaxManager.php:83 (get)
/classes/Product.php:6520 (getTaxCalculator)
/classes/Product.php:723 (getTaxesRate)
/controllers/front/ProductController.php:149 (__construct)
/tools/profiling/Controller.php:46 (init)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 229 |
SELECT SQL_NO_CACHE pa.`available_date` FROM `xr23z_product` p LEFT JOIN `xr23z_product_attribute` pa ON (pa.`id_product` = p.`id_product`) INNER JOIN xr23z_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1) INNER JOIN xr23z_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` = 3 AND pa.`id_product` = 3 AND pa.`id_product_attribute` = 13 LIMIT 1 |
0.178
ms
|
1 |
|
|
/classes/Product.php:1180
/classes/Product.php:5531 (getAvailableDate)
/classes/ProductAssembler.php:191 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 117 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright`
FROM `xr23z_category` c
WHERE (c.`id_category` = 9) LIMIT 1 |
0.178
ms
|
1 |
|
|
/classes/Category.php:2000
/modules/stproductlinknav/stproductlinknav.php:85 (inShopStatic)
/modules/stproductlinknav/stproductlinknav.php:186 (_prepareHook)
/classes/Hook.php:1251 (hookDisplayProductExtraContent)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/src/Adapter/HookManager.php:81 (exec)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:71 (exec)
/src/Core/Product/ProductExtraContentFinder.php:57 (find)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:103 (find)
/controllers/front/ProductController.php:1198 (present)
/controllers/front/ProductController.php:337 (getTemplateVarProduct)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 84 |
SELECT SQL_NO_CACHE COUNT(DISTINCT c.id_currency) FROM `xr23z_currency` c
LEFT JOIN xr23z_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.177
ms
|
1 |
|
|
/classes/Currency.php:1120
/classes/Currency.php:1139 (countActiveCurrencies)
/classes/module/Module.php:2326 (isMultiCurrencyActivated)
/modules/steasycontent/steasycontent.php:3964 (getCacheId)
/modules/steasycontent/steasycontent.php:3818 (stGetCacheId)
/classes/Hook.php:1251 (hookDisplayProductExtraContent)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/src/Adapter/HookManager.php:81 (exec)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:71 (exec)
/src/Core/Product/ProductExtraContentFinder.php:57 (find)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:103 (find)
/controllers/front/ProductController.php:1198 (present)
/controllers/front/ProductController.php:337 (getTemplateVarProduct)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 233 |
SELECT SQL_NO_CACHE * FROM `xr23z_image_type` WHERE 1 AND `products` = 1 ORDER BY `width` DESC, `height` DESC, `name`ASC |
0.177
ms
|
24 |
Yes
|
|
/classes/ImageType.php:113
/modules/stthemeeditor/stthemeeditor.php:5419 (getImagesTypes)
/modules/stthemeeditor/stthemeeditor.php:5396 (getProductImages)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 198 |
SELECT SQL_NO_CACHE COUNT(p.id_product)
FROM `xr23z_product` p
INNER JOIN xr23z_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1)
WHERE p.id_product = 14
AND DATEDIFF("2026-01-07 00:00:00", product_shop.`date_add`) < 20 LIMIT 1 |
0.176
ms
|
0 |
|
|
/classes/Product.php:1686
/src/Adapter/Presenter/Product/ProductLazyArray.php:661 (isNewStatic)
/src/Adapter/Presenter/Product/ProductLazyArray.php:730 (getNew)
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getFlags)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/53/b8/7e/53b87e48cd68c1673fe52d704a3eeb41c7d46cac_2.file.sticker.tpl.php:47 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473e8a4a2_10486349)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/a7/9f/ab/a79fab61813b1cd9652d1fdd67f0ec0192d3ce90_2.file.product-cover-thumbnails.tpl.php:474 (_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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/a7/9f/ab/a79fab61813b1cd9652d1fdd67f0ec0192d3ce90_2.file.product-cover-thumbnails.tpl.php:419 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473e5fec9_66458871)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/c5/fe/40/c5fe40dd64cdd89eba28b52f0981bc2787b40b5c_2.file.product-first.tpl.php:206 (_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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/c5/fe/40/c5fe40dd64cdd89eba28b52f0981bc2787b40b5c_2.file.product-first.tpl.php:238 (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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/c5/fe/40/c5fe40dd64cdd89eba28b52f0981bc2787b40b5c_2.file.product-first.tpl.php:272 (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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/c5/fe/40/c5fe40dd64cdd89eba28b52f0981bc2787b40b5c_2.file.product-first.tpl.php:47 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473e00b51_98407663)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:142 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 234 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `xr23z_image` i
INNER JOIN xr23z_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `xr23z_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 3
ORDER BY `position` |
0.176
ms
|
1 |
Yes
|
|
/modules/stthemeeditor/stthemeeditor.php:5421
/modules/stthemeeditor/stthemeeditor.php:5396 (getProductImages)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 253 |
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 `xr23z_product` p
INNER JOIN `xr23z_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `xr23z_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` = 12) |
0.176
ms
|
1 |
|
|
/classes/Product.php:3577
/classes/Product.php:3433 (priceCalculation)
/classes/Product.php:5405 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 4 |
SELECT SQL_NO_CACHE su.physical_uri, su.virtual_uri, su.domain, su.domain_ssl
FROM xr23z_shop s
LEFT JOIN xr23z_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.175
ms
|
1 |
|
|
/classes/shop/Shop.php:218
/classes/shop/Shop.php:152 (setUrl)
/classes/shop/Shop.php:435 (__construct)
/config/config.inc.php:146 (initialize)
/index.php:40 (require_once)
|
| 177 |
SELECT SQL_NO_CACHE `id_module` FROM `xr23z_module` WHERE `name` = "stcustomersignin" LIMIT 1 |
0.175
ms
|
1 |
|
|
/classes/module/Module.php:2758
/classes/module/Module.php:2244 (getModuleIdByName)
/classes/Hook.php:1257 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/ff/02/12/ff021241fc8d9795aa2c8f534088eec29022dd12_2.file.header.tpl.php:84 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/ff/02/12/ff021241fc8d9795aa2c8f534088eec29022dd12_2.file.header.tpl.php:30 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e36500ee11_74762667)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:283 (_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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:86 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 215 |
SELECT SQL_NO_CACHE o.id_order
FROM xr23z_orders o
LEFT JOIN xr23z_order_detail od ON (od.id_order = o.id_order)
WHERE o.valid = 1
AND od.product_id IN (14)
ORDER BY o.id_order DESC
LIMIT 400 |
0.175
ms
|
1 |
Yes
|
|
/modules/ps_crossselling/ps_crossselling.php:257
/modules/ps_crossselling/ps_crossselling.php:214 (getOrderProducts)
/modules/ps_crossselling/ps_crossselling.php:235 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 272 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `xr23z_image` i
INNER JOIN xr23z_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `xr23z_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 12
ORDER BY `position` |
0.173
ms
|
1 |
Yes
|
|
/classes/Product.php:3259
/src/Adapter/Image/ImageRetriever.php:76 (getImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:941 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:137 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:50 (__construct)
/modules/ps_categoryproducts/ps_categoryproducts.php:326 (present)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 414 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `xr23z_stock_available`
WHERE (id_product = 4) AND (id_product_attribute = 17) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.173
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:269
/classes/Product.php:2506 (getQuantityAvailableByProduct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:920 (getAttributesResume)
/src/Adapter/Presenter/Product/ProductLazyArray.php:752 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getFlags)
/var/cache/dev/smarty/compile/transformer/53/b8/7e/53b87e48cd68c1673fe52d704a3eeb41c7d46cac_2.file.sticker.tpl.cache.php:48 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e3653af629_15962486)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/transformer/2e/1c/87/2e1c87f7b380ff9e03bb6b63e57add60db8c1479_2.file.product.tpl.cache.php:63 (_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/dev/smarty/compile/transformer/2e/1c/87/2e1c87f7b380ff9e03bb6b63e57add60db8c1479_2.file.product.tpl.cache.php:192 (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/dev/smarty/compile/transformer/2e/1c/87/2e1c87f7b380ff9e03bb6b63e57add60db8c1479_2.file.product.tpl.cache.php:404 (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/dev/smarty/compile/transformer/2e/1c/87/2e1c87f7b380ff9e03bb6b63e57add60db8c1479_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e365386d75_77248485)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/transformer/4a/dd/9c/4add9c4a8c2e435790d5fd17d45d1c288f523876_2.file.product-slider.tpl.cache.php:102 (_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/dev/smarty/compile/transformer/4a/dd/9c/4add9c4a8c2e435790d5fd17d45d1c288f523876_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e36530d2e7_26274938)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/transformer/39/d3/1a/39d31a599d73c039735add7bd5dc7a2a3a72c0ba_2.module.ps_categoryproductsviewstemplateshookps_categoryproducts.tpl.cache.php:53 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_68ff99ca35e378_79665226)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:55 (fetch)
/classes/module/Module.php:2395 (fetch)
/modules/ps_categoryproducts/ps_categoryproducts.php:254 (fetch)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 89 |
SELECT SQL_NO_CACHE *
FROM `xr23z_category` a
LEFT JOIN `xr23z_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 2) LIMIT 1 |
0.173
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:219 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:178 (__construct)
/modules/steasycontent/classes/StEasyContentClass.php:290 (__construct)
/modules/steasycontent/steasycontent.php:2626 (getListContent)
/modules/steasycontent/steasycontent.php:3819 (_prepareHook)
/classes/Hook.php:1251 (hookDisplayProductExtraContent)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/src/Adapter/HookManager.php:81 (exec)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:71 (exec)
/src/Core/Product/ProductExtraContentFinder.php:57 (find)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:103 (find)
/controllers/front/ProductController.php:1198 (present)
/controllers/front/ProductController.php:337 (getTemplateVarProduct)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 123 |
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `xr23z_image` i
INNER JOIN xr23z_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 13
AND image_shop.`cover` = 1 LIMIT 1 |
0.171
ms
|
1 |
|
|
/classes/Product.php:3290
/modules/stproductlinknav/stproductlinknav.php:132 (getCover)
/modules/stproductlinknav/stproductlinknav.php:186 (_prepareHook)
/classes/Hook.php:1251 (hookDisplayProductExtraContent)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/src/Adapter/HookManager.php:81 (exec)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:71 (exec)
/src/Core/Product/ProductExtraContentFinder.php:57 (find)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:103 (find)
/controllers/front/ProductController.php:1198 (present)
/controllers/front/ProductController.php:337 (getTemplateVarProduct)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 361 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `xr23z_image` i
INNER JOIN xr23z_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `xr23z_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 15
ORDER BY `position` |
0.171
ms
|
1 |
Yes
|
|
/classes/Product.php:3259
/src/Adapter/Image/ImageRetriever.php:76 (getImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:941 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:137 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:50 (__construct)
/modules/ps_categoryproducts/ps_categoryproducts.php:326 (present)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 58 |
SELECT SQL_NO_CACHE ctg.`id_group`
FROM `xr23z_category_product` cp
INNER JOIN `xr23z_category_group` ctg ON (ctg.`id_category` = cp.`id_category`)
WHERE cp.`id_product` = 14 AND ctg.`id_group` = 1 LIMIT 1 |
0.169
ms
|
2 |
|
|
/classes/Product.php:6451
/classes/Product.php:6432 (checkAccessStatic)
/controllers/front/ProductController.php:270 (checkAccess)
/controllers/front/ProductController.php:172 (checkPermissionsToViewProduct)
/tools/profiling/Controller.php:46 (init)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 155 |
SELECT SQL_NO_CACHE `id_module` FROM `xr23z_module` WHERE `name` = "steasybuilder" LIMIT 1 |
0.169
ms
|
0 |
|
|
/classes/module/Module.php:2758
/classes/module/Module.php:2212 (getModuleIdByName)
/modules/stthemeeditor/stthemeeditor.php:4223 (isInstalled)
/modules/stthemeeditor/stthemeeditor.php:4138 (isEbTransPandaInstalled)
/classes/Hook.php:1251 (hookDisplayHeader)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/classes/controller/FrontController.php:589 (exec)
/override/classes/controller/FrontController.php:11 (initContent)
/controllers/front/ProductController.php:418 (initContent)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 112 |
SELECT SQL_NO_CACHE pct.`name`, COUNT(0) total FROM
`xr23z_st_product_comment_tag_map` pctm
LEFT JOIN `xr23z_st_product_comment_tag` pct
ON pct.`id_st_product_comment_tag` = pctm.`id_st_product_comment_tag`
WHERE pct.`id_product` = 14
GROUP BY pct.`name`
ORDER BY total desc
LIMIT 12 |
0.168
ms
|
1 |
Yes
|
|
/modules/stproductcomments/classes/StProductCommentClass.php:315
/modules/stproductcomments/stproductcomments.php:1758 (getTagByProduct)
/modules/stproductcomments/stproductcomments.php:1819 (_prepare_comments)
/classes/Hook.php:1251 (hookDisplayProductExtraContent)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/src/Adapter/HookManager.php:81 (exec)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:71 (exec)
/src/Core/Product/ProductExtraContentFinder.php:57 (find)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:103 (find)
/controllers/front/ProductController.php:1198 (present)
/controllers/front/ProductController.php:337 (getTemplateVarProduct)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 282 |
SELECT SQL_NO_CACHE *
FROM `xr23z_image` i
LEFT JOIN `xr23z_image_lang` il ON (i.`id_image` = il.`id_image`) WHERE i.`id_product` = 13 AND il.`id_lang` = 1
ORDER BY i.`position` ASC |
0.167
ms
|
1 |
Yes
|
|
/classes/Image.php:280
/modules/sthoverimage/sthoverimage.php:445 (getImages)
/modules/sthoverimage/sthoverimage.php:327 (getHoverImageByProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 47 |
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 `xr23z_product` p
INNER JOIN `xr23z_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `xr23z_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` = 14) |
0.167
ms
|
1 |
|
|
/classes/Product.php:3577
/classes/Product.php:3433 (priceCalculation)
/classes/Product.php:730 (getPriceStatic)
/controllers/front/ProductController.php:149 (__construct)
/tools/profiling/Controller.php:46 (init)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 60 |
SELECT SQL_NO_CACHE * FROM `xr23z_hook_module_exceptions`
WHERE `id_shop` IN (1) |
0.167
ms
|
1 |
|
|
/classes/module/Module.php:2146
/classes/Hook.php:1064 (getExceptionsStatic)
/classes/controller/FrontController.php:957 (exec)
/tools/profiling/Controller.php:53 (setMedia)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 172 |
SELECT SQL_NO_CACHE `id_module` FROM `xr23z_module` WHERE `name` = "stlanguageselector" LIMIT 1 |
0.167
ms
|
1 |
|
|
/classes/module/Module.php:2758
/classes/module/Module.php:2244 (getModuleIdByName)
/classes/Hook.php:1257 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/ff/02/12/ff021241fc8d9795aa2c8f534088eec29022dd12_2.file.header.tpl.php:81 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/ff/02/12/ff021241fc8d9795aa2c8f534088eec29022dd12_2.file.header.tpl.php:30 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e36500ee11_74762667)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:283 (_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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:86 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 196 |
SELECT SQL_NO_CACHE `id_module` FROM `xr23z_module` WHERE `name` = "steasycontent" LIMIT 1 |
0.167
ms
|
1 |
|
|
/classes/module/Module.php:2758
/classes/module/Module.php:2244 (getModuleIdByName)
/classes/Hook.php:1257 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:339 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:232 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:181 (callParent)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 249 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `xr23z_image` i
INNER JOIN xr23z_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `xr23z_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 3
ORDER BY `position` |
0.167
ms
|
1 |
Yes
|
|
/classes/Product.php:3259
/src/Adapter/Image/ImageRetriever.php:76 (getImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:941 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:137 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:50 (__construct)
/modules/ps_categoryproducts/ps_categoryproducts.php:326 (present)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 300 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `xr23z_stock_available`
WHERE (id_product = 5) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.167
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:269
/classes/Product.php:4066 (getQuantityAvailableByProduct)
/classes/Product.php:5511 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 398 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `xr23z_category` c
LEFT JOIN `xr23z_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 15 AND c.`nright` >= 16 AND c.`nleft` >= 2 AND c.`nright` <= 17 ORDER BY `nleft` DESC |
0.166
ms
|
2 |
Yes
|
|
/classes/Category.php:1587
/modules/ststickers/classes/StStickersMapClass.php:174 (getParentsCategories)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 276 |
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 `xr23z_product` p
INNER JOIN `xr23z_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `xr23z_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` = 13) |
0.166
ms
|
1 |
|
|
/classes/Product.php:3577
/classes/Product.php:3433 (priceCalculation)
/classes/Product.php:5405 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 324 |
SELECT SQL_NO_CACHE pai.`id_image`, pai.`id_product_attribute`, il.`legend`
FROM `xr23z_product_attribute_image` pai
LEFT JOIN `xr23z_image_lang` il ON (il.`id_image` = pai.`id_image`)
INNER JOIN `xr23z_image` i ON (i.`id_image` = pai.`id_image`)
WHERE i.`id_product` = 5 AND il.`id_lang` = 1 ORDER by i.`position` |
0.165
ms
|
1 |
Yes
|
|
/classes/Product.php:2642
/src/Adapter/Image/ImageRetriever.php:82 (getCombinationImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:941 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:137 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:50 (__construct)
/modules/ps_categoryproducts/ps_categoryproducts.php:326 (present)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 44 |
SELECT SQL_NO_CACHE product_attribute_shop.id_product_attribute
FROM xr23z_product_attribute pa
INNER JOIN xr23z_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 = 14 LIMIT 1 |
0.164
ms
|
1 |
|
|
/classes/Product.php:1077
/classes/Product.php:3534 (getDefaultAttribute)
/classes/Product.php:3433 (priceCalculation)
/classes/Product.php:730 (getPriceStatic)
/controllers/front/ProductController.php:149 (__construct)
/tools/profiling/Controller.php:46 (init)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 72 |
SELECT SQL_NO_CACHE 1 FROM `xr23z_specific_price` WHERE `id_product` != 0 LIMIT 1 |
0.164
ms
|
2 |
|
|
/classes/SpecificPrice.php:294
/classes/SpecificPrice.php:357 (filterOutField)
/classes/SpecificPrice.php:611 (computeExtraConditions)
/controllers/front/ProductController.php:570 (getQuantityDiscounts)
/controllers/front/ProductController.php:327 (assignPriceAndTax)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 92 |
SELECT SQL_NO_CACHE *
FROM `xr23z_category` a
LEFT JOIN `xr23z_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 1
LEFT JOIN `xr23z_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.164
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:219 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:178 (__construct)
/classes/Category.php:1119 (__construct)
/classes/Category.php:1567 (getRootCategory)
/modules/steasycontent/classes/StEasyContentClass.php:299 (getParentsCategories)
/modules/steasycontent/steasycontent.php:2626 (getListContent)
/modules/steasycontent/steasycontent.php:3819 (_prepareHook)
/classes/Hook.php:1251 (hookDisplayProductExtraContent)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/src/Adapter/HookManager.php:81 (exec)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:71 (exec)
/src/Core/Product/ProductExtraContentFinder.php:57 (find)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:103 (find)
/controllers/front/ProductController.php:1198 (present)
/controllers/front/ProductController.php:337 (getTemplateVarProduct)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 265 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `xr23z_category` c
LEFT JOIN `xr23z_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 2 AND c.`nright` >= 17 AND c.`nleft` >= 2 AND c.`nright` <= 17 ORDER BY `nleft` DESC |
0.164
ms
|
1 |
Yes
|
|
/classes/Category.php:1587
/modules/ststickers/classes/StStickersMapClass.php:174 (getParentsCategories)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 288 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `xr23z_category` c
LEFT JOIN `xr23z_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 2 AND c.`nright` >= 17 AND c.`nleft` >= 2 AND c.`nright` <= 17 ORDER BY `nleft` DESC |
0.164
ms
|
1 |
Yes
|
|
/classes/Category.php:1587
/modules/ststickers/classes/StStickersMapClass.php:174 (getParentsCategories)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 26 |
SELECT SQL_NO_CACHE *
FROM `xr23z_currency` a
LEFT JOIN `xr23z_currency_lang` `b` ON a.`id_currency` = b.`id_currency` AND b.`id_lang` = 1
LEFT JOIN `xr23z_currency_shop` `c` ON a.`id_currency` = c.`id_currency` AND c.`id_shop` = 1
WHERE (a.`id_currency` = 1) LIMIT 1 |
0.163
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:219 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Currency.php:246 (__construct)
/src/Adapter/Currency/CurrencyDataProvider.php:101 (__construct)
/src/Adapter/Currency/CurrencyDataProvider.php:114 (getCurrencyByIsoCode)
/src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:101 (getCurrencyByIsoCodeAndLocale)
/src/Core/Data/Layer/AbstractDataLayer.php:90 (doRead)
/src/Core/Data/Layer/AbstractDataLayer.php:149 (read)
/src/Core/Data/Layer/AbstractDataLayer.php:94 (propagateRead)
/src/Core/Localization/Currency/CurrencyDataSource.php:67 (read)
/src/Core/Localization/Currency/CurrencyDataSource.php:109 (getLocalizedCurrencyData)
/src/Core/Localization/Currency/CurrencyDataSource.php:96 (formatCurrenciesData)
/src/Core/Localization/Currency/Repository.php:87 (getAllInstalledCurrenciesData)
/src/Core/Localization/Locale/Repository.php:206 (getAllInstalledCurrencies)
/src/Core/Localization/Locale/Repository.php:149 (getPriceSpecifications)
/classes/controller/Controller.php:219 (getLocale)
/classes/controller/FrontController.php:242 (init)
/controllers/front/ProductController.php:127 (init)
/tools/profiling/Controller.php:46 (init)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 258 |
SELECT SQL_NO_CACHE COUNT(0) as total,
(SUM(pc.`grade`) / COUNT(pc.`grade`)) AS avg,
MIN(pc.`grade`) AS min,
MAX(pc.`grade`) AS max
FROM `xr23z_st_product_comment` pc
WHERE pc.`id_product` = 12
AND pc.`id_parent` = 0
AND pc.`id_shop`=1 AND pc.`validate` = 1 LIMIT 1 |
0.163
ms
|
1 |
|
|
/modules/stproductcomments/classes/StProductCommentClass.php:373
/modules/stproductcomments/stproductcomments.php:1724 (getRatings)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 57 |
SELECT SQL_NO_CACHE id_shop
FROM `xr23z_product_shop`
WHERE `id_product` = 14
AND id_shop = 1 LIMIT 1 |
0.163
ms
|
1 |
|
|
/classes/ObjectModel.php:1582
/controllers/front/ProductController.php:197 (isAssociatedToShop)
/controllers/front/ProductController.php:172 (checkPermissionsToViewProduct)
/tools/profiling/Controller.php:46 (init)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 136 |
SELECT SQL_NO_CACHE id_st_sticker FROM `xr23z_st_sticker_map`
WHERE active = 1 AND (location = 0 OR (location = 3 AND (id_manufacturer = 0 OR id_manufacturer=2)) OR (location = 2 AND (id_category = 0 OR id_category IN(2,9))) OR (location = 1 AND (id_products LIKE "%,14,%"))) |
0.163
ms
|
1 |
|
|
/modules/ststickers/classes/StStickersMapClass.php:188
/modules/ststickers/ststickers.php:1741 (getForProduct)
/classes/Hook.php:1251 (hookDisplayProductExtraContent)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/src/Adapter/HookManager.php:81 (exec)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:71 (exec)
/src/Core/Product/ProductExtraContentFinder.php:57 (find)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:103 (find)
/controllers/front/ProductController.php:1198 (present)
/controllers/front/ProductController.php:337 (getTemplateVarProduct)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 7 |
SELECT SQL_NO_CACHE *
FROM `xr23z_shop_group` a
WHERE (a.`id_shop_group` = 1) LIMIT 1 |
0.162
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:219 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/shop/Shop.php:565 (__construct)
/config/config.inc.php:203 (getGroup)
/index.php:40 (require_once)
|
| 129 |
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `xr23z_image` i
INNER JOIN xr23z_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 15
AND image_shop.`cover` = 1 LIMIT 1 |
0.162
ms
|
1 |
|
|
/classes/Product.php:3290
/modules/stproductlinknav/stproductlinknav.php:132 (getCover)
/modules/stproductlinknav/stproductlinknav.php:187 (_prepareHook)
/classes/Hook.php:1251 (hookDisplayProductExtraContent)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/src/Adapter/HookManager.php:81 (exec)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:71 (exec)
/src/Core/Product/ProductExtraContentFinder.php:57 (find)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:103 (find)
/controllers/front/ProductController.php:1198 (present)
/controllers/front/ProductController.php:337 (getTemplateVarProduct)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 295 |
SELECT SQL_NO_CACHE pai.`id_image`, pai.`id_product_attribute`, il.`legend`
FROM `xr23z_product_attribute_image` pai
LEFT JOIN `xr23z_image_lang` il ON (il.`id_image` = pai.`id_image`)
INNER JOIN `xr23z_image` i ON (i.`id_image` = pai.`id_image`)
WHERE i.`id_product` = 13 AND il.`id_lang` = 1 ORDER by i.`position` |
0.162
ms
|
1 |
Yes
|
|
/classes/Product.php:2642
/src/Adapter/Image/ImageRetriever.php:82 (getCombinationImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:941 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:137 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:50 (__construct)
/modules/ps_categoryproducts/ps_categoryproducts.php:326 (present)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 242 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `xr23z_category` c
LEFT JOIN `xr23z_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 2 AND c.`nright` >= 17 AND c.`nleft` >= 2 AND c.`nright` <= 17 ORDER BY `nleft` DESC |
0.162
ms
|
1 |
Yes
|
|
/classes/Category.php:1587
/modules/ststickers/classes/StStickersMapClass.php:174 (getParentsCategories)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 64 |
SELECT SQL_NO_CACHE id_shop
FROM `xr23z_category_shop`
WHERE `id_category` = 9
AND id_shop = 1 LIMIT 1 |
0.161
ms
|
1 |
|
|
/classes/ObjectModel.php:1582
/controllers/front/ProductController.php:881 (isAssociatedToShop)
/controllers/front/ProductController.php:321 (assignCategory)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 69 |
SELECT SQL_NO_CACHE * FROM `xr23z_image_type` |
0.161
ms
|
24 |
|
|
/classes/ImageType.php:165
/classes/ImageType.php:206 (getByNameNType)
/src/Adapter/Image/ImageRetriever.php:220 (getFormattedName)
/src/Adapter/Presenter/Manufacturer/ManufacturerLazyArray.php:97 (getImage)
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getImage)
/controllers/front/ProductController.php:863 (offsetGet)
/controllers/front/ProductController.php:324 (assignManufacturer)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 385 |
SELECT SQL_NO_CACHE *
FROM `xr23z_product_attribute` a
LEFT JOIN `xr23z_product_attribute_shop` `c` ON a.`id_product_attribute` = c.`id_product_attribute` AND c.`id_shop` = 1
WHERE (a.`id_product_attribute` = 16) LIMIT 1 |
0.161
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:219 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:5597 (__construct)
/classes/Product.php:5560 (computeUnitPriceRatio)
/classes/ProductAssembler.php:191 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 436 |
SELECT SQL_NO_CACHE *
FROM `xr23z_st_wishlist`
WHERE `id_customer` = 0
AND `id_shop` = 1
ORDER BY `name` ASC |
0.161
ms
|
4 |
Yes
|
|
/modules/stwishlist/classes/StWishListClass.php:166
/modules/stwishlist/stwishlist.php:1165 (getByIdCustomer)
/classes/Hook.php:1251 (hookDisplaySideBar)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:526 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:147 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 51 |
SELECT SQL_NO_CACHE t.`id_lang`, t.`name`
FROM xr23z_tag t
LEFT JOIN xr23z_product_tag pt ON (pt.id_tag = t.id_tag)
WHERE pt.`id_product`=14 |
0.160
ms
|
1 |
|
|
/classes/Tag.php:239
/classes/Product.php:731 (getProductTags)
/controllers/front/ProductController.php:149 (__construct)
/tools/profiling/Controller.php:46 (init)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 161 |
SELECT SQL_NO_CACHE `id_module` FROM `xr23z_module_shop` WHERE `id_module` = 33 AND `id_shop` = 1 LIMIT 1 |
0.159
ms
|
1 |
|
|
/classes/module/Module.php:2245
/modules/ps_facebook/classes/Handler/ErrorHandler/ErrorHandler.php:55 (isEnabled)
/var/cache/dev/Ps_facebookFrontContainer.php:268 (__construct)
/vendor/symfony/dependency-injection/Container.php:231 (getErrorHandlerService)
/vendor/symfony/dependency-injection/Container.php:211 (make)
/modules/psxmarketingwithgoogle/vendor/prestashop/module-lib-service-container/src/DependencyInjection/ServiceContainer.php:64 (get)
/modules/ps_facebook/ps_facebook.php:145 (getService)
/modules/ps_facebook/ps_facebook.php:308 (getService)
/classes/Hook.php:1251 (hookDisplayHeader)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/classes/controller/FrontController.php:589 (exec)
/override/classes/controller/FrontController.php:11 (initContent)
/controllers/front/ProductController.php:418 (initContent)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 389 |
SELECT SQL_NO_CACHE *
FROM `xr23z_image` i
LEFT JOIN `xr23z_image_lang` il ON (i.`id_image` = il.`id_image`) WHERE i.`id_product` = 4 AND il.`id_lang` = 1
ORDER BY i.`position` ASC |
0.158
ms
|
1 |
Yes
|
|
/classes/Image.php:280
/modules/sthoverimage/sthoverimage.php:445 (getImages)
/modules/sthoverimage/sthoverimage.php:327 (getHoverImageByProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 208 |
SELECT SQL_NO_CACHE `id_module` FROM `xr23z_module` WHERE `name` = "stviewedproducts" LIMIT 1 |
0.157
ms
|
1 |
|
|
/classes/module/Module.php:2758
/classes/module/Module.php:2244 (getModuleIdByName)
/classes/Hook.php:1257 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/f2/a0/22/f2a0224fc3ab32e00194b998fb77b7d09da0cd0f_2.file.product-additional-info.tpl.php:25 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04741bc849_32116529)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/23/2c/b4/232cb4c3d60eef13f80ba9ebfd305b666551b940_2.file.product-buy.tpl.php:124 (_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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/23/2c/b4/232cb4c3d60eef13f80ba9ebfd305b666551b940_2.file.product-buy.tpl.php:216 (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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/23/2c/b4/232cb4c3d60eef13f80ba9ebfd305b666551b940_2.file.product-buy.tpl.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04740d0ba8_11468668)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/c5/fe/40/c5fe40dd64cdd89eba28b52f0981bc2787b40b5c_2.file.product-first.tpl.php:106 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473e00b51_98407663)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:142 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 410 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `xr23z_stock_available`
WHERE (id_product = 5) AND (id_product_attribute = 20) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.157
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:269
/classes/Product.php:2506 (getQuantityAvailableByProduct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:920 (getAttributesResume)
/src/Adapter/Presenter/Product/ProductLazyArray.php:752 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getFlags)
/var/cache/dev/smarty/compile/transformer/53/b8/7e/53b87e48cd68c1673fe52d704a3eeb41c7d46cac_2.file.sticker.tpl.cache.php:48 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e3653af629_15962486)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/transformer/2e/1c/87/2e1c87f7b380ff9e03bb6b63e57add60db8c1479_2.file.product.tpl.cache.php:63 (_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/dev/smarty/compile/transformer/2e/1c/87/2e1c87f7b380ff9e03bb6b63e57add60db8c1479_2.file.product.tpl.cache.php:192 (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/dev/smarty/compile/transformer/2e/1c/87/2e1c87f7b380ff9e03bb6b63e57add60db8c1479_2.file.product.tpl.cache.php:404 (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/dev/smarty/compile/transformer/2e/1c/87/2e1c87f7b380ff9e03bb6b63e57add60db8c1479_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e365386d75_77248485)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/transformer/4a/dd/9c/4add9c4a8c2e435790d5fd17d45d1c288f523876_2.file.product-slider.tpl.cache.php:102 (_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/dev/smarty/compile/transformer/4a/dd/9c/4add9c4a8c2e435790d5fd17d45d1c288f523876_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e36530d2e7_26274938)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/transformer/39/d3/1a/39d31a599d73c039735add7bd5dc7a2a3a72c0ba_2.module.ps_categoryproductsviewstemplateshookps_categoryproducts.tpl.cache.php:53 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_68ff99ca35e378_79665226)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:55 (fetch)
/classes/module/Module.php:2395 (fetch)
/modules/ps_categoryproducts/ps_categoryproducts.php:254 (fetch)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 162 |
SELECT SQL_NO_CACHE `id_module` FROM `xr23z_module` WHERE `name` = "ps_accounts" LIMIT 1 |
0.157
ms
|
1 |
|
|
/src/Adapter/Module/ModuleDataProvider.php:251
/src/Adapter/Module/ModuleDataProvider.php:223 (getModuleIdByName)
/src/Core/Module/ModuleManager.php:297 (isInstalled)
/modules/psxmarketingwithgoogle/vendor/prestashop/prestashop-accounts-installer/src/Installer/Installer.php:83 (isInstalled)
/modules/psxmarketingwithgoogle/vendor/prestashop/prestashop-accounts-installer/src/Installer/Facade/PsAccounts.php:44 (isModuleInstalled)
/modules/psxmarketingwithgoogle/vendor/prestashop/prestashop-accounts-installer/src/Installer/Facade/PsAccounts.php:62 (getService)
/modules/ps_facebook/classes/Handler/ErrorHandler/ErrorHandler.php:66 (getPsAccountsService)
/var/cache/dev/Ps_facebookFrontContainer.php:268 (__construct)
/vendor/symfony/dependency-injection/Container.php:231 (getErrorHandlerService)
/vendor/symfony/dependency-injection/Container.php:211 (make)
/modules/psxmarketingwithgoogle/vendor/prestashop/module-lib-service-container/src/DependencyInjection/ServiceContainer.php:64 (get)
/modules/ps_facebook/ps_facebook.php:145 (getService)
/modules/ps_facebook/ps_facebook.php:308 (getService)
/classes/Hook.php:1251 (hookDisplayHeader)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/classes/controller/FrontController.php:589 (exec)
/override/classes/controller/FrontController.php:11 (initContent)
/controllers/front/ProductController.php:418 (initContent)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 235 |
SELECT SQL_NO_CACHE COUNT(0) as total,
(SUM(pc.`grade`) / COUNT(pc.`grade`)) AS avg,
MIN(pc.`grade`) AS min,
MAX(pc.`grade`) AS max
FROM `xr23z_st_product_comment` pc
WHERE pc.`id_product` = 3
AND pc.`id_parent` = 0
AND pc.`id_shop`=1 AND pc.`validate` = 1 LIMIT 1 |
0.157
ms
|
1 |
|
|
/modules/stproductcomments/classes/StProductCommentClass.php:373
/modules/stproductcomments/stproductcomments.php:1724 (getRatings)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 309 |
SELECT SQL_NO_CACHE COUNT(0) as total,
(SUM(pc.`grade`) / COUNT(pc.`grade`)) AS avg,
MIN(pc.`grade`) AS min,
MAX(pc.`grade`) AS max
FROM `xr23z_st_product_comment` pc
WHERE pc.`id_product` = 5
AND pc.`id_parent` = 0
AND pc.`id_shop`=1 AND pc.`validate` = 1 LIMIT 1 |
0.156
ms
|
1 |
|
|
/modules/stproductcomments/classes/StProductCommentClass.php:373
/modules/stproductcomments/stproductcomments.php:1724 (getRatings)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 56 |
SELECT SQL_NO_CACHE pa.id_product_attribute
FROM `xr23z_product_attribute` pa INNER JOIN xr23z_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` = 14 |
0.155
ms
|
1 |
|
|
/classes/Product.php:7113
/classes/Product.php:7197 (getProductAttributesIds)
/controllers/front/ProductController.php:86 (hasCombinations)
/controllers/front/ProductController.php:163 (canonicalRedirection)
/tools/profiling/Controller.php:46 (init)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 105 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `xr23z_category` c
LEFT JOIN `xr23z_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 9 LIMIT 1 |
0.155
ms
|
1 |
|
|
/classes/Category.php:1577
/modules/steasycontent/classes/StEasyContentClass.php:299 (getParentsCategories)
/modules/steasycontent/steasycontent.php:2626 (getListContent)
/modules/steasycontent/steasycontent.php:3822 (_prepareHook)
/classes/Hook.php:1251 (hookDisplayProductExtraContent)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/src/Adapter/HookManager.php:81 (exec)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:71 (exec)
/src/Core/Product/ProductExtraContentFinder.php:57 (find)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:103 (find)
/controllers/front/ProductController.php:1198 (present)
/controllers/front/ProductController.php:337 (getTemplateVarProduct)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 174 |
SELECT SQL_NO_CACHE `id_module` FROM `xr23z_module` WHERE `name` = "stcurrencyselector" LIMIT 1 |
0.155
ms
|
1 |
|
|
/classes/module/Module.php:2758
/classes/module/Module.php:2244 (getModuleIdByName)
/classes/Hook.php:1257 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/ff/02/12/ff021241fc8d9795aa2c8f534088eec29022dd12_2.file.header.tpl.php:81 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/ff/02/12/ff021241fc8d9795aa2c8f534088eec29022dd12_2.file.header.tpl.php:30 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e36500ee11_74762667)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:283 (_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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:86 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 250 |
SELECT SQL_NO_CACHE pai.`id_image`, pai.`id_product_attribute`, il.`legend`
FROM `xr23z_product_attribute_image` pai
LEFT JOIN `xr23z_image_lang` il ON (il.`id_image` = pai.`id_image`)
INNER JOIN `xr23z_image` i ON (i.`id_image` = pai.`id_image`)
WHERE i.`id_product` = 3 AND il.`id_lang` = 1 ORDER by i.`position` |
0.155
ms
|
1 |
Yes
|
|
/classes/Product.php:2642
/src/Adapter/Image/ImageRetriever.php:82 (getCombinationImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:941 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:137 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:50 (__construct)
/modules/ps_categoryproducts/ps_categoryproducts.php:326 (present)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 281 |
SELECT SQL_NO_CACHE COUNT(0) as total,
(SUM(pc.`grade`) / COUNT(pc.`grade`)) AS avg,
MIN(pc.`grade`) AS min,
MAX(pc.`grade`) AS max
FROM `xr23z_st_product_comment` pc
WHERE pc.`id_product` = 13
AND pc.`id_parent` = 0
AND pc.`id_shop`=1 AND pc.`validate` = 1 LIMIT 1 |
0.155
ms
|
1 |
|
|
/modules/stproductcomments/classes/StProductCommentClass.php:373
/modules/stproductcomments/stproductcomments.php:1724 (getRatings)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 245 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `xr23z_category` c
LEFT JOIN `xr23z_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 15 AND c.`nright` >= 16 AND c.`nleft` >= 2 AND c.`nright` <= 17 ORDER BY `nleft` DESC |
0.154
ms
|
2 |
Yes
|
|
/classes/Category.php:1587
/modules/ststickers/classes/StStickersMapClass.php:174 (getParentsCategories)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 294 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `xr23z_image` i
INNER JOIN xr23z_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `xr23z_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 13
ORDER BY `position` |
0.153
ms
|
1 |
Yes
|
|
/classes/Product.php:3259
/src/Adapter/Image/ImageRetriever.php:76 (getImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:941 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:137 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:50 (__construct)
/modules/ps_categoryproducts/ps_categoryproducts.php:326 (present)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 148 |
SELECT SQL_NO_CACHE * FROM `xr23z_image_type` WHERE 1 AND `stores` = 1 AND `theme_name` = 'transformer' OR `theme_name` IS NULL ORDER BY `width` DESC, `height` DESC, `name`ASC |
0.152
ms
|
24 |
Yes
|
|
/classes/ImageType.php:113
/src/Adapter/Image/ImageRetriever.php:375 (getImagesTypes)
/classes/controller/FrontController.php:1541 (getNoPictureImage)
/classes/controller/FrontController.php:1693 (getTemplateVarUrls)
/classes/controller/FrontController.php:522 (getTemplateVarShop)
/classes/controller/FrontController.php:585 (assignGeneralPurposeVariables)
/override/classes/controller/FrontController.php:11 (initContent)
/controllers/front/ProductController.php:418 (initContent)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 321 |
SELECT SQL_NO_CACHE count(0)
FROM `xr23z_st_wishlist_product` whp
LEFT JOIN `xr23z_st_wishlist` wh ON (wh.`id_st_wishlist`=whp.`id_st_wishlist`)
WHERE whp.`id_product` = 5 AND wh.`id_customer`=0 AND wh.`id_shop`= 1 LIMIT 1 |
0.152
ms
|
1 |
|
|
/modules/stwishlist/classes/StWishListClass.php:364
/modules/stwishlist/stwishlist.php:1259 (countProCustomer)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 340 |
SELECT SQL_NO_CACHE COUNT(0) as total,
(SUM(pc.`grade`) / COUNT(pc.`grade`)) AS avg,
MIN(pc.`grade`) AS min,
MAX(pc.`grade`) AS max
FROM `xr23z_st_product_comment` pc
WHERE pc.`id_product` = 15
AND pc.`id_parent` = 0
AND pc.`id_shop`=1 AND pc.`validate` = 1 LIMIT 1 |
0.152
ms
|
1 |
|
|
/modules/stproductcomments/classes/StProductCommentClass.php:373
/modules/stproductcomments/stproductcomments.php:1724 (getRatings)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 441 |
SELECT SQL_NO_CACHE `id_page`
FROM `xr23z_page`
WHERE `id_page_type` = 4 AND `id_object` = 14 LIMIT 1 |
0.152
ms
|
1 |
|
|
/classes/Page.php:83
/classes/Connection.php:180 (getCurrentId)
/classes/Connection.php:97 (setNewConnection)
/modules/statsdata/statsdata.php:118 (setPageConnection)
/modules/statsdata/statsdata.php:74 (getScriptCustomerPagesViews)
/classes/Hook.php:1251 (hookDisplayBeforeBodyClosingTag)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:628 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:182 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 55 |
SELECT SQL_NO_CACHE cl.`link_rewrite`
FROM `xr23z_category_lang` cl
WHERE `id_lang` = 1
AND cl.id_shop = 1
AND cl.`id_category` = 9 LIMIT 1 |
0.152
ms
|
1 |
|
|
/classes/Category.php:1366
/classes/Product.php:740 (getLinkRewrite)
/controllers/front/ProductController.php:149 (__construct)
/tools/profiling/Controller.php:46 (init)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 350 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `xr23z_category` c
LEFT JOIN `xr23z_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 9 AND c.`nright` >= 14 AND c.`nleft` >= 2 AND c.`nright` <= 17 ORDER BY `nleft` DESC |
0.152
ms
|
3 |
Yes
|
|
/classes/Category.php:1587
/modules/ststickers/classes/StStickersMapClass.php:174 (getParentsCategories)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 35 |
SELECT SQL_NO_CACHE `name`
FROM `xr23z_manufacturer`
WHERE `id_manufacturer` = 2
AND `active` = 1 LIMIT 1 |
0.151
ms
|
1 |
|
|
/classes/Manufacturer.php:306
/classes/Product.php:716 (getNameById)
/controllers/front/ProductController.php:149 (__construct)
/tools/profiling/Controller.php:46 (init)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 236 |
SELECT SQL_NO_CACHE *
FROM `xr23z_image` i
LEFT JOIN `xr23z_image_lang` il ON (i.`id_image` = il.`id_image`) WHERE i.`id_product` = 3 AND il.`id_lang` = 1
ORDER BY i.`position` ASC |
0.151
ms
|
1 |
Yes
|
|
/classes/Image.php:280
/modules/sthoverimage/sthoverimage.php:445 (getImages)
/modules/sthoverimage/sthoverimage.php:327 (getHoverImageByProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 157 |
SELECT SQL_NO_CACHE `id_module` FROM `xr23z_module_shop` WHERE `id_module` = 113 AND `id_shop` = 1 LIMIT 1 |
0.150
ms
|
1 |
|
|
/classes/module/Module.php:2245
/modules/stthemeeditor/stthemeeditor.php:4272 (isEnabled)
/modules/stthemeeditor/stthemeeditor.php:4155 (getStBasicVals)
/classes/Hook.php:1251 (hookDisplayHeader)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/classes/controller/FrontController.php:589 (exec)
/override/classes/controller/FrontController.php:11 (initContent)
/controllers/front/ProductController.php:418 (initContent)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 167 |
SELECT SQL_NO_CACHE `id_module` FROM `xr23z_module` WHERE `name` = "supercheckout" LIMIT 1 |
0.150
ms
|
0 |
|
|
/classes/module/Module.php:2758
/classes/module/Module.php:2212 (getModuleIdByName)
/modules/zipcodeautocomplete/zipcodeautocomplete.php:170 (isInstalled)
/classes/Hook.php:1251 (hookHeader)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/classes/controller/FrontController.php:589 (exec)
/override/classes/controller/FrontController.php:11 (initContent)
/controllers/front/ProductController.php:418 (initContent)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 341 |
SELECT SQL_NO_CACHE *
FROM `xr23z_image` i
LEFT JOIN `xr23z_image_lang` il ON (i.`id_image` = il.`id_image`) WHERE i.`id_product` = 15 AND il.`id_lang` = 1
ORDER BY i.`position` ASC |
0.150
ms
|
1 |
Yes
|
|
/classes/Image.php:280
/modules/sthoverimage/sthoverimage.php:445 (getImages)
/modules/sthoverimage/sthoverimage.php:327 (getHoverImageByProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 355 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `xr23z_category` c
LEFT JOIN `xr23z_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 12 AND c.`nright` >= 13 AND c.`nleft` >= 2 AND c.`nright` <= 17 ORDER BY `nleft` DESC |
0.149
ms
|
9 |
Yes
|
|
/classes/Category.php:1587
/modules/ststickers/classes/StStickersMapClass.php:174 (getParentsCategories)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 362 |
SELECT SQL_NO_CACHE pai.`id_image`, pai.`id_product_attribute`, il.`legend`
FROM `xr23z_product_attribute_image` pai
LEFT JOIN `xr23z_image_lang` il ON (il.`id_image` = pai.`id_image`)
INNER JOIN `xr23z_image` i ON (i.`id_image` = pai.`id_image`)
WHERE i.`id_product` = 15 AND il.`id_lang` = 1 ORDER by i.`position` |
0.149
ms
|
1 |
Yes
|
|
/classes/Product.php:2642
/src/Adapter/Image/ImageRetriever.php:82 (getCombinationImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:941 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:137 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:50 (__construct)
/modules/ps_categoryproducts/ps_categoryproducts.php:326 (present)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 31 |
SELECT SQL_NO_CACHE *
FROM `xr23z_group` a
LEFT JOIN `xr23z_group_shop` `c` ON a.`id_group` = c.`id_group` AND c.`id_shop` = 1
WHERE (a.`id_group` = 1) LIMIT 1 |
0.148
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:219 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Group.php:81 (__construct)
/classes/Group.php:397 (__construct)
/classes/Cart.php:255 (getCurrent)
/classes/Cart.php:228 (setTaxCalculationMethod)
/classes/controller/FrontController.php:430 (__construct)
/controllers/front/ProductController.php:127 (init)
/tools/profiling/Controller.php:46 (init)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 98 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `xr23z_category` c
LEFT JOIN `xr23z_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 9 LIMIT 1 |
0.148
ms
|
1 |
|
|
/classes/Category.php:1577
/modules/steasycontent/classes/StEasyContentClass.php:299 (getParentsCategories)
/modules/steasycontent/steasycontent.php:2626 (getListContent)
/modules/steasycontent/steasycontent.php:3819 (_prepareHook)
/classes/Hook.php:1251 (hookDisplayProductExtraContent)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/src/Adapter/HookManager.php:81 (exec)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:71 (exec)
/src/Core/Product/ProductExtraContentFinder.php:57 (find)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:103 (find)
/controllers/front/ProductController.php:1198 (present)
/controllers/front/ProductController.php:337 (getTemplateVarProduct)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 110 |
SELECT SQL_NO_CACHE COUNT(pc.`id_product`) AS nbr
FROM `xr23z_st_product_comment` pc
WHERE pc.`id_parent` = 0
AND pc.`id_product` = 14
AND pc.`id_shop`=1 AND `validate` = 1
AND `grade` > 0 LIMIT 1 |
0.148
ms
|
1 |
|
|
/modules/stproductcomments/classes/StProductCommentClass.php:451
/modules/stproductcomments/classes/StProductCommentClass.php:393 (getGradedCommentNumber)
/modules/stproductcomments/stproductcomments.php:1742 (getAveragesByProduct)
/modules/stproductcomments/stproductcomments.php:1819 (_prepare_comments)
/classes/Hook.php:1251 (hookDisplayProductExtraContent)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/src/Adapter/HookManager.php:81 (exec)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:71 (exec)
/src/Core/Product/ProductExtraContentFinder.php:57 (find)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:103 (find)
/controllers/front/ProductController.php:1198 (present)
/controllers/front/ProductController.php:337 (getTemplateVarProduct)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 186 |
SELECT SQL_NO_CACHE `id_module` FROM `xr23z_module` WHERE `name` = "stshoppingcart" LIMIT 1 |
0.148
ms
|
1 |
|
|
/classes/module/Module.php:2758
/classes/module/Module.php:2212 (getModuleIdByName)
/modules/stsidebar/stsidebar.php:1393 (isInstalled)
/modules/stsidebar/stsidebar.php:1332 (validateNativeModules)
/modules/stsidebar/stsidebar.php:1351 (hookDisplayMobileBar)
/classes/Hook.php:1251 (hookDisplayMobileBarLeft)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/ff/02/12/ff021241fc8d9795aa2c8f534088eec29022dd12_2.file.header.tpl.php:122 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/ff/02/12/ff021241fc8d9795aa2c8f534088eec29022dd12_2.file.header.tpl.php:200 (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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/ff/02/12/ff021241fc8d9795aa2c8f534088eec29022dd12_2.file.header.tpl.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e36500ee11_74762667)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:283 (_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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:86 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 310 |
SELECT SQL_NO_CACHE *
FROM `xr23z_image` i
LEFT JOIN `xr23z_image_lang` il ON (i.`id_image` = il.`id_image`) WHERE i.`id_product` = 5 AND il.`id_lang` = 1
ORDER BY i.`position` ASC |
0.148
ms
|
1 |
Yes
|
|
/classes/Image.php:280
/modules/sthoverimage/sthoverimage.php:445 (getImages)
/modules/sthoverimage/sthoverimage.php:327 (getHoverImageByProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 319 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `xr23z_category` c
LEFT JOIN `xr23z_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 15 AND c.`nright` >= 16 AND c.`nleft` >= 2 AND c.`nright` <= 17 ORDER BY `nleft` DESC |
0.148
ms
|
2 |
Yes
|
|
/classes/Category.php:1587
/modules/ststickers/classes/StStickersMapClass.php:174 (getParentsCategories)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 358 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `xr23z_category` c
LEFT JOIN `xr23z_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 15 AND c.`nright` >= 16 AND c.`nleft` >= 2 AND c.`nright` <= 17 ORDER BY `nleft` DESC |
0.148
ms
|
2 |
Yes
|
|
/classes/Category.php:1587
/modules/ststickers/classes/StStickersMapClass.php:174 (getParentsCategories)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 268 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `xr23z_category` c
LEFT JOIN `xr23z_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 15 AND c.`nright` >= 16 AND c.`nleft` >= 2 AND c.`nright` <= 17 ORDER BY `nleft` DESC |
0.148
ms
|
2 |
Yes
|
|
/classes/Category.php:1587
/modules/ststickers/classes/StStickersMapClass.php:174 (getParentsCategories)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 291 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `xr23z_category` c
LEFT JOIN `xr23z_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 15 AND c.`nright` >= 16 AND c.`nleft` >= 2 AND c.`nright` <= 17 ORDER BY `nleft` DESC |
0.148
ms
|
2 |
Yes
|
|
/classes/Category.php:1587
/modules/ststickers/classes/StStickersMapClass.php:174 (getParentsCategories)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 96 |
SELECT SQL_NO_CACHE *
FROM `xr23z_category` a
LEFT JOIN `xr23z_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 9) LIMIT 1 |
0.147
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:219 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:178 (__construct)
/modules/steasycontent/classes/StEasyContentClass.php:290 (__construct)
/modules/steasycontent/steasycontent.php:2626 (getListContent)
/modules/steasycontent/steasycontent.php:3819 (_prepareHook)
/classes/Hook.php:1251 (hookDisplayProductExtraContent)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/src/Adapter/HookManager.php:81 (exec)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:71 (exec)
/src/Core/Product/ProductExtraContentFinder.php:57 (find)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:103 (find)
/controllers/front/ProductController.php:1198 (present)
/controllers/front/ProductController.php:337 (getTemplateVarProduct)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 444 |
INSERT INTO `xr23z_connections_source` (`id_connections`, `http_referer`, `request_uri`, `keywords`, `date_add`) VALUES ('3719', '', 'presta.denku.ro/14-hummingbird-vector-graphics.html', '', '2026-01-07 09:02:25') |
0.147
ms
|
1 |
|
|
/classes/ObjectModel.php:543
/classes/ConnectionsSource.php:105 (add)
/modules/statsdata/statsdata.php:119 (logHttpReferer)
/modules/statsdata/statsdata.php:74 (getScriptCustomerPagesViews)
/classes/Hook.php:1251 (hookDisplayBeforeBodyClosingTag)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:628 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:182 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 158 |
SELECT SQL_NO_CACHE `width`, `height`
FROM xr23z_image_type
WHERE `name` = 'brand_default' LIMIT 1 |
0.147
ms
|
1 |
|
|
/classes/Image.php:554
/modules/stthemeeditor/stthemeeditor.php:4274 (getSize)
/modules/stthemeeditor/stthemeeditor.php:4155 (getStBasicVals)
/classes/Hook.php:1251 (hookDisplayHeader)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/classes/controller/FrontController.php:589 (exec)
/override/classes/controller/FrontController.php:11 (initContent)
/controllers/front/ProductController.php:418 (initContent)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 273 |
SELECT SQL_NO_CACHE pai.`id_image`, pai.`id_product_attribute`, il.`legend`
FROM `xr23z_product_attribute_image` pai
LEFT JOIN `xr23z_image_lang` il ON (il.`id_image` = pai.`id_image`)
INNER JOIN `xr23z_image` i ON (i.`id_image` = pai.`id_image`)
WHERE i.`id_product` = 12 AND il.`id_lang` = 1 ORDER by i.`position` |
0.147
ms
|
1 |
Yes
|
|
/classes/Product.php:2642
/src/Adapter/Image/ImageRetriever.php:82 (getCombinationImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:941 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:137 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:50 (__construct)
/modules/ps_categoryproducts/ps_categoryproducts.php:326 (present)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 336 |
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `xr23z_product_shop`
WHERE `id_product` = 7 AND id_shop=1 LIMIT 1 |
0.146
ms
|
1 |
|
|
/classes/Product.php:6494
/classes/Product.php:5656 (getIdTaxRulesGroupByIdProduct)
/classes/Pack.php:420 (getTaxesInformations)
/classes/Product.php:5539 (getItemTable)
/classes/ProductAssembler.php:191 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 152 |
SELECT SQL_NO_CACHE *
FROM `xr23z_country_lang`
WHERE `id_country` = 36 |
0.145
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:81
/classes/ObjectModel.php:219 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/AddressFormat.php:402 (__construct)
/classes/AddressFormat.php:437 (getFormattedAddressFieldsValues)
/classes/controller/FrontController.php:1713 (generateAddress)
/classes/controller/FrontController.php:522 (getTemplateVarShop)
/classes/controller/FrontController.php:585 (assignGeneralPurposeVariables)
/override/classes/controller/FrontController.php:11 (initContent)
/controllers/front/ProductController.php:418 (initContent)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 210 |
SELECT SQL_NO_CACHE SUM(loved_count) AS total
FROM `xr23z_st_loved_product`
WHERE `type`=1
AND `id_source` = 14
AND `id_shop` = 1 LIMIT 1 |
0.145
ms
|
1 |
|
|
/modules/stlovedproduct/classes/StLovedProductClass.php:157
/modules/stlovedproduct/stlovedproduct.php:1222 (getTotal)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/c5/fe/40/c5fe40dd64cdd89eba28b52f0981bc2787b40b5c_2.file.product-first.tpl.php:135 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473e00b51_98407663)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:142 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 306 |
SELECT SQL_NO_CACHE *
FROM `xr23z_product_attribute` a
LEFT JOIN `xr23z_product_attribute_shop` `c` ON a.`id_product_attribute` = c.`id_product_attribute` AND c.`id_shop` = 1
WHERE (a.`id_product_attribute` = 19) LIMIT 1 |
0.145
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:219 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:5597 (__construct)
/classes/Product.php:5560 (computeUnitPriceRatio)
/classes/ProductAssembler.php:191 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 403 |
SELECT SQL_NO_CACHE pai.`id_image`, pai.`id_product_attribute`, il.`legend`
FROM `xr23z_product_attribute_image` pai
LEFT JOIN `xr23z_image_lang` il ON (il.`id_image` = pai.`id_image`)
INNER JOIN `xr23z_image` i ON (i.`id_image` = pai.`id_image`)
WHERE i.`id_product` = 4 AND il.`id_lang` = 1 ORDER by i.`position` |
0.145
ms
|
1 |
Yes
|
|
/classes/Product.php:2642
/src/Adapter/Image/ImageRetriever.php:82 (getCombinationImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:941 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:137 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:50 (__construct)
/modules/ps_categoryproducts/ps_categoryproducts.php:326 (present)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 442 |
INSERT INTO `xr23z_page` (`id_page_type`, `id_object`) VALUES ('4', '14') |
0.145
ms
|
1 |
|
|
/classes/Page.php:88
/classes/Connection.php:180 (getCurrentId)
/classes/Connection.php:97 (setNewConnection)
/modules/statsdata/statsdata.php:118 (setPageConnection)
/modules/statsdata/statsdata.php:74 (getScriptCustomerPagesViews)
/classes/Hook.php:1251 (hookDisplayBeforeBodyClosingTag)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:628 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:182 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 133 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `xr23z_category` c
LEFT JOIN `xr23z_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 9 LIMIT 1 |
0.143
ms
|
1 |
|
|
/classes/Category.php:1577
/modules/ststickers/classes/StStickersMapClass.php:174 (getParentsCategories)
/modules/ststickers/ststickers.php:1741 (getForProduct)
/classes/Hook.php:1251 (hookDisplayProductExtraContent)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/src/Adapter/HookManager.php:81 (exec)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:71 (exec)
/src/Core/Product/ProductExtraContentFinder.php:57 (find)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:103 (find)
/controllers/front/ProductController.php:1198 (present)
/controllers/front/ProductController.php:337 (getTemplateVarProduct)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 213 |
SELECT SQL_NO_CACHE `id_module` FROM `xr23z_module` WHERE `name` = "ps_crossselling" LIMIT 1 |
0.143
ms
|
1 |
|
|
/classes/module/Module.php:2758
/classes/module/Module.php:2244 (getModuleIdByName)
/classes/Hook.php:1257 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 373 |
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 `xr23z_product` p
INNER JOIN `xr23z_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `xr23z_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` = 7) |
0.143
ms
|
1 |
|
|
/classes/Product.php:3577
/classes/Product.php:3433 (priceCalculation)
/classes/Product.php:3885 (getPriceStatic)
/classes/Pack.php:140 (getPrice)
/src/Adapter/Presenter/Product/ProductLazyArray.php:1128 (noPackPrice)
/src/Adapter/Presenter/Product/ProductLazyArray.php:140 (addPriceInformation)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:50 (__construct)
/modules/ps_categoryproducts/ps_categoryproducts.php:326 (present)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 426 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `xr23z_category` c
LEFT JOIN `xr23z_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 2 LIMIT 1 |
0.142
ms
|
1 |
|
|
/classes/Category.php:1577
/modules/ststickers/classes/StStickersMapClass.php:174 (getParentsCategories)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stviewedproducts/stviewedproducts.php:208 (assembleProduct)
/modules/stviewedproducts/stviewedproducts.php:224 (getProducts)
/modules/stviewedproducts/stviewedproducts.php:234 (_prepareSimple)
/classes/Hook.php:1251 (hookDisplaySideBar)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:526 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:147 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 203 |
SELECT SQL_NO_CACHE `id_module` FROM `xr23z_module` WHERE `name` = "stsocial" LIMIT 1 |
0.141
ms
|
1 |
|
|
/classes/module/Module.php:2758
/classes/module/Module.php:2244 (getModuleIdByName)
/classes/Hook.php:1257 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/36/28/e4/3628e4f5afe166eddd4b4cdffff592223c027d5d_2.file.product-add-to-cart.tpl.php:56 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04741226f5_03201691)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/23/2c/b4/232cb4c3d60eef13f80ba9ebfd305b666551b940_2.file.product-buy.tpl.php:112 (_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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/23/2c/b4/232cb4c3d60eef13f80ba9ebfd305b666551b940_2.file.product-buy.tpl.php:209 (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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/23/2c/b4/232cb4c3d60eef13f80ba9ebfd305b666551b940_2.file.product-buy.tpl.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04740d0ba8_11468668)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/c5/fe/40/c5fe40dd64cdd89eba28b52f0981bc2787b40b5c_2.file.product-first.tpl.php:106 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473e00b51_98407663)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:142 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 371 |
SELECT SQL_NO_CACHE product_attribute_shop.id_product_attribute
FROM xr23z_product_attribute pa
INNER JOIN xr23z_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 = 7 LIMIT 1 |
0.141
ms
|
1 |
|
|
/classes/Product.php:1077
/classes/Product.php:3534 (getDefaultAttribute)
/classes/Product.php:3433 (priceCalculation)
/classes/Product.php:3885 (getPriceStatic)
/classes/Pack.php:140 (getPrice)
/src/Adapter/Presenter/Product/ProductLazyArray.php:1128 (noPackPrice)
/src/Adapter/Presenter/Product/ProductLazyArray.php:140 (addPriceInformation)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:50 (__construct)
/modules/ps_categoryproducts/ps_categoryproducts.php:326 (present)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 359 |
SELECT SQL_NO_CACHE id_st_sticker FROM `xr23z_st_sticker_map`
WHERE active = 1 AND (location = 0 OR (location = 2 AND (id_category = 0 OR id_category IN(2,6,8,9))) OR (location = 1 AND (id_products LIKE "%,15,%"))) |
0.141
ms
|
1 |
|
|
/modules/ststickers/classes/StStickersMapClass.php:188
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 320 |
SELECT SQL_NO_CACHE id_st_sticker FROM `xr23z_st_sticker_map`
WHERE active = 1 AND (location = 0 OR (location = 3 AND (id_manufacturer = 0 OR id_manufacturer=2)) OR (location = 2 AND (id_category = 0 OR id_category IN(2,9))) OR (location = 1 AND (id_products LIKE "%,5,%"))) |
0.140
ms
|
1 |
|
|
/modules/ststickers/classes/StStickersMapClass.php:188
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 170 |
SELECT SQL_NO_CACHE `id_module` FROM `xr23z_module_shop` WHERE `id_module` = 117 AND `id_shop` = 1 LIMIT 1 |
0.139
ms
|
1 |
|
|
/classes/module/Module.php:2245
/classes/Hook.php:1257 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/ff/02/12/ff021241fc8d9795aa2c8f534088eec29022dd12_2.file.header.tpl.php:57 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/ff/02/12/ff021241fc8d9795aa2c8f534088eec29022dd12_2.file.header.tpl.php:26 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e36500ee11_74762667)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:283 (_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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:86 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 246 |
SELECT SQL_NO_CACHE id_st_sticker FROM `xr23z_st_sticker_map`
WHERE active = 1 AND (location = 0 OR (location = 3 AND (id_manufacturer = 0 OR id_manufacturer=2)) OR (location = 2 AND (id_category = 0 OR id_category IN(2,9))) OR (location = 1 AND (id_products LIKE "%,3,%"))) |
0.139
ms
|
1 |
|
|
/modules/ststickers/classes/StStickersMapClass.php:188
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 376 |
SELECT SQL_NO_CACHE 1 FROM `xr23z_specific_price` WHERE id_product = 4 LIMIT 1 |
0.139
ms
|
1 |
|
|
/classes/SpecificPrice.php:432
/classes/SpecificPrice.php:520 (couldHaveSpecificPrice)
/classes/Product.php:3543 (getSpecificPrice)
/classes/Product.php:3433 (priceCalculation)
/classes/Product.php:5405 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 23 |
SELECT SQL_NO_CACHE `id_lang` FROM `xr23z_lang`
WHERE `locale` = 'ro-ro'
OR `language_code` = 'ro-ro' LIMIT 1 |
0.138
ms
|
1 |
|
|
/classes/Language.php:870
/src/Adapter/Currency/CurrencyDataProvider.php:112 (getIdByLocale)
/src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:101 (getCurrencyByIsoCodeAndLocale)
/src/Core/Data/Layer/AbstractDataLayer.php:90 (doRead)
/src/Core/Data/Layer/AbstractDataLayer.php:149 (read)
/src/Core/Data/Layer/AbstractDataLayer.php:94 (propagateRead)
/src/Core/Localization/Currency/CurrencyDataSource.php:67 (read)
/src/Core/Localization/Currency/CurrencyDataSource.php:109 (getLocalizedCurrencyData)
/src/Core/Localization/Currency/CurrencyDataSource.php:96 (formatCurrenciesData)
/src/Core/Localization/Currency/Repository.php:87 (getAllInstalledCurrenciesData)
/src/Core/Localization/Locale/Repository.php:206 (getAllInstalledCurrencies)
/src/Core/Localization/Locale/Repository.php:149 (getPriceSpecifications)
/classes/controller/Controller.php:219 (getLocale)
/classes/controller/FrontController.php:242 (init)
/controllers/front/ProductController.php:127 (init)
/tools/profiling/Controller.php:46 (init)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 184 |
SELECT SQL_NO_CACHE `id_module` FROM `xr23z_module_shop` WHERE `id_module` = 116 AND `id_shop` = 1 LIMIT 1 |
0.138
ms
|
1 |
|
|
/classes/module/Module.php:2245
/classes/Hook.php:1257 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/ff/02/12/ff021241fc8d9795aa2c8f534088eec29022dd12_2.file.header.tpl.php:84 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/ff/02/12/ff021241fc8d9795aa2c8f534088eec29022dd12_2.file.header.tpl.php:30 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e36500ee11_74762667)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:283 (_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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:86 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 93 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `xr23z_category` c
LEFT JOIN `xr23z_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 2 LIMIT 1 |
0.137
ms
|
1 |
|
|
/classes/Category.php:1577
/modules/steasycontent/classes/StEasyContentClass.php:299 (getParentsCategories)
/modules/steasycontent/steasycontent.php:2626 (getListContent)
/modules/steasycontent/steasycontent.php:3819 (_prepareHook)
/classes/Hook.php:1251 (hookDisplayProductExtraContent)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/src/Adapter/HookManager.php:81 (exec)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:71 (exec)
/src/Core/Product/ProductExtraContentFinder.php:57 (find)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:103 (find)
/controllers/front/ProductController.php:1198 (present)
/controllers/front/ProductController.php:337 (getTemplateVarProduct)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 432 |
SELECT SQL_NO_CACHE id_st_sticker FROM `xr23z_st_sticker_map`
WHERE active = 1 AND (location = 0 OR (location = 3 AND (id_manufacturer = 0 OR id_manufacturer=2)) OR (location = 2 AND (id_category = 0 OR id_category IN(2,9))) OR (location = 1 AND (id_products LIKE "%,14,%"))) |
0.137
ms
|
1 |
|
|
/modules/ststickers/classes/StStickersMapClass.php:188
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stviewedproducts/stviewedproducts.php:208 (assembleProduct)
/modules/stviewedproducts/stviewedproducts.php:224 (getProducts)
/modules/stviewedproducts/stviewedproducts.php:234 (_prepareSimple)
/classes/Hook.php:1251 (hookDisplaySideBar)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:526 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:147 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 224 |
SELECT SQL_NO_CACHE `reduction`
FROM `xr23z_product_group_reduction_cache`
WHERE `id_product` = 3 AND `id_group` = 1 LIMIT 1 |
0.136
ms
|
0 |
|
|
/classes/GroupReduction.php:146
/classes/Product.php:3707 (getValueForProduct)
/classes/Product.php:3433 (priceCalculation)
/classes/Product.php:5405 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 302 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `xr23z_stock_available`
WHERE (id_product = 5) AND (id_product_attribute = 19) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.136
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:269
/classes/Product.php:4066 (getQuantityAvailableByProduct)
/classes/Product.php:5523 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 97 |
SELECT SQL_NO_CACHE *
FROM `xr23z_category_lang`
WHERE `id_category` = 9 AND `id_shop` = 1 |
0.136
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:81
/classes/ObjectModel.php:219 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:178 (__construct)
/modules/steasycontent/classes/StEasyContentClass.php:290 (__construct)
/modules/steasycontent/steasycontent.php:2626 (getListContent)
/modules/steasycontent/steasycontent.php:3819 (_prepareHook)
/classes/Hook.php:1251 (hookDisplayProductExtraContent)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/src/Adapter/HookManager.php:81 (exec)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:71 (exec)
/src/Core/Product/ProductExtraContentFinder.php:57 (find)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:103 (find)
/controllers/front/ProductController.php:1198 (present)
/controllers/front/ProductController.php:337 (getTemplateVarProduct)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 297 |
SELECT SQL_NO_CACHE 1 FROM `xr23z_specific_price` WHERE id_product = 5 LIMIT 1 |
0.136
ms
|
1 |
|
|
/classes/SpecificPrice.php:432
/classes/SpecificPrice.php:520 (couldHaveSpecificPrice)
/classes/Product.php:3543 (getSpecificPrice)
/classes/Product.php:3433 (priceCalculation)
/classes/Product.php:5405 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 90 |
SELECT SQL_NO_CACHE *
FROM `xr23z_category_lang`
WHERE `id_category` = 2 AND `id_shop` = 1 |
0.135
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:81
/classes/ObjectModel.php:219 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:178 (__construct)
/modules/steasycontent/classes/StEasyContentClass.php:290 (__construct)
/modules/steasycontent/steasycontent.php:2626 (getListContent)
/modules/steasycontent/steasycontent.php:3819 (_prepareHook)
/classes/Hook.php:1251 (hookDisplayProductExtraContent)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/src/Adapter/HookManager.php:81 (exec)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:71 (exec)
/src/Core/Product/ProductExtraContentFinder.php:57 (find)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:103 (find)
/controllers/front/ProductController.php:1198 (present)
/controllers/front/ProductController.php:337 (getTemplateVarProduct)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 45 |
SELECT SQL_NO_CACHE 1 FROM `xr23z_specific_price` WHERE id_product = 0 LIMIT 1 |
0.135
ms
|
1 |
|
|
/classes/SpecificPrice.php:423
/classes/SpecificPrice.php:520 (couldHaveSpecificPrice)
/classes/Product.php:3543 (getSpecificPrice)
/classes/Product.php:3433 (priceCalculation)
/classes/Product.php:730 (getPriceStatic)
/controllers/front/ProductController.php:149 (__construct)
/tools/profiling/Controller.php:46 (init)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 275 |
SELECT SQL_NO_CACHE 1 FROM `xr23z_specific_price` WHERE id_product = 13 LIMIT 1 |
0.135
ms
|
1 |
|
|
/classes/SpecificPrice.php:432
/classes/SpecificPrice.php:520 (couldHaveSpecificPrice)
/classes/Product.php:3543 (getSpecificPrice)
/classes/Product.php:3433 (priceCalculation)
/classes/Product.php:5405 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 399 |
SELECT SQL_NO_CACHE id_st_sticker FROM `xr23z_st_sticker_map`
WHERE active = 1 AND (location = 0 OR (location = 3 AND (id_manufacturer = 0 OR id_manufacturer=2)) OR (location = 2 AND (id_category = 0 OR id_category IN(2,9))) OR (location = 1 AND (id_products LIKE "%,4,%"))) |
0.135
ms
|
1 |
|
|
/modules/ststickers/classes/StStickersMapClass.php:188
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 124 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright`
FROM `xr23z_category` c
WHERE (c.`id_category` = 9) LIMIT 1 |
0.134
ms
|
1 |
|
|
/classes/Category.php:2000
/modules/stproductlinknav/stproductlinknav.php:85 (inShopStatic)
/modules/stproductlinknav/stproductlinknav.php:187 (_prepareHook)
/classes/Hook.php:1251 (hookDisplayProductExtraContent)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/src/Adapter/HookManager.php:81 (exec)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:71 (exec)
/src/Core/Product/ProductExtraContentFinder.php:57 (find)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:103 (find)
/controllers/front/ProductController.php:1198 (present)
/controllers/front/ProductController.php:337 (getTemplateVarProduct)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 128 |
SELECT SQL_NO_CACHE cl.`link_rewrite`
FROM `xr23z_category_lang` cl
WHERE `id_lang` = 1
AND cl.id_shop = 1
AND cl.`id_category` = 8 LIMIT 1 |
0.134
ms
|
1 |
|
|
/classes/Category.php:1366
/classes/Product.php:740 (getLinkRewrite)
/classes/Link.php:112 (__construct)
/classes/Link.php:184 (getProductObject)
/modules/stproductlinknav/stproductlinknav.php:128 (getProductLink)
/modules/stproductlinknav/stproductlinknav.php:187 (_prepareHook)
/classes/Hook.php:1251 (hookDisplayProductExtraContent)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/src/Adapter/HookManager.php:81 (exec)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:71 (exec)
/src/Core/Product/ProductExtraContentFinder.php:57 (find)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:103 (find)
/controllers/front/ProductController.php:1198 (present)
/controllers/front/ProductController.php:337 (getTemplateVarProduct)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 346 |
SELECT SQL_NO_CACHE *
FROM `xr23z_category` a
LEFT JOIN `xr23z_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 6) LIMIT 1 |
0.134
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:219 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:178 (__construct)
/modules/ststickers/classes/StStickersMapClass.php:165 (__construct)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 418 |
SELECT SQL_NO_CACHE `id_module` FROM `xr23z_module_shop` WHERE `id_module` = 0 AND `id_shop` = 1 LIMIT 1 |
0.134
ms
|
0 |
|
|
/classes/module/Module.php:2245
/modules/steasycontent/steasycontent.php:4253 (isEnabled)
/modules/steasycontent/steasycontent.php:3602 (renderShortcode)
/classes/Hook.php:1251 (hookDisplayFooter)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/ef/b5/8f/efb58f1942cb002896e8245199fc597627fac2b2_2.file.footer.tpl.php:106 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/ef/b5/8f/efb58f1942cb002896e8245199fc597627fac2b2_2.file.footer.tpl.php:37 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e36559f047_41433756)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:508 (_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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:135 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 149 |
SELECT SQL_NO_CACHE format
FROM `xr23z_address_format`
WHERE `id_country` = 36 LIMIT 1 |
0.133
ms
|
1 |
|
|
/classes/AddressFormat.php:651
/classes/AddressFormat.php:628 (getFormatDB)
/classes/AddressFormat.php:613 (getFormat)
/classes/AddressFormat.php:560 (getAddressCountryFormat)
/classes/AddressFormat.php:436 (getOrderedAddressFields)
/classes/controller/FrontController.php:1713 (generateAddress)
/classes/controller/FrontController.php:522 (getTemplateVarShop)
/classes/controller/FrontController.php:585 (assignGeneralPurposeVariables)
/override/classes/controller/FrontController.php:11 (initContent)
/controllers/front/ProductController.php:418 (initContent)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 153 |
SELECT SQL_NO_CACHE id_required_field, object_name, field_name
FROM xr23z_required_field |
0.132
ms
|
1 |
|
|
/classes/ObjectModel.php:1447
/classes/ObjectModel.php:1482 (getFieldsRequiredDatabase)
/classes/ObjectModel.php:1413 (cacheFieldsRequiredDatabase)
/classes/controller/FrontController.php:526 (validateFieldsRequiredDatabase)
/classes/controller/FrontController.php:585 (assignGeneralPurposeVariables)
/override/classes/controller/FrontController.php:11 (initContent)
/controllers/front/ProductController.php:418 (initContent)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 227 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `xr23z_stock_available`
WHERE (id_product = 3) AND (id_product_attribute = 13) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.132
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:269
/classes/Product.php:4066 (getQuantityAvailableByProduct)
/classes/Product.php:5523 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 74 |
SELECT SQL_NO_CACHE 1 FROM `xr23z_specific_price` WHERE `from` BETWEEN '2026-01-07 00:00:00' AND '2026-01-07 23:59:59' LIMIT 1 |
0.132
ms
|
1 |
|
|
/classes/SpecificPrice.php:374
/classes/SpecificPrice.php:611 (computeExtraConditions)
/controllers/front/ProductController.php:570 (getQuantityDiscounts)
/controllers/front/ProductController.php:327 (assignPriceAndTax)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 337 |
SELECT SQL_NO_CACHE COUNT(*) FROM `xr23z_pack` WHERE id_product_pack = 7 LIMIT 1 |
0.132
ms
|
1 |
|
|
/classes/Pack.php:91
/classes/Pack.php:424 (isPack)
/classes/Product.php:5539 (getItemTable)
/classes/ProductAssembler.php:191 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 52 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `xr23z_stock_available`
WHERE (id_product = 14) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.131
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:269
/classes/Product.php:7481 (getQuantityAvailableByProduct)
/classes/Product.php:733 (loadStockData)
/controllers/front/ProductController.php:149 (__construct)
/tools/profiling/Controller.php:46 (init)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 189 |
SELECT SQL_NO_CACHE `id_module` FROM `xr23z_module_shop` WHERE `id_module` = 83 AND `id_shop` = 1 LIMIT 1 |
0.131
ms
|
1 |
|
|
/classes/module/Module.php:2245
/classes/Hook.php:1257 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/ff/02/12/ff021241fc8d9795aa2c8f534088eec29022dd12_2.file.header.tpl.php:299 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/ff/02/12/ff021241fc8d9795aa2c8f534088eec29022dd12_2.file.header.tpl.php:38 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e36500ee11_74762667)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:283 (_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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:86 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 29 |
SELECT SQL_NO_CACHE *
FROM `xr23z_currency_lang`
WHERE `id_currency` = 1 |
0.131
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:81
/classes/ObjectModel.php:219 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Currency.php:246 (__construct)
/classes/Currency.php:1089 (__construct)
/classes/Tools.php:685 (getCurrencyInstance)
/classes/controller/FrontController.php:331 (setCurrency)
/controllers/front/ProductController.php:127 (init)
/tools/profiling/Controller.php:46 (init)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 113 |
SELECT SQL_NO_CACHE COUNT(`id_st_product_comment`) AS "nbr"
FROM `xr23z_st_product_comment` pc
WHERE pc.`id_parent` = 0
AND pc.`id_product` = 14
AND pc.`id_shop`=1 AND `validate` = 1 LIMIT 1 |
0.131
ms
|
1 |
|
|
/modules/stproductcomments/classes/StProductCommentClass.php:428
/modules/stproductcomments/stproductcomments.php:1760 (getCommentNumber)
/modules/stproductcomments/stproductcomments.php:1819 (_prepare_comments)
/classes/Hook.php:1251 (hookDisplayProductExtraContent)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/src/Adapter/HookManager.php:81 (exec)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:71 (exec)
/src/Core/Product/ProductExtraContentFinder.php:57 (find)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:103 (find)
/controllers/front/ProductController.php:1198 (present)
/controllers/front/ProductController.php:337 (getTemplateVarProduct)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 328 |
SELECT SQL_NO_CACHE `reduction`
FROM `xr23z_product_group_reduction_cache`
WHERE `id_product` = 15 AND `id_group` = 1 LIMIT 1 |
0.131
ms
|
0 |
|
|
/classes/GroupReduction.php:146
/classes/Product.php:3707 (getValueForProduct)
/classes/Product.php:3433 (priceCalculation)
/classes/Product.php:5405 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 379 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `xr23z_stock_available`
WHERE (id_product = 4) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.131
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:269
/classes/Product.php:4066 (getQuantityAvailableByProduct)
/classes/Product.php:5511 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 443 |
INSERT INTO `xr23z_connections` (`id_guest`, `id_page`, `ip_address`, `http_referer`, `id_shop`, `id_shop_group`, `date_add`) VALUES ('3710', '13', '3628718221', '', '1', '1', '2026-01-07 09:02:25') |
0.131
ms
|
1 |
|
|
/classes/ObjectModel.php:543
/classes/Connection.php:188 (add)
/classes/Connection.php:97 (setNewConnection)
/modules/statsdata/statsdata.php:118 (setPageConnection)
/modules/statsdata/statsdata.php:74 (getScriptCustomerPagesViews)
/classes/Hook.php:1251 (hookDisplayBeforeBodyClosingTag)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:628 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:182 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 187 |
SELECT SQL_NO_CACHE `id_module` FROM `xr23z_module_shop` WHERE `id_module` = 84 AND `id_shop` = 1 LIMIT 1 |
0.130
ms
|
1 |
|
|
/classes/module/Module.php:2245
/modules/stsidebar/stsidebar.php:1393 (isEnabled)
/modules/stsidebar/stsidebar.php:1332 (validateNativeModules)
/modules/stsidebar/stsidebar.php:1351 (hookDisplayMobileBar)
/classes/Hook.php:1251 (hookDisplayMobileBarLeft)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/ff/02/12/ff021241fc8d9795aa2c8f534088eec29022dd12_2.file.header.tpl.php:122 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/ff/02/12/ff021241fc8d9795aa2c8f534088eec29022dd12_2.file.header.tpl.php:200 (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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/ff/02/12/ff021241fc8d9795aa2c8f534088eec29022dd12_2.file.header.tpl.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e36500ee11_74762667)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:283 (_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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:86 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 411 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `xr23z_stock_available`
WHERE (id_product = 5) AND (id_product_attribute = 21) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.130
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:269
/classes/Product.php:2506 (getQuantityAvailableByProduct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:920 (getAttributesResume)
/src/Adapter/Presenter/Product/ProductLazyArray.php:752 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getFlags)
/var/cache/dev/smarty/compile/transformer/53/b8/7e/53b87e48cd68c1673fe52d704a3eeb41c7d46cac_2.file.sticker.tpl.cache.php:48 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e3653af629_15962486)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/transformer/2e/1c/87/2e1c87f7b380ff9e03bb6b63e57add60db8c1479_2.file.product.tpl.cache.php:63 (_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/dev/smarty/compile/transformer/2e/1c/87/2e1c87f7b380ff9e03bb6b63e57add60db8c1479_2.file.product.tpl.cache.php:192 (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/dev/smarty/compile/transformer/2e/1c/87/2e1c87f7b380ff9e03bb6b63e57add60db8c1479_2.file.product.tpl.cache.php:404 (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/dev/smarty/compile/transformer/2e/1c/87/2e1c87f7b380ff9e03bb6b63e57add60db8c1479_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e365386d75_77248485)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/transformer/4a/dd/9c/4add9c4a8c2e435790d5fd17d45d1c288f523876_2.file.product-slider.tpl.cache.php:102 (_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/dev/smarty/compile/transformer/4a/dd/9c/4add9c4a8c2e435790d5fd17d45d1c288f523876_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e36530d2e7_26274938)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/transformer/39/d3/1a/39d31a599d73c039735add7bd5dc7a2a3a72c0ba_2.module.ps_categoryproductsviewstemplateshookps_categoryproducts.tpl.cache.php:53 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_68ff99ca35e378_79665226)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:55 (fetch)
/classes/module/Module.php:2395 (fetch)
/modules/ps_categoryproducts/ps_categoryproducts.php:254 (fetch)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 284 |
SELECT SQL_NO_CACHE *
FROM `xr23z_product_lang`
WHERE `id_product` = 13 AND `id_shop` = 1 |
0.129
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:81
/classes/ObjectModel.php:219 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:708 (__construct)
/modules/ststickers/classes/StStickersMapClass.php:158 (__construct)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 312 |
SELECT SQL_NO_CACHE *
FROM `xr23z_product_lang`
WHERE `id_product` = 5 AND `id_shop` = 1 |
0.129
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:81
/classes/ObjectModel.php:219 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:708 (__construct)
/modules/ststickers/classes/StStickersMapClass.php:158 (__construct)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 368 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `xr23z_stock_available`
WHERE (id_product = 7) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.129
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:269
/classes/Product.php:7481 (getQuantityAvailableByProduct)
/classes/Pack.php:193 (loadStockData)
/classes/Pack.php:138 (getItems)
/src/Adapter/Presenter/Product/ProductLazyArray.php:1128 (noPackPrice)
/src/Adapter/Presenter/Product/ProductLazyArray.php:140 (addPriceInformation)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:50 (__construct)
/modules/ps_categoryproducts/ps_categoryproducts.php:326 (present)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 293 |
SELECT SQL_NO_CACHE count(0)
FROM `xr23z_st_wishlist_product` whp
LEFT JOIN `xr23z_st_wishlist` wh ON (wh.`id_st_wishlist`=whp.`id_st_wishlist`)
WHERE whp.`id_product` = 13 AND wh.`id_customer`=0 AND wh.`id_shop`= 1 LIMIT 1 |
0.128
ms
|
1 |
|
|
/modules/stwishlist/classes/StWishListClass.php:364
/modules/stwishlist/stwishlist.php:1259 (countProCustomer)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 41 |
SELECT SQL_NO_CACHE *
FROM `xr23z_tax` a
WHERE (a.`id_tax` = 1) LIMIT 1 |
0.128
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:219 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/tax/TaxRulesTaxManager.php:116 (__construct)
/classes/Product.php:6520 (getTaxCalculator)
/classes/Product.php:723 (getTaxesRate)
/controllers/front/ProductController.php:149 (__construct)
/tools/profiling/Controller.php:46 (init)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 48 |
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `xr23z_product_shop`
WHERE `id_product` = 14 AND id_shop=1 LIMIT 1 |
0.128
ms
|
1 |
|
|
/classes/Product.php:6494
/classes/Product.php:3642 (getIdTaxRulesGroupByIdProduct)
/classes/Product.php:3433 (priceCalculation)
/classes/Product.php:730 (getPriceStatic)
/controllers/front/ProductController.php:149 (__construct)
/tools/profiling/Controller.php:46 (init)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 83 |
SELECT SQL_NO_CACHE `id_module` FROM `xr23z_module_shop` WHERE `id_module` = 95 AND `id_shop` = 1 LIMIT 1 |
0.127
ms
|
1 |
|
|
/classes/module/Module.php:2245
/modules/steasycontent/steasycontent.php:330 (isEnabled)
:undefined (__construct)
/src/Core/Foundation/IoC/Container.php:124 (newInstance)
/src/Core/Foundation/IoC/Container.php:154 (makeInstanceFromClassName)
/src/Core/Foundation/IoC/Container.php:167 (doMake)
/src/Adapter/ServiceLocator.php:70 (make)
/classes/module/Module.php:1364 (get)
/tools/profiling/Module.php:35 (coreLoadModule)
/classes/module/Module.php:1343 (coreLoadModule)
/classes/Hook.php:1122 (getInstanceByName)
/src/Adapter/HookManager.php:81 (exec)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:71 (exec)
/src/Core/Product/ProductExtraContentFinder.php:57 (find)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:103 (find)
/controllers/front/ProductController.php:1198 (present)
/controllers/front/ProductController.php:337 (getTemplateVarProduct)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 118 |
SELECT SQL_NO_CACHE id_product FROM `xr23z_category_product` WHERE `id_product` = 14 AND `id_category` IN (9) LIMIT 1 |
0.127
ms
|
1 |
|
|
/classes/Product.php:6406
/modules/stproductlinknav/stproductlinknav.php:85 (idIsOnCategoryId)
/modules/stproductlinknav/stproductlinknav.php:186 (_prepareHook)
/classes/Hook.php:1251 (hookDisplayProductExtraContent)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/src/Adapter/HookManager.php:81 (exec)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:71 (exec)
/src/Core/Product/ProductExtraContentFinder.php:57 (find)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:103 (find)
/controllers/front/ProductController.php:1198 (present)
/controllers/front/ProductController.php:337 (getTemplateVarProduct)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 175 |
SELECT SQL_NO_CACHE `id_module` FROM `xr23z_module_shop` WHERE `id_module` = 80 AND `id_shop` = 1 LIMIT 1 |
0.127
ms
|
1 |
|
|
/classes/module/Module.php:2245
/classes/Hook.php:1257 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/ff/02/12/ff021241fc8d9795aa2c8f534088eec29022dd12_2.file.header.tpl.php:81 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/ff/02/12/ff021241fc8d9795aa2c8f534088eec29022dd12_2.file.header.tpl.php:30 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e36500ee11_74762667)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:283 (_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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:86 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 87 |
SELECT SQL_NO_CACHE cl.`link_rewrite`
FROM `xr23z_category_lang` cl
WHERE `id_lang` = 0
AND cl.id_shop = 1
AND cl.`id_category` = 9 LIMIT 1 |
0.126
ms
|
0 |
|
|
/classes/Category.php:1366
/classes/Product.php:740 (getLinkRewrite)
/modules/steasycontent/classes/StEasyContentClass.php:278 (__construct)
/modules/steasycontent/steasycontent.php:2626 (getListContent)
/modules/steasycontent/steasycontent.php:3819 (_prepareHook)
/classes/Hook.php:1251 (hookDisplayProductExtraContent)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/src/Adapter/HookManager.php:81 (exec)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:71 (exec)
/src/Core/Product/ProductExtraContentFinder.php:57 (find)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:103 (find)
/controllers/front/ProductController.php:1198 (present)
/controllers/front/ProductController.php:337 (getTemplateVarProduct)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 299 |
SELECT SQL_NO_CACHE `reduction`
FROM `xr23z_product_group_reduction_cache`
WHERE `id_product` = 5 AND `id_group` = 1 LIMIT 1 |
0.126
ms
|
0 |
|
|
/classes/GroupReduction.php:146
/classes/Product.php:3707 (getValueForProduct)
/classes/Product.php:3433 (priceCalculation)
/classes/Product.php:5405 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 24 |
SELECT SQL_NO_CACHE value FROM `xr23z_configuration` WHERE `name` = "PS_MULTISHOP_FEATURE_ACTIVE" LIMIT 1 |
0.126
ms
|
1 |
|
|
/classes/shop/Shop.php:1214
/classes/Currency.php:968 (isFeatureActive)
/classes/Currency.php:890 (getIdByQuery)
/src/Adapter/Currency/CurrencyDataProvider.php:92 (getIdByIsoCode)
/src/Adapter/Currency/CurrencyDataProvider.php:114 (getCurrencyByIsoCode)
/src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:101 (getCurrencyByIsoCodeAndLocale)
/src/Core/Data/Layer/AbstractDataLayer.php:90 (doRead)
/src/Core/Data/Layer/AbstractDataLayer.php:149 (read)
/src/Core/Data/Layer/AbstractDataLayer.php:94 (propagateRead)
/src/Core/Localization/Currency/CurrencyDataSource.php:67 (read)
/src/Core/Localization/Currency/CurrencyDataSource.php:109 (getLocalizedCurrencyData)
/src/Core/Localization/Currency/CurrencyDataSource.php:96 (formatCurrenciesData)
/src/Core/Localization/Currency/Repository.php:87 (getAllInstalledCurrenciesData)
/src/Core/Localization/Locale/Repository.php:206 (getAllInstalledCurrencies)
/src/Core/Localization/Locale/Repository.php:149 (getPriceSpecifications)
/classes/controller/Controller.php:219 (getLocale)
/classes/controller/FrontController.php:242 (init)
/controllers/front/ProductController.php:127 (init)
/tools/profiling/Controller.php:46 (init)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 9 |
SELECT SQL_NO_CACHE id_shop
FROM `xr23z_lang_shop`
WHERE `id_lang` = 1
AND id_shop = 1 LIMIT 1 |
0.125
ms
|
1 |
|
|
/classes/ObjectModel.php:1582
/config/config.inc.php:248 (isAssociatedToShop)
/index.php:40 (require_once)
|
| 73 |
SELECT SQL_NO_CACHE DISTINCT `id_product` FROM `xr23z_specific_price` WHERE `id_product` != 0 |
0.125
ms
|
2 |
|
|
/classes/SpecificPrice.php:307
/classes/SpecificPrice.php:357 (filterOutField)
/classes/SpecificPrice.php:611 (computeExtraConditions)
/controllers/front/ProductController.php:570 (getQuantityDiscounts)
/controllers/front/ProductController.php:327 (assignPriceAndTax)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 159 |
SELECT SQL_NO_CACHE `width`, `height`
FROM xr23z_image_type
WHERE `name` = 'home_default' LIMIT 1 |
0.125
ms
|
2 |
|
|
/classes/Image.php:554
/modules/stthemeeditor/stthemeeditor.php:4275 (getSize)
/modules/stthemeeditor/stthemeeditor.php:4155 (getStBasicVals)
/classes/Hook.php:1251 (hookDisplayHeader)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/classes/controller/FrontController.php:589 (exec)
/override/classes/controller/FrontController.php:11 (initContent)
/controllers/front/ProductController.php:418 (initContent)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 292 |
SELECT SQL_NO_CACHE id_st_sticker FROM `xr23z_st_sticker_map`
WHERE active = 1 AND (location = 0 OR (location = 3 AND (id_manufacturer = 0 OR id_manufacturer=2)) OR (location = 2 AND (id_category = 0 OR id_category IN(2,9))) OR (location = 1 AND (id_products LIKE "%,13,%"))) |
0.125
ms
|
1 |
|
|
/modules/ststickers/classes/StStickersMapClass.php:188
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 343 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `xr23z_category` c
LEFT JOIN `xr23z_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 2 LIMIT 1 |
0.125
ms
|
1 |
|
|
/classes/Category.php:1577
/modules/ststickers/classes/StStickersMapClass.php:174 (getParentsCategories)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 88 |
SELECT SQL_NO_CACHE `id_category` FROM `xr23z_category_product`
WHERE `id_product` = 14 |
0.125
ms
|
2 |
|
|
/classes/Product.php:3140
/classes/Product.php:3196 (getProductCategories)
/modules/steasycontent/classes/StEasyContentClass.php:286 (getCategories)
/modules/steasycontent/steasycontent.php:2626 (getListContent)
/modules/steasycontent/steasycontent.php:3819 (_prepareHook)
/classes/Hook.php:1251 (hookDisplayProductExtraContent)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/src/Adapter/HookManager.php:81 (exec)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:71 (exec)
/src/Core/Product/ProductExtraContentFinder.php:57 (find)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:103 (find)
/controllers/front/ProductController.php:1198 (present)
/controllers/front/ProductController.php:337 (getTemplateVarProduct)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 197 |
SELECT SQL_NO_CACHE `id_module` FROM `xr23z_module_shop` WHERE `id_module` = 90 AND `id_shop` = 1 LIMIT 1 |
0.125
ms
|
1 |
|
|
/classes/module/Module.php:2245
/classes/Hook.php:1257 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:339 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:232 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:181 (callParent)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 199 |
SELECT SQL_NO_CACHE `id_module` FROM `xr23z_module` WHERE `name` = "stproductcomments" LIMIT 1 |
0.125
ms
|
1 |
|
|
/classes/module/Module.php:2758
/classes/module/Module.php:2244 (getModuleIdByName)
/classes/Hook.php:1257 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/c5/fe/40/c5fe40dd64cdd89eba28b52f0981bc2787b40b5c_2.file.product-first.tpl.php:358 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/c5/fe/40/c5fe40dd64cdd89eba28b52f0981bc2787b40b5c_2.file.product-first.tpl.php:59 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473e00b51_98407663)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:142 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 261 |
SELECT SQL_NO_CACHE *
FROM `xr23z_product_lang`
WHERE `id_product` = 12 AND `id_shop` = 1 |
0.125
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:81
/classes/ObjectModel.php:219 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:708 (__construct)
/modules/ststickers/classes/StStickersMapClass.php:158 (__construct)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 429 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `xr23z_category` c
LEFT JOIN `xr23z_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 9 LIMIT 1 |
0.125
ms
|
1 |
|
|
/classes/Category.php:1577
/modules/ststickers/classes/StStickersMapClass.php:174 (getParentsCategories)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stviewedproducts/stviewedproducts.php:208 (assembleProduct)
/modules/stviewedproducts/stviewedproducts.php:224 (getProducts)
/modules/stviewedproducts/stviewedproducts.php:234 (_prepareSimple)
/classes/Hook.php:1251 (hookDisplaySideBar)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:526 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:147 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 192 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `xr23z_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.124
ms
|
1 |
|
|
/classes/Category.php:1582
/modules/stpagebanner/classes/StPageBannerClass.php:173 (getParentsCategories)
/modules/stpagebanner/stpagebanner.php:1434 (getAll)
/modules/stpagebanner/stpagebanner.php:1555 (_prepareHook)
/classes/Hook.php:1251 (hookDisplayBreadcrumb)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:301 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:92 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 216 |
SELECT SQL_NO_CACHE `id_module` FROM `xr23z_module` WHERE `name` = "ps_categoryproducts" LIMIT 1 |
0.124
ms
|
1 |
|
|
/classes/module/Module.php:2758
/classes/module/Module.php:2244 (getModuleIdByName)
/classes/Hook.php:1257 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 269 |
SELECT SQL_NO_CACHE id_st_sticker FROM `xr23z_st_sticker_map`
WHERE active = 1 AND (location = 0 OR (location = 3 AND (id_manufacturer = 0 OR id_manufacturer=2)) OR (location = 2 AND (id_category = 0 OR id_category IN(2,9))) OR (location = 1 AND (id_products LIKE "%,12,%"))) |
0.124
ms
|
1 |
|
|
/modules/ststickers/classes/StStickersMapClass.php:188
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 407 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `xr23z_stock_available`
WHERE (id_product = 3) AND (id_product_attribute = 15) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.124
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:269
/classes/Product.php:2506 (getQuantityAvailableByProduct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:920 (getAttributesResume)
/src/Adapter/Presenter/Product/ProductLazyArray.php:752 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getFlags)
/var/cache/dev/smarty/compile/transformer/53/b8/7e/53b87e48cd68c1673fe52d704a3eeb41c7d46cac_2.file.sticker.tpl.cache.php:48 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e3653af629_15962486)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/transformer/2e/1c/87/2e1c87f7b380ff9e03bb6b63e57add60db8c1479_2.file.product.tpl.cache.php:63 (_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/dev/smarty/compile/transformer/2e/1c/87/2e1c87f7b380ff9e03bb6b63e57add60db8c1479_2.file.product.tpl.cache.php:192 (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/dev/smarty/compile/transformer/2e/1c/87/2e1c87f7b380ff9e03bb6b63e57add60db8c1479_2.file.product.tpl.cache.php:404 (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/dev/smarty/compile/transformer/2e/1c/87/2e1c87f7b380ff9e03bb6b63e57add60db8c1479_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e365386d75_77248485)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/transformer/4a/dd/9c/4add9c4a8c2e435790d5fd17d45d1c288f523876_2.file.product-slider.tpl.cache.php:102 (_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/dev/smarty/compile/transformer/4a/dd/9c/4add9c4a8c2e435790d5fd17d45d1c288f523876_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e36530d2e7_26274938)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/transformer/39/d3/1a/39d31a599d73c039735add7bd5dc7a2a3a72c0ba_2.module.ps_categoryproductsviewstemplateshookps_categoryproducts.tpl.cache.php:53 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_68ff99ca35e378_79665226)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:55 (fetch)
/classes/module/Module.php:2395 (fetch)
/modules/ps_categoryproducts/ps_categoryproducts.php:254 (fetch)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 36 |
SELECT SQL_NO_CACHE `name` FROM `xr23z_supplier` WHERE `id_supplier` = 2 LIMIT 1 |
0.123
ms
|
1 |
|
|
/classes/Supplier.php:240
/classes/Product.php:717 (getNameById)
/controllers/front/ProductController.php:149 (__construct)
/tools/profiling/Controller.php:46 (init)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 247 |
SELECT SQL_NO_CACHE count(0)
FROM `xr23z_st_wishlist_product` whp
LEFT JOIN `xr23z_st_wishlist` wh ON (wh.`id_st_wishlist`=whp.`id_st_wishlist`)
WHERE whp.`id_product` = 3 AND wh.`id_customer`=0 AND wh.`id_shop`= 1 LIMIT 1 |
0.123
ms
|
1 |
|
|
/modules/stwishlist/classes/StWishListClass.php:364
/modules/stwishlist/stwishlist.php:1259 (countProCustomer)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 277 |
SELECT SQL_NO_CACHE `reduction`
FROM `xr23z_product_group_reduction_cache`
WHERE `id_product` = 13 AND `id_group` = 1 LIMIT 1 |
0.123
ms
|
0 |
|
|
/classes/GroupReduction.php:146
/classes/Product.php:3707 (getValueForProduct)
/classes/Product.php:3433 (priceCalculation)
/classes/Product.php:5405 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 332 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `xr23z_stock_available`
WHERE (id_product = 15) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.122
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:269
/classes/Pack.php:320 (getQuantityAvailableByProduct)
/classes/Product.php:4062 (getQuantity)
/classes/Product.php:5511 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 445 |
SELECT SQL_NO_CACHE data
FROM `xr23z_ganalytics_data`
WHERE id_cart = 0
AND id_shop = 1 LIMIT 1 |
0.122
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:1251 (hookDisplayBeforeBodyClosingTag)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:628 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:182 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 255 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `xr23z_stock_available`
WHERE (id_product = 12) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.122
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:269
/classes/Product.php:4066 (getQuantityAvailableByProduct)
/classes/Product.php:5511 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 314 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `xr23z_category` c
LEFT JOIN `xr23z_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 2 LIMIT 1 |
0.122
ms
|
1 |
|
|
/classes/Category.php:1577
/modules/ststickers/classes/StStickersMapClass.php:174 (getParentsCategories)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 206 |
SELECT SQL_NO_CACHE `id_module` FROM `xr23z_module` WHERE `name` = "stqrcode" LIMIT 1 |
0.121
ms
|
1 |
|
|
/classes/module/Module.php:2758
/classes/module/Module.php:2244 (getModuleIdByName)
/classes/Hook.php:1257 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/36/28/e4/3628e4f5afe166eddd4b4cdffff592223c027d5d_2.file.product-add-to-cart.tpl.php:56 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04741226f5_03201691)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/23/2c/b4/232cb4c3d60eef13f80ba9ebfd305b666551b940_2.file.product-buy.tpl.php:112 (_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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/23/2c/b4/232cb4c3d60eef13f80ba9ebfd305b666551b940_2.file.product-buy.tpl.php:209 (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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/23/2c/b4/232cb4c3d60eef13f80ba9ebfd305b666551b940_2.file.product-buy.tpl.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04740d0ba8_11468668)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/c5/fe/40/c5fe40dd64cdd89eba28b52f0981bc2787b40b5c_2.file.product-first.tpl.php:106 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473e00b51_98407663)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:142 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 178 |
SELECT SQL_NO_CACHE `id_module` FROM `xr23z_module_shop` WHERE `id_module` = 81 AND `id_shop` = 1 LIMIT 1 |
0.121
ms
|
1 |
|
|
/classes/module/Module.php:2245
/classes/Hook.php:1257 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/ff/02/12/ff021241fc8d9795aa2c8f534088eec29022dd12_2.file.header.tpl.php:84 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/ff/02/12/ff021241fc8d9795aa2c8f534088eec29022dd12_2.file.header.tpl.php:30 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e36500ee11_74762667)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:283 (_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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:86 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 386 |
SELECT SQL_NO_CACHE *
FROM `xr23z_product_attribute_lang`
WHERE `id_product_attribute` = 16 |
0.121
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:81
/classes/ObjectModel.php:219 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:5597 (__construct)
/classes/Product.php:5560 (computeUnitPriceRatio)
/classes/ProductAssembler.php:191 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 76 |
SELECT SQL_NO_CACHE `priority`, `id_specific_price_priority`
FROM `xr23z_specific_price_priority`
WHERE `id_product` = 14
ORDER BY `id_specific_price_priority` DESC LIMIT 1 |
0.120
ms
|
0 |
|
|
/classes/SpecificPrice.php:253
/classes/SpecificPrice.php:236 (getPriority)
/classes/SpecificPrice.php:614 (_getScoreQuery)
/controllers/front/ProductController.php:570 (getQuantityDiscounts)
/controllers/front/ProductController.php:327 (assignPriceAndTax)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 360 |
SELECT SQL_NO_CACHE count(0)
FROM `xr23z_st_wishlist_product` whp
LEFT JOIN `xr23z_st_wishlist` wh ON (wh.`id_st_wishlist`=whp.`id_st_wishlist`)
WHERE whp.`id_product` = 15 AND wh.`id_customer`=0 AND wh.`id_shop`= 1 LIMIT 1 |
0.120
ms
|
1 |
|
|
/modules/stwishlist/classes/StWishListClass.php:364
/modules/stwishlist/stwishlist.php:1259 (countProCustomer)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 173 |
SELECT SQL_NO_CACHE `id_module` FROM `xr23z_module_shop` WHERE `id_module` = 79 AND `id_shop` = 1 LIMIT 1 |
0.120
ms
|
1 |
|
|
/classes/module/Module.php:2245
/classes/Hook.php:1257 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/ff/02/12/ff021241fc8d9795aa2c8f534088eec29022dd12_2.file.header.tpl.php:81 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/ff/02/12/ff021241fc8d9795aa2c8f534088eec29022dd12_2.file.header.tpl.php:30 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e36500ee11_74762667)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:283 (_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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:86 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 307 |
SELECT SQL_NO_CACHE *
FROM `xr23z_product_attribute_lang`
WHERE `id_product_attribute` = 19 |
0.120
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:81
/classes/ObjectModel.php:219 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:5597 (__construct)
/classes/Product.php:5560 (computeUnitPriceRatio)
/classes/ProductAssembler.php:191 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 433 |
SELECT SQL_NO_CACHE count(0)
FROM `xr23z_st_wishlist_product` whp
LEFT JOIN `xr23z_st_wishlist` wh ON (wh.`id_st_wishlist`=whp.`id_st_wishlist`)
WHERE whp.`id_product` = 14 AND wh.`id_customer`=0 AND wh.`id_shop`= 1 LIMIT 1 |
0.120
ms
|
1 |
|
|
/modules/stwishlist/classes/StWishListClass.php:364
/modules/stwishlist/stwishlist.php:1259 (countProCustomer)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stviewedproducts/stviewedproducts.php:208 (assembleProduct)
/modules/stviewedproducts/stviewedproducts.php:224 (getProducts)
/modules/stviewedproducts/stviewedproducts.php:234 (_prepareSimple)
/classes/Hook.php:1251 (hookDisplaySideBar)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:526 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:147 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 437 |
SELECT SQL_NO_CACHE *
FROM `xr23z_st_wishlist_product`
WHERE `id_product` > 0
AND `id_st_wishlist` = 3 |
0.120
ms
|
1 |
|
|
/modules/stwishlist/classes/StWishListClass.php:206
/modules/stwishlist/classes/StWishListClass.php:175 (getProductsByIdWishlist)
/modules/stwishlist/stwishlist.php:1165 (getByIdCustomer)
/classes/Hook.php:1251 (hookDisplaySideBar)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:526 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:147 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 27 |
SELECT SQL_NO_CACHE `id_lang` FROM `xr23z_lang`
WHERE `locale` = 'ro-ro'
OR `language_code` = 'ro-ro' LIMIT 1 |
0.119
ms
|
1 |
|
|
/classes/Language.php:870
/src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:114 (getIdByLocale)
/src/Core/Data/Layer/AbstractDataLayer.php:90 (doRead)
/src/Core/Data/Layer/AbstractDataLayer.php:149 (read)
/src/Core/Data/Layer/AbstractDataLayer.php:94 (propagateRead)
/src/Core/Localization/Currency/CurrencyDataSource.php:67 (read)
/src/Core/Localization/Currency/CurrencyDataSource.php:109 (getLocalizedCurrencyData)
/src/Core/Localization/Currency/CurrencyDataSource.php:96 (formatCurrenciesData)
/src/Core/Localization/Currency/Repository.php:87 (getAllInstalledCurrenciesData)
/src/Core/Localization/Locale/Repository.php:206 (getAllInstalledCurrencies)
/src/Core/Localization/Locale/Repository.php:149 (getPriceSpecifications)
/classes/controller/Controller.php:219 (getLocale)
/classes/controller/FrontController.php:242 (init)
/controllers/front/ProductController.php:127 (init)
/tools/profiling/Controller.php:46 (init)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 54 |
SELECT SQL_NO_CACHE location
FROM `xr23z_stock_available`
WHERE (id_product = 14) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.119
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:593
/classes/Product.php:7483 (getLocation)
/classes/Product.php:733 (loadStockData)
/controllers/front/ProductController.php:149 (__construct)
/tools/profiling/Controller.php:46 (init)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 214 |
SELECT SQL_NO_CACHE `id_module` FROM `xr23z_module_shop` WHERE `id_module` = 29 AND `id_shop` = 1 LIMIT 1 |
0.119
ms
|
1 |
|
|
/classes/module/Module.php:2245
/classes/Hook.php:1257 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 232 |
SELECT SQL_NO_CACHE *
FROM `xr23z_product_attribute_lang`
WHERE `id_product_attribute` = 13 |
0.119
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:81
/classes/ObjectModel.php:219 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:5597 (__construct)
/classes/Product.php:5560 (computeUnitPriceRatio)
/classes/ProductAssembler.php:191 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 381 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `xr23z_stock_available`
WHERE (id_product = 4) AND (id_product_attribute = 16) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.119
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:269
/classes/Product.php:4066 (getQuantityAvailableByProduct)
/classes/Product.php:5523 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 103 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `xr23z_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.118
ms
|
1 |
|
|
/classes/Category.php:1582
/modules/steasycontent/classes/StEasyContentClass.php:299 (getParentsCategories)
/modules/steasycontent/steasycontent.php:2626 (getListContent)
/modules/steasycontent/steasycontent.php:3822 (_prepareHook)
/classes/Hook.php:1251 (hookDisplayProductExtraContent)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/src/Adapter/HookManager.php:81 (exec)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:71 (exec)
/src/Core/Product/ProductExtraContentFinder.php:57 (find)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:103 (find)
/controllers/front/ProductController.php:1198 (present)
/controllers/front/ProductController.php:337 (getTemplateVarProduct)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 415 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `xr23z_stock_available`
WHERE (id_product = 4) AND (id_product_attribute = 18) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.118
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:269
/classes/Product.php:2506 (getQuantityAvailableByProduct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:920 (getAttributesResume)
/src/Adapter/Presenter/Product/ProductLazyArray.php:752 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getFlags)
/var/cache/dev/smarty/compile/transformer/53/b8/7e/53b87e48cd68c1673fe52d704a3eeb41c7d46cac_2.file.sticker.tpl.cache.php:48 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e3653af629_15962486)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/transformer/2e/1c/87/2e1c87f7b380ff9e03bb6b63e57add60db8c1479_2.file.product.tpl.cache.php:63 (_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/dev/smarty/compile/transformer/2e/1c/87/2e1c87f7b380ff9e03bb6b63e57add60db8c1479_2.file.product.tpl.cache.php:192 (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/dev/smarty/compile/transformer/2e/1c/87/2e1c87f7b380ff9e03bb6b63e57add60db8c1479_2.file.product.tpl.cache.php:404 (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/dev/smarty/compile/transformer/2e/1c/87/2e1c87f7b380ff9e03bb6b63e57add60db8c1479_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e365386d75_77248485)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/transformer/4a/dd/9c/4add9c4a8c2e435790d5fd17d45d1c288f523876_2.file.product-slider.tpl.cache.php:102 (_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/dev/smarty/compile/transformer/4a/dd/9c/4add9c4a8c2e435790d5fd17d45d1c288f523876_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e36530d2e7_26274938)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/transformer/39/d3/1a/39d31a599d73c039735add7bd5dc7a2a3a72c0ba_2.module.ps_categoryproductsviewstemplateshookps_categoryproducts.tpl.cache.php:53 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_68ff99ca35e378_79665226)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:55 (fetch)
/classes/module/Module.php:2395 (fetch)
/modules/ps_categoryproducts/ps_categoryproducts.php:254 (fetch)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 204 |
SELECT SQL_NO_CACHE `id_module` FROM `xr23z_module_shop` WHERE `id_module` = 102 AND `id_shop` = 1 LIMIT 1 |
0.117
ms
|
1 |
|
|
/classes/module/Module.php:2245
/classes/Hook.php:1257 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/36/28/e4/3628e4f5afe166eddd4b4cdffff592223c027d5d_2.file.product-add-to-cart.tpl.php:56 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04741226f5_03201691)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/23/2c/b4/232cb4c3d60eef13f80ba9ebfd305b666551b940_2.file.product-buy.tpl.php:112 (_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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/23/2c/b4/232cb4c3d60eef13f80ba9ebfd305b666551b940_2.file.product-buy.tpl.php:209 (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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/23/2c/b4/232cb4c3d60eef13f80ba9ebfd305b666551b940_2.file.product-buy.tpl.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04740d0ba8_11468668)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/c5/fe/40/c5fe40dd64cdd89eba28b52f0981bc2787b40b5c_2.file.product-first.tpl.php:106 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473e00b51_98407663)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:142 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 254 |
SELECT SQL_NO_CACHE `reduction`
FROM `xr23z_product_group_reduction_cache`
WHERE `id_product` = 12 AND `id_group` = 1 LIMIT 1 |
0.117
ms
|
0 |
|
|
/classes/GroupReduction.php:146
/classes/Product.php:3707 (getValueForProduct)
/classes/Product.php:3433 (priceCalculation)
/classes/Product.php:5405 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 263 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `xr23z_category` c
LEFT JOIN `xr23z_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 2 LIMIT 1 |
0.117
ms
|
1 |
|
|
/classes/Category.php:1577
/modules/ststickers/classes/StStickersMapClass.php:174 (getParentsCategories)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 180 |
SELECT SQL_NO_CACHE `id_module` FROM `xr23z_module_shop` WHERE `id_module` = 128 AND `id_shop` = 1 LIMIT 1 |
0.117
ms
|
1 |
|
|
/classes/module/Module.php:2245
/modules/stcustomersignin/stcustomersignin.php:577 (isEnabled)
/modules/stcustomersignin/stcustomersignin.php:602 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/ff/02/12/ff021241fc8d9795aa2c8f534088eec29022dd12_2.file.header.tpl.php:84 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/ff/02/12/ff021241fc8d9795aa2c8f534088eec29022dd12_2.file.header.tpl.php:30 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e36500ee11_74762667)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:283 (_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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:86 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 391 |
SELECT SQL_NO_CACHE *
FROM `xr23z_product_lang`
WHERE `id_product` = 4 AND `id_shop` = 1 |
0.117
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:81
/classes/ObjectModel.php:219 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:708 (__construct)
/modules/ststickers/classes/StStickersMapClass.php:158 (__construct)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 125 |
SELECT SQL_NO_CACHE position
FROM `xr23z_category_product`
WHERE id_category = 9
AND id_product = 14 |
0.116
ms
|
1 |
|
|
/modules/stproductlinknav/stproductlinknav.php:194
/modules/stproductlinknav/stproductlinknav.php:96 (getWsPositionInCategory)
/modules/stproductlinknav/stproductlinknav.php:187 (_prepareHook)
/classes/Hook.php:1251 (hookDisplayProductExtraContent)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/src/Adapter/HookManager.php:81 (exec)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:71 (exec)
/src/Core/Product/ProductExtraContentFinder.php:57 (find)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:103 (find)
/controllers/front/ProductController.php:1198 (present)
/controllers/front/ProductController.php:337 (getTemplateVarProduct)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 270 |
SELECT SQL_NO_CACHE count(0)
FROM `xr23z_st_wishlist_product` whp
LEFT JOIN `xr23z_st_wishlist` wh ON (wh.`id_st_wishlist`=whp.`id_st_wishlist`)
WHERE whp.`id_product` = 12 AND wh.`id_customer`=0 AND wh.`id_shop`= 1 LIMIT 1 |
0.116
ms
|
1 |
|
|
/modules/stwishlist/classes/StWishListClass.php:364
/modules/stwishlist/stwishlist.php:1259 (countProCustomer)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 317 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `xr23z_category` c
LEFT JOIN `xr23z_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 9 LIMIT 1 |
0.116
ms
|
1 |
|
|
/classes/Category.php:1577
/modules/ststickers/classes/StStickersMapClass.php:174 (getParentsCategories)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 42 |
SELECT SQL_NO_CACHE *
FROM `xr23z_tax_lang`
WHERE `id_tax` = 1 |
0.115
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:81
/classes/ObjectModel.php:219 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/tax/TaxRulesTaxManager.php:116 (__construct)
/classes/Product.php:6520 (getTaxCalculator)
/classes/Product.php:723 (getTaxesRate)
/controllers/front/ProductController.php:149 (__construct)
/tools/profiling/Controller.php:46 (init)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 331 |
SELECT SQL_NO_CACHE cl.`link_rewrite`
FROM `xr23z_category_lang` cl
WHERE `id_lang` = 0
AND cl.id_shop = 1
AND cl.`id_category` = 8 LIMIT 1 |
0.115
ms
|
0 |
|
|
/classes/Category.php:1366
/classes/Product.php:740 (getLinkRewrite)
/classes/Pack.php:288 (__construct)
/classes/Product.php:4062 (getQuantity)
/classes/Product.php:5511 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 32 |
SELECT SQL_NO_CACHE *
FROM `xr23z_group_lang`
WHERE `id_group` = 1 |
0.114
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:81
/classes/ObjectModel.php:219 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Group.php:81 (__construct)
/classes/Group.php:397 (__construct)
/classes/Cart.php:255 (getCurrent)
/classes/Cart.php:228 (setTaxCalculationMethod)
/classes/controller/FrontController.php:430 (__construct)
/controllers/front/ProductController.php:127 (init)
/tools/profiling/Controller.php:46 (init)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 238 |
SELECT SQL_NO_CACHE *
FROM `xr23z_product_lang`
WHERE `id_product` = 3 AND `id_shop` = 1 |
0.114
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:81
/classes/ObjectModel.php:219 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:708 (__construct)
/modules/ststickers/classes/StStickersMapClass.php:158 (__construct)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 240 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `xr23z_category` c
LEFT JOIN `xr23z_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 2 LIMIT 1 |
0.114
ms
|
1 |
|
|
/classes/Category.php:1577
/modules/ststickers/classes/StStickersMapClass.php:174 (getParentsCategories)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 393 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `xr23z_category` c
LEFT JOIN `xr23z_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 2 LIMIT 1 |
0.114
ms
|
1 |
|
|
/classes/Category.php:1577
/modules/ststickers/classes/StStickersMapClass.php:174 (getParentsCategories)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 181 |
SELECT SQL_NO_CACHE `id_module` FROM `xr23z_module` WHERE `name` = "stlovedproduct" LIMIT 1 |
0.113
ms
|
1 |
|
|
/classes/module/Module.php:2758
/classes/module/Module.php:2212 (getModuleIdByName)
/modules/stcustomersignin/stcustomersignin.php:578 (isInstalled)
/modules/stcustomersignin/stcustomersignin.php:602 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/ff/02/12/ff021241fc8d9795aa2c8f534088eec29022dd12_2.file.header.tpl.php:84 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/ff/02/12/ff021241fc8d9795aa2c8f534088eec29022dd12_2.file.header.tpl.php:30 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e36500ee11_74762667)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:283 (_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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:86 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 106 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `xr23z_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.112
ms
|
1 |
|
|
/classes/Category.php:1582
/modules/steasycontent/classes/StEasyContentClass.php:299 (getParentsCategories)
/modules/steasycontent/steasycontent.php:2626 (getListContent)
/modules/steasycontent/steasycontent.php:3822 (_prepareHook)
/classes/Hook.php:1251 (hookDisplayProductExtraContent)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/src/Adapter/HookManager.php:81 (exec)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:71 (exec)
/src/Core/Product/ProductExtraContentFinder.php:57 (find)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:103 (find)
/controllers/front/ProductController.php:1198 (present)
/controllers/front/ProductController.php:337 (getTemplateVarProduct)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 179 |
SELECT SQL_NO_CACHE `id_module` FROM `xr23z_module` WHERE `name` = "stwishlist" LIMIT 1 |
0.112
ms
|
1 |
|
|
/classes/module/Module.php:2758
/classes/module/Module.php:2212 (getModuleIdByName)
/modules/stcustomersignin/stcustomersignin.php:577 (isInstalled)
/modules/stcustomersignin/stcustomersignin.php:602 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/ff/02/12/ff021241fc8d9795aa2c8f534088eec29022dd12_2.file.header.tpl.php:84 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/ff/02/12/ff021241fc8d9795aa2c8f534088eec29022dd12_2.file.header.tpl.php:30 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e36500ee11_74762667)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:283 (_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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:86 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 209 |
SELECT SQL_NO_CACHE `id_module` FROM `xr23z_module_shop` WHERE `id_module` = 127 AND `id_shop` = 1 LIMIT 1 |
0.112
ms
|
1 |
|
|
/classes/module/Module.php:2245
/classes/Hook.php:1257 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/f2/a0/22/f2a0224fc3ab32e00194b998fb77b7d09da0cd0f_2.file.product-additional-info.tpl.php:25 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04741bc849_32116529)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/23/2c/b4/232cb4c3d60eef13f80ba9ebfd305b666551b940_2.file.product-buy.tpl.php:124 (_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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/23/2c/b4/232cb4c3d60eef13f80ba9ebfd305b666551b940_2.file.product-buy.tpl.php:216 (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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/23/2c/b4/232cb4c3d60eef13f80ba9ebfd305b666551b940_2.file.product-buy.tpl.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04740d0ba8_11468668)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/c5/fe/40/c5fe40dd64cdd89eba28b52f0981bc2787b40b5c_2.file.product-first.tpl.php:106 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473e00b51_98407663)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:142 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 262 |
SELECT SQL_NO_CACHE `id_category` FROM `xr23z_category_product`
WHERE `id_product` = 12 |
0.112
ms
|
2 |
|
|
/classes/Product.php:3140
/classes/Product.php:3196 (getProductCategories)
/modules/ststickers/classes/StStickersMapClass.php:161 (getCategories)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 286 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `xr23z_category` c
LEFT JOIN `xr23z_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 2 LIMIT 1 |
0.112
ms
|
1 |
|
|
/classes/Category.php:1577
/modules/ststickers/classes/StStickersMapClass.php:174 (getParentsCategories)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 378 |
SELECT SQL_NO_CACHE `reduction`
FROM `xr23z_product_group_reduction_cache`
WHERE `id_product` = 4 AND `id_group` = 1 LIMIT 1 |
0.112
ms
|
0 |
|
|
/classes/GroupReduction.php:146
/classes/Product.php:3707 (getValueForProduct)
/classes/Product.php:3433 (priceCalculation)
/classes/Product.php:5405 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 392 |
SELECT SQL_NO_CACHE `id_category` FROM `xr23z_category_product`
WHERE `id_product` = 4 |
0.112
ms
|
2 |
|
|
/classes/Product.php:3140
/classes/Product.php:3196 (getProductCategories)
/modules/ststickers/classes/StStickersMapClass.php:161 (getCategories)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 313 |
SELECT SQL_NO_CACHE `id_category` FROM `xr23z_category_product`
WHERE `id_product` = 5 |
0.111
ms
|
2 |
|
|
/classes/Product.php:3140
/classes/Product.php:3196 (getProductCategories)
/modules/ststickers/classes/StStickersMapClass.php:161 (getCategories)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 351 |
SELECT SQL_NO_CACHE *
FROM `xr23z_category` a
LEFT JOIN `xr23z_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 8) LIMIT 1 |
0.111
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:219 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:178 (__construct)
/modules/ststickers/classes/StStickersMapClass.php:165 (__construct)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 243 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `xr23z_category` c
LEFT JOIN `xr23z_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 9 LIMIT 1 |
0.111
ms
|
1 |
|
|
/classes/Category.php:1577
/modules/ststickers/classes/StStickersMapClass.php:174 (getParentsCategories)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 363 |
SELECT SQL_NO_CACHE id_product_item, id_product_attribute_item, quantity FROM `xr23z_pack` where id_product_pack = 15 |
0.111
ms
|
2 |
|
|
/classes/Pack.php:189
/classes/Pack.php:138 (getItems)
/src/Adapter/Presenter/Product/ProductLazyArray.php:1128 (noPackPrice)
/src/Adapter/Presenter/Product/ProductLazyArray.php:140 (addPriceInformation)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:50 (__construct)
/modules/ps_categoryproducts/ps_categoryproducts.php:326 (present)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 116 |
SELECT SQL_NO_CACHE *
FROM `xr23z_st_product_comment_tag`
WHERE id_product=14 |
0.110
ms
|
1 |
|
|
/modules/stproductcomments/classes/StProductCommentClass.php:284
/modules/stproductcomments/stproductcomments.php:1791 (getTag)
/modules/stproductcomments/stproductcomments.php:1819 (_prepare_comments)
/classes/Hook.php:1251 (hookDisplayProductExtraContent)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/src/Adapter/HookManager.php:81 (exec)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:71 (exec)
/src/Core/Product/ProductExtraContentFinder.php:57 (find)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:103 (find)
/controllers/front/ProductController.php:1198 (present)
/controllers/front/ProductController.php:337 (getTemplateVarProduct)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 352 |
SELECT SQL_NO_CACHE *
FROM `xr23z_category_lang`
WHERE `id_category` = 8 AND `id_shop` = 1 |
0.110
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:81
/classes/ObjectModel.php:219 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:178 (__construct)
/modules/ststickers/classes/StStickersMapClass.php:165 (__construct)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 131 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `xr23z_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.108
ms
|
1 |
|
|
/classes/Category.php:1582
/modules/ststickers/classes/StStickersMapClass.php:174 (getParentsCategories)
/modules/ststickers/ststickers.php:1741 (getForProduct)
/classes/Hook.php:1251 (hookDisplayProductExtraContent)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/src/Adapter/HookManager.php:81 (exec)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:71 (exec)
/src/Core/Product/ProductExtraContentFinder.php:57 (find)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:103 (find)
/controllers/front/ProductController.php:1198 (present)
/controllers/front/ProductController.php:337 (getTemplateVarProduct)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 150 |
SELECT SQL_NO_CACHE `need_identification_number`
FROM `xr23z_country`
WHERE `id_country` = 36 LIMIT 1 |
0.108
ms
|
1 |
|
|
/classes/Country.php:402
/classes/AddressFormat.php:632 (isNeedDniByCountryId)
/classes/AddressFormat.php:613 (getFormat)
/classes/AddressFormat.php:560 (getAddressCountryFormat)
/classes/AddressFormat.php:436 (getOrderedAddressFields)
/classes/controller/FrontController.php:1713 (generateAddress)
/classes/controller/FrontController.php:522 (getTemplateVarShop)
/classes/controller/FrontController.php:585 (assignGeneralPurposeVariables)
/override/classes/controller/FrontController.php:11 (initContent)
/controllers/front/ProductController.php:418 (initContent)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 338 |
SELECT SQL_NO_CACHE product_type FROM `xr23z_product` WHERE id_product = 7 LIMIT 1 |
0.108
ms
|
1 |
|
|
/classes/Pack.php:92
/classes/Pack.php:424 (isPack)
/classes/Product.php:5539 (getItemTable)
/classes/ProductAssembler.php:191 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 347 |
SELECT SQL_NO_CACHE *
FROM `xr23z_category_lang`
WHERE `id_category` = 6 AND `id_shop` = 1 |
0.108
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:81
/classes/ObjectModel.php:219 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:178 (__construct)
/modules/ststickers/classes/StStickersMapClass.php:165 (__construct)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 396 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `xr23z_category` c
LEFT JOIN `xr23z_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 9 LIMIT 1 |
0.108
ms
|
1 |
|
|
/classes/Category.php:1577
/modules/ststickers/classes/StStickersMapClass.php:174 (getParentsCategories)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 49 |
SELECT SQL_NO_CACHE `reduction`
FROM `xr23z_product_group_reduction_cache`
WHERE `id_product` = 14 AND `id_group` = 1 LIMIT 1 |
0.107
ms
|
0 |
|
|
/classes/GroupReduction.php:146
/classes/Product.php:3707 (getValueForProduct)
/classes/Product.php:3433 (priceCalculation)
/classes/Product.php:730 (getPriceStatic)
/controllers/front/ProductController.php:149 (__construct)
/tools/profiling/Controller.php:46 (init)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 342 |
SELECT SQL_NO_CACHE `id_category` FROM `xr23z_category_product`
WHERE `id_product` = 15 |
0.107
ms
|
4 |
|
|
/classes/Product.php:3140
/classes/Product.php:3196 (getProductCategories)
/modules/ststickers/classes/StStickersMapClass.php:161 (getCategories)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 75 |
SELECT SQL_NO_CACHE 1 FROM `xr23z_specific_price` WHERE `to` BETWEEN '2026-01-07 00:00:00' AND '2026-01-07 23:59:59' LIMIT 1 |
0.106
ms
|
1 |
|
|
/classes/SpecificPrice.php:378
/classes/SpecificPrice.php:611 (computeExtraConditions)
/controllers/front/ProductController.php:570 (getQuantityDiscounts)
/controllers/front/ProductController.php:327 (assignPriceAndTax)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 372 |
SELECT SQL_NO_CACHE 1 FROM `xr23z_specific_price` WHERE id_product = 7 LIMIT 1 |
0.106
ms
|
1 |
|
|
/classes/SpecificPrice.php:432
/classes/SpecificPrice.php:520 (couldHaveSpecificPrice)
/classes/Product.php:3543 (getSpecificPrice)
/classes/Product.php:3433 (priceCalculation)
/classes/Product.php:3885 (getPriceStatic)
/classes/Pack.php:140 (getPrice)
/src/Adapter/Presenter/Product/ProductLazyArray.php:1128 (noPackPrice)
/src/Adapter/Presenter/Product/ProductLazyArray.php:140 (addPriceInformation)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:50 (__construct)
/modules/ps_categoryproducts/ps_categoryproducts.php:326 (present)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 267 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `xr23z_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.105
ms
|
1 |
|
|
/classes/Category.php:1582
/modules/ststickers/classes/StStickersMapClass.php:174 (getParentsCategories)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 348 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `xr23z_category` c
LEFT JOIN `xr23z_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 6 LIMIT 1 |
0.105
ms
|
1 |
|
|
/classes/Category.php:1577
/modules/ststickers/classes/StStickersMapClass.php:174 (getParentsCategories)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 369 |
SELECT SQL_NO_CACHE out_of_stock
FROM `xr23z_stock_available`
WHERE (id_product = 7) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.105
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:565
/classes/Product.php:7482 (outOfStock)
/classes/Pack.php:193 (loadStockData)
/classes/Pack.php:138 (getItems)
/src/Adapter/Presenter/Product/ProductLazyArray.php:1128 (noPackPrice)
/src/Adapter/Presenter/Product/ProductLazyArray.php:140 (addPriceInformation)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:50 (__construct)
/modules/ps_categoryproducts/ps_categoryproducts.php:326 (present)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 119 |
SELECT SQL_NO_CACHE position
FROM `xr23z_category_product`
WHERE id_category = 9
AND id_product = 14 |
0.104
ms
|
1 |
|
|
/modules/stproductlinknav/stproductlinknav.php:194
/modules/stproductlinknav/stproductlinknav.php:96 (getWsPositionInCategory)
/modules/stproductlinknav/stproductlinknav.php:186 (_prepareHook)
/classes/Hook.php:1251 (hookDisplayProductExtraContent)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/src/Adapter/HookManager.php:81 (exec)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:71 (exec)
/src/Core/Product/ProductExtraContentFinder.php:57 (find)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:103 (find)
/controllers/front/ProductController.php:1198 (present)
/controllers/front/ProductController.php:337 (getTemplateVarProduct)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 364 |
SELECT SQL_NO_CACHE out_of_stock
FROM `xr23z_stock_available`
WHERE (id_product = 5) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.104
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:565
/classes/Product.php:7482 (outOfStock)
/classes/Pack.php:193 (loadStockData)
/classes/Pack.php:138 (getItems)
/src/Adapter/Presenter/Product/ProductLazyArray.php:1128 (noPackPrice)
/src/Adapter/Presenter/Product/ProductLazyArray.php:140 (addPriceInformation)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:50 (__construct)
/modules/ps_categoryproducts/ps_categoryproducts.php:326 (present)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 30 |
SELECT SQL_NO_CACHE id_shop
FROM `xr23z_currency_shop`
WHERE `id_currency` = 1
AND id_shop = 1 LIMIT 1 |
0.103
ms
|
1 |
|
|
/classes/ObjectModel.php:1582
/classes/Tools.php:689 (isAssociatedToShop)
/classes/controller/FrontController.php:331 (setCurrency)
/controllers/front/ProductController.php:127 (init)
/tools/profiling/Controller.php:46 (init)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 266 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `xr23z_category` c
LEFT JOIN `xr23z_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 9 LIMIT 1 |
0.103
ms
|
1 |
|
|
/classes/Category.php:1577
/modules/ststickers/classes/StStickersMapClass.php:174 (getParentsCategories)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 289 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `xr23z_category` c
LEFT JOIN `xr23z_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 9 LIMIT 1 |
0.103
ms
|
1 |
|
|
/classes/Category.php:1577
/modules/ststickers/classes/StStickersMapClass.php:174 (getParentsCategories)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 25 |
SELECT SQL_NO_CACHE c.id_currency
FROM `xr23z_currency` c
WHERE (iso_code = 'RON') LIMIT 1 |
0.102
ms
|
1 |
|
|
/classes/Currency.php:893
/src/Adapter/Currency/CurrencyDataProvider.php:92 (getIdByIsoCode)
/src/Adapter/Currency/CurrencyDataProvider.php:114 (getCurrencyByIsoCode)
/src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:101 (getCurrencyByIsoCodeAndLocale)
/src/Core/Data/Layer/AbstractDataLayer.php:90 (doRead)
/src/Core/Data/Layer/AbstractDataLayer.php:149 (read)
/src/Core/Data/Layer/AbstractDataLayer.php:94 (propagateRead)
/src/Core/Localization/Currency/CurrencyDataSource.php:67 (read)
/src/Core/Localization/Currency/CurrencyDataSource.php:109 (getLocalizedCurrencyData)
/src/Core/Localization/Currency/CurrencyDataSource.php:96 (formatCurrenciesData)
/src/Core/Localization/Currency/Repository.php:87 (getAllInstalledCurrenciesData)
/src/Core/Localization/Locale/Repository.php:206 (getAllInstalledCurrencies)
/src/Core/Localization/Locale/Repository.php:149 (getPriceSpecifications)
/classes/controller/Controller.php:219 (getLocale)
/classes/controller/FrontController.php:242 (init)
/controllers/front/ProductController.php:127 (init)
/tools/profiling/Controller.php:46 (init)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 182 |
SELECT SQL_NO_CACHE `id_module` FROM `xr23z_module_shop` WHERE `id_module` = 115 AND `id_shop` = 1 LIMIT 1 |
0.102
ms
|
1 |
|
|
/classes/module/Module.php:2245
/modules/stcustomersignin/stcustomersignin.php:578 (isEnabled)
/modules/stcustomersignin/stcustomersignin.php:602 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/ff/02/12/ff021241fc8d9795aa2c8f534088eec29022dd12_2.file.header.tpl.php:84 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/ff/02/12/ff021241fc8d9795aa2c8f534088eec29022dd12_2.file.header.tpl.php:30 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e36500ee11_74762667)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:283 (_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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:86 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 365 |
SELECT SQL_NO_CACHE location
FROM `xr23z_stock_available`
WHERE (id_product = 5) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.102
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:593
/classes/Product.php:7483 (getLocation)
/classes/Pack.php:193 (loadStockData)
/classes/Pack.php:138 (getItems)
/src/Adapter/Presenter/Product/ProductLazyArray.php:1128 (noPackPrice)
/src/Adapter/Presenter/Product/ProductLazyArray.php:140 (addPriceInformation)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:50 (__construct)
/modules/ps_categoryproducts/ps_categoryproducts.php:326 (present)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 134 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `xr23z_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.101
ms
|
1 |
|
|
/classes/Category.php:1582
/modules/ststickers/classes/StStickersMapClass.php:174 (getParentsCategories)
/modules/ststickers/ststickers.php:1741 (getForProduct)
/classes/Hook.php:1251 (hookDisplayProductExtraContent)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/src/Adapter/HookManager.php:81 (exec)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:71 (exec)
/src/Core/Product/ProductExtraContentFinder.php:57 (find)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:103 (find)
/controllers/front/ProductController.php:1198 (present)
/controllers/front/ProductController.php:337 (getTemplateVarProduct)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 356 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `xr23z_category` c
LEFT JOIN `xr23z_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 9 LIMIT 1 |
0.101
ms
|
1 |
|
|
/classes/Category.php:1577
/modules/ststickers/classes/StStickersMapClass.php:174 (getParentsCategories)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 200 |
SELECT SQL_NO_CACHE `id_module` FROM `xr23z_module_shop` WHERE `id_module` = 100 AND `id_shop` = 1 LIMIT 1 |
0.100
ms
|
1 |
|
|
/classes/module/Module.php:2245
/classes/Hook.php:1257 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/c5/fe/40/c5fe40dd64cdd89eba28b52f0981bc2787b40b5c_2.file.product-first.tpl.php:358 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/c5/fe/40/c5fe40dd64cdd89eba28b52f0981bc2787b40b5c_2.file.product-first.tpl.php:59 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473e00b51_98407663)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:142 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 94 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `xr23z_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.100
ms
|
1 |
|
|
/classes/Category.php:1582
/modules/steasycontent/classes/StEasyContentClass.php:299 (getParentsCategories)
/modules/steasycontent/steasycontent.php:2626 (getListContent)
/modules/steasycontent/steasycontent.php:3819 (_prepareHook)
/classes/Hook.php:1251 (hookDisplayProductExtraContent)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/src/Adapter/HookManager.php:81 (exec)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:71 (exec)
/src/Core/Product/ProductExtraContentFinder.php:57 (find)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:103 (find)
/controllers/front/ProductController.php:1198 (present)
/controllers/front/ProductController.php:337 (getTemplateVarProduct)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 99 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `xr23z_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.100
ms
|
1 |
|
|
/classes/Category.php:1582
/modules/steasycontent/classes/StEasyContentClass.php:299 (getParentsCategories)
/modules/steasycontent/steasycontent.php:2626 (getListContent)
/modules/steasycontent/steasycontent.php:3819 (_prepareHook)
/classes/Hook.php:1251 (hookDisplayProductExtraContent)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/src/Adapter/HookManager.php:81 (exec)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:71 (exec)
/src/Core/Product/ProductExtraContentFinder.php:57 (find)
/src/PrestaShopBundle/Service/Hook/HookFinder.php:103 (find)
/controllers/front/ProductController.php:1198 (present)
/controllers/front/ProductController.php:337 (getTemplateVarProduct)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 353 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `xr23z_category` c
LEFT JOIN `xr23z_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 8 LIMIT 1 |
0.100
ms
|
1 |
|
|
/classes/Category.php:1577
/modules/ststickers/classes/StStickersMapClass.php:174 (getParentsCategories)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 285 |
SELECT SQL_NO_CACHE `id_category` FROM `xr23z_category_product`
WHERE `id_product` = 13 |
0.099
ms
|
2 |
|
|
/classes/Product.php:3140
/classes/Product.php:3196 (getProductCategories)
/modules/ststickers/classes/StStickersMapClass.php:161 (getCategories)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 357 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `xr23z_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.098
ms
|
1 |
|
|
/classes/Category.php:1582
/modules/ststickers/classes/StStickersMapClass.php:174 (getParentsCategories)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 46 |
SELECT SQL_NO_CACHE 1 FROM `xr23z_specific_price` WHERE id_product = 14 LIMIT 1 |
0.097
ms
|
1 |
|
|
/classes/SpecificPrice.php:432
/classes/SpecificPrice.php:520 (couldHaveSpecificPrice)
/classes/Product.php:3543 (getSpecificPrice)
/classes/Product.php:3433 (priceCalculation)
/classes/Product.php:730 (getPriceStatic)
/controllers/front/ProductController.php:149 (__construct)
/tools/profiling/Controller.php:46 (init)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 53 |
SELECT SQL_NO_CACHE out_of_stock
FROM `xr23z_stock_available`
WHERE (id_product = 14) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.097
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:565
/classes/Product.php:7482 (outOfStock)
/classes/Product.php:733 (loadStockData)
/controllers/front/ProductController.php:149 (__construct)
/tools/profiling/Controller.php:46 (init)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 239 |
SELECT SQL_NO_CACHE `id_category` FROM `xr23z_category_product`
WHERE `id_product` = 3 |
0.097
ms
|
2 |
|
|
/classes/Product.php:3140
/classes/Product.php:3196 (getProductCategories)
/modules/ststickers/classes/StStickersMapClass.php:161 (getCategories)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 241 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `xr23z_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.096
ms
|
1 |
|
|
/classes/Category.php:1582
/modules/ststickers/classes/StStickersMapClass.php:174 (getParentsCategories)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 427 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `xr23z_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.096
ms
|
1 |
|
|
/classes/Category.php:1582
/modules/ststickers/classes/StStickersMapClass.php:174 (getParentsCategories)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stviewedproducts/stviewedproducts.php:208 (assembleProduct)
/modules/stviewedproducts/stviewedproducts.php:224 (getProducts)
/modules/stviewedproducts/stviewedproducts.php:234 (_prepareSimple)
/classes/Hook.php:1251 (hookDisplaySideBar)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:526 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:147 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 207 |
SELECT SQL_NO_CACHE `id_module` FROM `xr23z_module_shop` WHERE `id_module` = 121 AND `id_shop` = 1 LIMIT 1 |
0.095
ms
|
1 |
|
|
/classes/module/Module.php:2245
/classes/Hook.php:1257 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/36/28/e4/3628e4f5afe166eddd4b4cdffff592223c027d5d_2.file.product-add-to-cart.tpl.php:56 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04741226f5_03201691)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/23/2c/b4/232cb4c3d60eef13f80ba9ebfd305b666551b940_2.file.product-buy.tpl.php:112 (_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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/23/2c/b4/232cb4c3d60eef13f80ba9ebfd305b666551b940_2.file.product-buy.tpl.php:209 (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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/23/2c/b4/232cb4c3d60eef13f80ba9ebfd305b666551b940_2.file.product-buy.tpl.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04740d0ba8_11468668)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/c5/fe/40/c5fe40dd64cdd89eba28b52f0981bc2787b40b5c_2.file.product-first.tpl.php:106 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473e00b51_98407663)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:142 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 217 |
SELECT SQL_NO_CACHE `id_module` FROM `xr23z_module_shop` WHERE `id_module` = 57 AND `id_shop` = 1 LIMIT 1 |
0.094
ms
|
1 |
|
|
/classes/module/Module.php:2245
/classes/Hook.php:1257 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 374 |
SELECT SQL_NO_CACHE `reduction`
FROM `xr23z_product_group_reduction_cache`
WHERE `id_product` = 7 AND `id_group` = 1 LIMIT 1 |
0.094
ms
|
0 |
|
|
/classes/GroupReduction.php:146
/classes/Product.php:3707 (getValueForProduct)
/classes/Product.php:3433 (priceCalculation)
/classes/Product.php:3885 (getPriceStatic)
/classes/Pack.php:140 (getPrice)
/src/Adapter/Presenter/Product/ProductLazyArray.php:1128 (noPackPrice)
/src/Adapter/Presenter/Product/ProductLazyArray.php:140 (addPriceInformation)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:50 (__construct)
/modules/ps_categoryproducts/ps_categoryproducts.php:326 (present)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 33 |
SELECT SQL_NO_CACHE id_shop
FROM `xr23z_group_shop`
WHERE `id_group` = 1
AND id_shop = 1 LIMIT 1 |
0.092
ms
|
1 |
|
|
/classes/ObjectModel.php:1582
/classes/Group.php:400 (isAssociatedToShop)
/classes/Cart.php:255 (getCurrent)
/classes/Cart.php:228 (setTaxCalculationMethod)
/classes/controller/FrontController.php:430 (__construct)
/controllers/front/ProductController.php:127 (init)
/tools/profiling/Controller.php:46 (init)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 349 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `xr23z_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.092
ms
|
1 |
|
|
/classes/Category.php:1582
/modules/ststickers/classes/StStickersMapClass.php:174 (getParentsCategories)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 287 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `xr23z_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.091
ms
|
1 |
|
|
/classes/Category.php:1582
/modules/ststickers/classes/StStickersMapClass.php:174 (getParentsCategories)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 315 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `xr23z_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.091
ms
|
1 |
|
|
/classes/Category.php:1582
/modules/ststickers/classes/StStickersMapClass.php:174 (getParentsCategories)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 50 |
SELECT SQL_NO_CACHE `reduction`
FROM `xr23z_group`
WHERE `id_group` = 1 LIMIT 1 |
0.091
ms
|
1 |
|
|
/classes/Group.php:151
/classes/Product.php:3711 (getReductionByIdGroup)
/classes/Product.php:3433 (priceCalculation)
/classes/Product.php:730 (getPriceStatic)
/controllers/front/ProductController.php:149 (__construct)
/tools/profiling/Controller.php:46 (init)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 344 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `xr23z_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.090
ms
|
1 |
|
|
/classes/Category.php:1582
/modules/ststickers/classes/StStickersMapClass.php:174 (getParentsCategories)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 430 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `xr23z_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.090
ms
|
1 |
|
|
/classes/Category.php:1582
/modules/ststickers/classes/StStickersMapClass.php:174 (getParentsCategories)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stviewedproducts/stviewedproducts.php:208 (assembleProduct)
/modules/stviewedproducts/stviewedproducts.php:224 (getProducts)
/modules/stviewedproducts/stviewedproducts.php:234 (_prepareSimple)
/classes/Hook.php:1251 (hookDisplaySideBar)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:526 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:147 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 370 |
SELECT SQL_NO_CACHE location
FROM `xr23z_stock_available`
WHERE (id_product = 7) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.089
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:593
/classes/Product.php:7483 (getLocation)
/classes/Pack.php:193 (loadStockData)
/classes/Pack.php:138 (getItems)
/src/Adapter/Presenter/Product/ProductLazyArray.php:1128 (noPackPrice)
/src/Adapter/Presenter/Product/ProductLazyArray.php:140 (addPriceInformation)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:50 (__construct)
/modules/ps_categoryproducts/ps_categoryproducts.php:326 (present)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 244 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `xr23z_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.088
ms
|
1 |
|
|
/classes/Category.php:1582
/modules/ststickers/classes/StStickersMapClass.php:174 (getParentsCategories)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 264 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `xr23z_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.088
ms
|
1 |
|
|
/classes/Category.php:1582
/modules/ststickers/classes/StStickersMapClass.php:174 (getParentsCategories)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 318 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `xr23z_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.088
ms
|
1 |
|
|
/classes/Category.php:1582
/modules/ststickers/classes/StStickersMapClass.php:174 (getParentsCategories)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 354 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `xr23z_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.088
ms
|
1 |
|
|
/classes/Category.php:1582
/modules/ststickers/classes/StStickersMapClass.php:174 (getParentsCategories)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 394 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `xr23z_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.088
ms
|
1 |
|
|
/classes/Category.php:1582
/modules/ststickers/classes/StStickersMapClass.php:174 (getParentsCategories)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 397 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `xr23z_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.087
ms
|
1 |
|
|
/classes/Category.php:1582
/modules/ststickers/classes/StStickersMapClass.php:174 (getParentsCategories)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|
| 290 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `xr23z_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.086
ms
|
1 |
|
|
/classes/Category.php:1582
/modules/ststickers/classes/StStickersMapClass.php:174 (getParentsCategories)
/modules/ststickers/ststickers.php:1731 (getForProduct)
/classes/Hook.php:1251 (hookActionStAssemble)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:462 (coreCallHook)
/classes/Hook.php:1142 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/ps_categoryproducts/ps_categoryproducts.php:328 (assembleProduct)
/modules/ps_categoryproducts/ps_categoryproducts.php:217 (getCategoryProducts)
/modules/ps_categoryproducts/ps_categoryproducts.php:245 (getWidgetVariables)
/classes/Hook.php:1262 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1188 (coreRenderWidget)
/config/smarty.config.inc.php:208 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:47 (__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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/e8/e0/24/e8e024c4677f315c0ff220b49cd75035b860c7de_2.file.product-third.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e04742fb524_81869108)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:154 (_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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/14/85/9b/14859bb511e3cef7d7e5146376e2937cd7b5fb39_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e76261_97914831)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/9b/ab/dc/9babdcb54a34ad7865ee9fb4dc2bc36391f7ef91_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6908e364e381d9_83676031)
/vendor/smarty/smarty/libs/sysplugins/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/dev/smarty/compile/transformerlayouts_layout_full_width_tpl/cf/4f/18/cf4f18d571f8782269d7b5a52eceeae7cab8fcbd_2.file.product.tpl.php:53 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_695e0473cfb071_00144673)
/vendor/smarty/smarty/libs/sysplugins/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/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:487 (run)
/index.php:78 (dispatch)
|