| 73 |
SELECT SQL_NO_CACHE `id_hook`, `name`
FROM `1vv7f_hook`
UNION
SELECT `id_hook`, ha.`alias` as name
FROM `1vv7f_hook_alias` ha
INNER JOIN `1vv7f_hook` h ON ha.name = h.name |
3.132
ms
|
0 |
|
|
/classes/Hook.php:1568
/classes/Hook.php:251 (getAllHookIds)
/classes/tax/TaxManagerFactory.php:63 (getIdByName)
/classes/tax/TaxManagerFactory.php:42 (execHookTaxManagerFactory)
/classes/Product.php:3668 (getManager)
/classes/Product.php:3459 (priceCalculation)
/classes/Product.php:5431 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 74 |
SELECT SQL_NO_CACHE h.id_hook, h.name as h_name, title, description, h.position, hm.position as hm_position, m.id_module, m.name, m.active
FROM `1vv7f_hook_module` hm
STRAIGHT_JOIN `1vv7f_hook` h ON (h.id_hook = hm.id_hook AND hm.id_shop = 1)
STRAIGHT_JOIN `1vv7f_module` as m ON (m.id_module = hm.id_module)
ORDER BY hm.position |
2.737
ms
|
406 |
|
|
/classes/Hook.php:495
/classes/Hook.php:542 (getHookModuleList)
/classes/tax/TaxManagerFactory.php:63 (getModulesFromHook)
/classes/tax/TaxManagerFactory.php:42 (execHookTaxManagerFactory)
/classes/Product.php:3668 (getManager)
/classes/Product.php:3459 (priceCalculation)
/classes/Product.php:5431 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 67 |
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("2025-12-04 00:00:00",
INTERVAL 20 DAY)) > 0 AS new, product_shop.price AS orderprice, psales.`quantity` as sales
FROM `1vv7f_category_product` cp
LEFT JOIN `1vv7f_product` p
ON p.`id_product` = cp.`id_product`
INNER JOIN 1vv7f_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1) LEFT JOIN `1vv7f_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 1vv7f_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 `1vv7f_category_lang` cl
ON (product_shop.`id_category_default` = cl.`id_category`
AND cl.`id_lang` = 1 AND cl.id_shop = 1 )
LEFT JOIN `1vv7f_product_lang` pl
ON (p.`id_product` = pl.`id_product`
AND pl.`id_lang` = 1 AND pl.id_shop = 1 )
LEFT JOIN `1vv7f_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 `1vv7f_image_lang` il
ON (image_shop.`id_image` = il.`id_image`
AND il.`id_lang` = 1)
LEFT JOIN `1vv7f_manufacturer` m
ON m.`id_manufacturer` = p.`id_manufacturer`
LEFT JOIN `1vv7f_product_sale` psales
ON psales.`id_product` = p.`id_product`
WHERE product_shop.`id_shop` = 1
AND cp.`id_category` = 2 AND product_shop.`active` = 1 AND product_shop.`visibility` IN ("both", "catalog") ORDER BY RAND() LIMIT 6 |
2.632
ms
|
19 |
Yes
|
|
/classes/Category.php:1094
/src/Adapter/Category/CategoryProductSearchProvider.php:83 (getProducts)
/src/Adapter/Category/CategoryProductSearchProvider.php:118 (getProductsOrCount)
/modules/cartzillablocks/cartzillablocks.php:1191 (runQuery)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 146 |
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("2025-12-04 00:00:00",
INTERVAL 20 DAY)) > 0 AS new, product_shop.price AS orderprice, psales.`quantity` as sales
FROM `1vv7f_category_product` cp
LEFT JOIN `1vv7f_product` p
ON p.`id_product` = cp.`id_product`
INNER JOIN 1vv7f_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1) LEFT JOIN `1vv7f_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 1vv7f_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 `1vv7f_category_lang` cl
ON (product_shop.`id_category_default` = cl.`id_category`
AND cl.`id_lang` = 1 AND cl.id_shop = 1 )
LEFT JOIN `1vv7f_product_lang` pl
ON (p.`id_product` = pl.`id_product`
AND pl.`id_lang` = 1 AND pl.id_shop = 1 )
LEFT JOIN `1vv7f_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 `1vv7f_image_lang` il
ON (image_shop.`id_image` = il.`id_image`
AND il.`id_lang` = 1)
LEFT JOIN `1vv7f_manufacturer` m
ON m.`id_manufacturer` = p.`id_manufacturer`
LEFT JOIN `1vv7f_product_sale` psales
ON psales.`id_product` = p.`id_product`
WHERE product_shop.`id_shop` = 1
AND cp.`id_category` = 2 AND product_shop.`active` = 1 AND product_shop.`visibility` IN ("both", "catalog") ORDER BY RAND() LIMIT 6 |
1.810
ms
|
19 |
Yes
|
|
/classes/Category.php:1094
/src/Adapter/Category/CategoryProductSearchProvider.php:83 (getProducts)
/src/Adapter/Category/CategoryProductSearchProvider.php:118 (getProductsOrCount)
/modules/cartzillablocks/cartzillablocks.php:1191 (runQuery)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 15 |
SELECT SQL_NO_CACHE `id_hook`, `name` FROM `1vv7f_hook` |
1.192
ms
|
1207 |
|
|
/classes/Hook.php:1568
/classes/Hook.php:251 (getAllHookIds)
/classes/Hook.php:961 (getIdByName)
/classes/Dispatcher.php:584 (exec)
/classes/Dispatcher.php:235 (loadRoutes)
/classes/Dispatcher.php:193 (__construct)
/index.php:78 (getInstance)
|
| 393 |
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("2025-12-04 00:00:00",
INTERVAL 20 DAY)) > 0 AS new, product_shop.price AS orderprice, psales.`quantity` as sales
FROM `1vv7f_category_product` cp
LEFT JOIN `1vv7f_product` p
ON p.`id_product` = cp.`id_product`
INNER JOIN 1vv7f_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1) LEFT JOIN `1vv7f_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 1vv7f_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 `1vv7f_category_lang` cl
ON (product_shop.`id_category_default` = cl.`id_category`
AND cl.`id_lang` = 1 AND cl.id_shop = 1 )
LEFT JOIN `1vv7f_product_lang` pl
ON (p.`id_product` = pl.`id_product`
AND pl.`id_lang` = 1 AND pl.id_shop = 1 )
LEFT JOIN `1vv7f_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 `1vv7f_image_lang` il
ON (image_shop.`id_image` = il.`id_image`
AND il.`id_lang` = 1)
LEFT JOIN `1vv7f_manufacturer` m
ON m.`id_manufacturer` = p.`id_manufacturer`
LEFT JOIN `1vv7f_product_sale` psales
ON psales.`id_product` = p.`id_product`
WHERE product_shop.`id_shop` = 1
AND cp.`id_category` = 2 AND product_shop.`active` = 1 AND product_shop.`visibility` IN ("both", "catalog") ORDER BY RAND() LIMIT 6 |
1.185
ms
|
19 |
Yes
|
|
/classes/Category.php:1094
/src/Adapter/Category/CategoryProductSearchProvider.php:83 (getProducts)
/src/Adapter/Category/CategoryProductSearchProvider.php:118 (getProductsOrCount)
/modules/cartzillablocks/cartzillablocks.php:1191 (runQuery)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (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 `1vv7f_module` m
INNER JOIN 1vv7f_module_shop module_shop
ON (module_shop.id_module = m.id_module AND module_shop.id_shop = 1)
INNER JOIN `1vv7f_hook_module` `hm` ON hm.`id_module` = m.`id_module`
INNER JOIN `1vv7f_hook` `h` ON hm.`id_hook` = h.`id_hook`
LEFT JOIN `1vv7f_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` |
1.182
ms
|
1185 |
Yes
|
Yes
|
/classes/Hook.php:1500
/classes/Hook.php:809 (getAllHookRegistrations)
/classes/Hook.php:952 (getHookModuleExecList)
/classes/Dispatcher.php:584 (exec)
/classes/Dispatcher.php:235 (loadRoutes)
/classes/Dispatcher.php:193 (__construct)
/index.php:78 (getInstance)
|
| 347 |
SELECT SQL_NO_CACHE pa.*, product_attribute_shop.*
FROM `1vv7f_product_attribute` pa
INNER JOIN 1vv7f_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` = 16
GROUP BY pa.`id_product_attribute`
ORDER BY pa.`id_product_attribute` |
1.095
ms
|
4 |
Yes
|
Yes
|
/classes/Product.php:2492
/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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/eb/de/5e/ebde5ecd27395382175f5b6bf115854ef82509c8_2.file.products-list.tpl.php:82 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791814c6ad5_81113389)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/14/06/4a/14064a6b847b93777f7c4ec7d24b91d83428a930_2.module.cartzillablocksviewstemplatesblocksproductstrending.tpl.php:43 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918149f3f7_83891116)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 467 |
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("2025-12-04 00:00:00",
INTERVAL 20 DAY)) > 0 AS new, product_shop.price AS orderprice, psales.`quantity` as sales
FROM `1vv7f_category_product` cp
LEFT JOIN `1vv7f_product` p
ON p.`id_product` = cp.`id_product`
INNER JOIN 1vv7f_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1) LEFT JOIN `1vv7f_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 1vv7f_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 `1vv7f_category_lang` cl
ON (product_shop.`id_category_default` = cl.`id_category`
AND cl.`id_lang` = 1 AND cl.id_shop = 1 )
LEFT JOIN `1vv7f_product_lang` pl
ON (p.`id_product` = pl.`id_product`
AND pl.`id_lang` = 1 AND pl.id_shop = 1 )
LEFT JOIN `1vv7f_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 `1vv7f_image_lang` il
ON (image_shop.`id_image` = il.`id_image`
AND il.`id_lang` = 1)
LEFT JOIN `1vv7f_manufacturer` m
ON m.`id_manufacturer` = p.`id_manufacturer`
LEFT JOIN `1vv7f_product_sale` psales
ON psales.`id_product` = p.`id_product`
WHERE product_shop.`id_shop` = 1
AND cp.`id_category` = 2 AND product_shop.`active` = 1 AND product_shop.`visibility` IN ("both", "catalog") ORDER BY RAND() LIMIT 8 |
1.062
ms
|
19 |
Yes
|
|
/classes/Category.php:1094
/src/Adapter/Category/CategoryProductSearchProvider.php:83 (getProducts)
/src/Adapter/Category/CategoryProductSearchProvider.php:118 (getProductsOrCount)
/modules/cartzillablocks/cartzillablocks.php:1191 (runQuery)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 191 |
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("2025-12-04 00:00:00",
INTERVAL 20 DAY)) > 0 AS new, product_shop.price AS orderprice, psales.`quantity` as sales
FROM `1vv7f_category_product` cp
LEFT JOIN `1vv7f_product` p
ON p.`id_product` = cp.`id_product`
INNER JOIN 1vv7f_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1) LEFT JOIN `1vv7f_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 1vv7f_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 `1vv7f_category_lang` cl
ON (product_shop.`id_category_default` = cl.`id_category`
AND cl.`id_lang` = 1 AND cl.id_shop = 1 )
LEFT JOIN `1vv7f_product_lang` pl
ON (p.`id_product` = pl.`id_product`
AND pl.`id_lang` = 1 AND pl.id_shop = 1 )
LEFT JOIN `1vv7f_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 `1vv7f_image_lang` il
ON (image_shop.`id_image` = il.`id_image`
AND il.`id_lang` = 1)
LEFT JOIN `1vv7f_manufacturer` m
ON m.`id_manufacturer` = p.`id_manufacturer`
LEFT JOIN `1vv7f_product_sale` psales
ON psales.`id_product` = p.`id_product`
WHERE product_shop.`id_shop` = 1
AND cp.`id_category` = 2 AND product_shop.`active` = 1 AND product_shop.`visibility` IN ("both", "catalog") ORDER BY RAND() LIMIT 8 |
1.018
ms
|
19 |
Yes
|
|
/classes/Category.php:1094
/src/Adapter/Category/CategoryProductSearchProvider.php:83 (getProducts)
/src/Adapter/Category/CategoryProductSearchProvider.php:118 (getProductsOrCount)
/modules/cartzillablocks/cartzillablocks.php:1191 (runQuery)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 2 |
SELECT SQL_NO_CACHE c.`name`, cl.`id_lang`, IF(cl.`id_lang` IS NULL, c.`value`, cl.`value`) AS value, c.id_shop_group, c.id_shop
FROM `1vv7f_configuration` c
LEFT JOIN `1vv7f_configuration_lang` cl ON (c.`id_configuration` = cl.`id_configuration`) |
1.014
ms
|
589 |
|
|
/classes/Configuration.php:182
/classes/Configuration.php:230 (loadConfiguration)
/classes/Configuration.php:303 (get)
/classes/shop/Shop.php:399 (getMultiShopValues)
/config/config.inc.php:122 (initialize)
/index.php:40 (require_once)
|
| 422 |
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("2025-12-04 00:00:00",
INTERVAL 20 DAY)) > 0 AS new, product_shop.price AS orderprice, psales.`quantity` as sales
FROM `1vv7f_category_product` cp
LEFT JOIN `1vv7f_product` p
ON p.`id_product` = cp.`id_product`
INNER JOIN 1vv7f_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1) LEFT JOIN `1vv7f_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 1vv7f_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 `1vv7f_category_lang` cl
ON (product_shop.`id_category_default` = cl.`id_category`
AND cl.`id_lang` = 1 AND cl.id_shop = 1 )
LEFT JOIN `1vv7f_product_lang` pl
ON (p.`id_product` = pl.`id_product`
AND pl.`id_lang` = 1 AND pl.id_shop = 1 )
LEFT JOIN `1vv7f_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 `1vv7f_image_lang` il
ON (image_shop.`id_image` = il.`id_image`
AND il.`id_lang` = 1)
LEFT JOIN `1vv7f_manufacturer` m
ON m.`id_manufacturer` = p.`id_manufacturer`
LEFT JOIN `1vv7f_product_sale` psales
ON psales.`id_product` = p.`id_product`
WHERE product_shop.`id_shop` = 1
AND cp.`id_category` = 2 AND product_shop.`active` = 1 AND product_shop.`visibility` IN ("both", "catalog") ORDER BY RAND() LIMIT 6 |
0.997
ms
|
19 |
Yes
|
|
/classes/Category.php:1094
/src/Adapter/Category/CategoryProductSearchProvider.php:83 (getProducts)
/src/Adapter/Category/CategoryProductSearchProvider.php:118 (getProductsOrCount)
/modules/cartzillablocks/cartzillablocks.php:1191 (runQuery)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 69 |
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2025-12-04 00:00:00',
INTERVAL 20 DAY
)
) > 0) as new
FROM 1vv7f_product p
LEFT JOIN 1vv7f_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 1
LEFT JOIN 1vv7f_stock_available sa ON sa.id_product = p.id_product
AND sa.id_product_attribute = 0
AND sa.id_shop = 1 LEFT JOIN 1vv7f_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product IN (10) |
0.980
ms
|
1 |
|
|
/classes/ProductAssembler.php:70
/classes/ProductAssembler.php:189 (addMissingProductFields)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 12 |
SELECT SQL_NO_CACHE lower(name) as name
FROM `1vv7f_hook` h
WHERE (h.active = 1) |
0.933
ms
|
1207 |
|
|
/classes/Hook.php:1608
/classes/Hook.php:910 (getHookStatusByName)
/classes/Dispatcher.php:584 (exec)
/classes/Dispatcher.php:235 (loadRoutes)
/classes/Dispatcher.php:193 (__construct)
/index.php:78 (getInstance)
|
| 78 |
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 `1vv7f_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 10 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `1vv7f_cart_product` cp JOIN `1vv7f_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `1vv7f_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` = 10 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.919
ms
|
0 |
|
|
/classes/Cart.php:1451
/classes/Product.php:4104 (getProductQuantity)
/classes/Product.php:5537 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 16 |
SELECT SQL_NO_CACHE m.`id_module`, m.`name`, ms.`id_module`as `mshop`
FROM `1vv7f_module` m
LEFT JOIN `1vv7f_module_shop` ms
ON m.`id_module` = ms.`id_module`
AND ms.`id_shop` = 1 |
0.899
ms
|
79 |
|
|
/classes/module/Module.php:342
/modules/prettyblocks/prettyblocks.php:82 (__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:1386 (get)
/tools/profiling/Module.php:35 (coreLoadModule)
/classes/module/Module.php:1365 (coreLoadModule)
/classes/Hook.php:1108 (getInstanceByName)
/classes/Dispatcher.php:584 (exec)
/classes/Dispatcher.php:235 (loadRoutes)
/classes/Dispatcher.php:193 (__construct)
/index.php:78 (getInstance)
|
| 90 |
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2025-12-04 00:00:00',
INTERVAL 20 DAY
)
) > 0) as new
FROM 1vv7f_product p
LEFT JOIN 1vv7f_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 1
LEFT JOIN 1vv7f_stock_available sa ON sa.id_product = p.id_product
AND sa.id_product_attribute = 0
AND sa.id_shop = 1 LEFT JOIN 1vv7f_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product IN (8) |
0.853
ms
|
1 |
|
|
/classes/ProductAssembler.php:70
/classes/ProductAssembler.php:189 (addMissingProductFields)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 68 |
SELECT SQL_NO_CACHE COUNT(cp.`id_product`) AS total
FROM `1vv7f_product` p
INNER JOIN 1vv7f_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `1vv7f_category_product` cp ON p.`id_product` = cp.`id_product`
WHERE cp.`id_category` = 2 AND product_shop.`visibility` IN ("both", "catalog") AND product_shop.`active` = 1 LIMIT 1 |
0.838
ms
|
19 |
|
|
/classes/Category.php:1021
/src/Adapter/Category/CategoryProductSearchProvider.php:83 (getProducts)
/src/Adapter/Category/CategoryProductSearchProvider.php:119 (getProductsOrCount)
/modules/cartzillablocks/cartzillablocks.php:1191 (runQuery)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 21 |
SELECT SQL_NO_CACHE `id_lang` FROM `1vv7f_lang`
WHERE `locale` = 'fr-fr'
OR `language_code` = 'fr-fr' LIMIT 1 |
0.809
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:217 (getLocale)
/classes/controller/FrontController.php:242 (init)
/tools/profiling/Controller.php:46 (init)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 80 |
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 `1vv7f_cart_product` cp
WHERE cp.`id_product_attribute` = 24
AND cp.`id_cart` = 0 AND cp.`id_product` = 10 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `1vv7f_cart_product` cp JOIN `1vv7f_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `1vv7f_product` pr ON p.`id_product_pack` = pr.`id_product`
WHERE cp.`id_product_attribute` = 24
AND cp.`id_cart` = 0 AND p.`id_product_item` = 10 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.787
ms
|
0 |
|
|
/classes/Cart.php:1451
/classes/Product.php:4104 (getProductQuantity)
/classes/Product.php:5549 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 105 |
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 `1vv7f_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 `1vv7f_cart_product` cp JOIN `1vv7f_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `1vv7f_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.779
ms
|
0 |
|
|
/classes/Cart.php:1451
/classes/Product.php:4104 (getProductQuantity)
/classes/Product.php:5549 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 98 |
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2025-12-04 00:00:00',
INTERVAL 20 DAY
)
) > 0) as new
FROM 1vv7f_product p
LEFT JOIN 1vv7f_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 1
LEFT JOIN 1vv7f_stock_available sa ON sa.id_product = p.id_product
AND sa.id_product_attribute = 0
AND sa.id_shop = 1 LEFT JOIN 1vv7f_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product IN (3) |
0.761
ms
|
1 |
|
|
/classes/ProductAssembler.php:70
/classes/ProductAssembler.php:189 (addMissingProductFields)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 114 |
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2025-12-04 00:00:00',
INTERVAL 20 DAY
)
) > 0) as new
FROM 1vv7f_product p
LEFT JOIN 1vv7f_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 1
LEFT JOIN 1vv7f_stock_available sa ON sa.id_product = p.id_product
AND sa.id_product_attribute = 0
AND sa.id_shop = 1 LEFT JOIN 1vv7f_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product IN (14) |
0.752
ms
|
1 |
|
|
/classes/ProductAssembler.php:70
/classes/ProductAssembler.php:189 (addMissingProductFields)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 122 |
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2025-12-04 00:00:00',
INTERVAL 20 DAY
)
) > 0) as new
FROM 1vv7f_product p
LEFT JOIN 1vv7f_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 1
LEFT JOIN 1vv7f_stock_available sa ON sa.id_product = p.id_product
AND sa.id_product_attribute = 0
AND sa.id_shop = 1 LEFT JOIN 1vv7f_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product IN (6) |
0.742
ms
|
1 |
|
|
/classes/ProductAssembler.php:70
/classes/ProductAssembler.php:189 (addMissingProductFields)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 463 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `1vv7f_image` i
INNER JOIN 1vv7f_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `1vv7f_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 7
ORDER BY `position` |
0.736
ms
|
1 |
Yes
|
|
/classes/Product.php:3285
/src/Adapter/Image/ImageRetriever.php:75 (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)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 95 |
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 `1vv7f_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 8 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `1vv7f_cart_product` cp JOIN `1vv7f_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `1vv7f_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` = 8 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.724
ms
|
0 |
|
|
/classes/Cart.php:1451
/classes/Product.php:4104 (getProductQuantity)
/classes/Product.php:5537 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 103 |
SELECT SQL_NO_CACHE COALESCE(SUM(first_level_quantity) + SUM(pack_quantity), 0) as deep_quantity,
COALESCE(SUM(first_level_quantity), 0) as quantity
FROM (SELECT SUM(cp.`quantity`) as first_level_quantity, 0 as pack_quantity
FROM `1vv7f_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 `1vv7f_cart_product` cp JOIN `1vv7f_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `1vv7f_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.723
ms
|
0 |
|
|
/classes/Cart.php:1451
/classes/Product.php:4104 (getProductQuantity)
/classes/Product.php:5537 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 151 |
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2025-12-04 00:00:00',
INTERVAL 20 DAY
)
) > 0) as new
FROM 1vv7f_product p
LEFT JOIN 1vv7f_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 1
LEFT JOIN 1vv7f_stock_available sa ON sa.id_product = p.id_product
AND sa.id_product_attribute = 0
AND sa.id_shop = 1 LEFT JOIN 1vv7f_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product IN (16) |
0.717
ms
|
1 |
|
|
/classes/ProductAssembler.php:70
/classes/ProductAssembler.php:189 (addMissingProductFields)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 18 |
SELECT SQL_NO_CACHE m.page, ml.url_rewrite, ml.id_lang
FROM `1vv7f_meta` m
LEFT JOIN `1vv7f_meta_lang` ml ON (m.id_meta = ml.id_meta AND ml.id_shop = 1 )
ORDER BY LENGTH(ml.url_rewrite) DESC |
0.709
ms
|
46 |
Yes
|
|
/classes/Dispatcher.php:632
/classes/Dispatcher.php:235 (loadRoutes)
/classes/Dispatcher.php:193 (__construct)
/index.php:78 (getInstance)
|
| 127 |
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 `1vv7f_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 6 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `1vv7f_cart_product` cp JOIN `1vv7f_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `1vv7f_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` = 6 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.698
ms
|
0 |
|
|
/classes/Cart.php:1451
/classes/Product.php:4104 (getProductQuantity)
/classes/Product.php:5537 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 17 |
SELECT SQL_NO_CACHE name, alias FROM `1vv7f_hook_alias` |
0.674
ms
|
86 |
|
|
/classes/Hook.php:371
/classes/Hook.php:171 (getCanonicalHookNames)
/classes/Hook.php:398 (normalizeHookName)
/classes/Hook.php:420 (getAllKnownNames)
/classes/Hook.php:1119 (isHookCallableOn)
/classes/Dispatcher.php:584 (exec)
/classes/Dispatcher.php:235 (loadRoutes)
/classes/Dispatcher.php:193 (__construct)
/index.php:78 (getInstance)
|
| 47 |
SELECT SQL_NO_CACHE `id_module` FROM `1vv7f_module` WHERE `name` = "prettyblocks" LIMIT 1 |
0.668
ms
|
1 |
|
|
/classes/module/Module.php:2778
/classes/module/Module.php:2266 (getModuleIdByName)
/classes/Hook.php:1243 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 82 |
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 `1vv7f_attribute` a
LEFT JOIN `1vv7f_attribute_lang` al
ON (al.`id_attribute` = a.`id_attribute` AND al.`id_lang` = 1)
LEFT JOIN `1vv7f_product_attribute_combination` pac
ON (pac.`id_attribute` = a.`id_attribute`)
LEFT JOIN `1vv7f_product_attribute` pa
ON (pa.`id_product_attribute` = pac.`id_product_attribute`)
INNER JOIN 1vv7f_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 `1vv7f_product_attribute_lang` pal
ON (pal.`id_product_attribute` = pac.`id_product_attribute` AND pal.`id_lang` = 1)
LEFT JOIN `1vv7f_attribute_group_lang` agl
ON (a.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 1)
WHERE pa.`id_product` = 10
AND pac.`id_product_attribute` = 24
AND agl.`id_lang` = 1 |
0.652
ms
|
1 |
|
|
/classes/Product.php:7163
/classes/Product.php:5568 (getAttributesParams)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 119 |
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 `1vv7f_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 `1vv7f_cart_product` cp JOIN `1vv7f_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `1vv7f_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.650
ms
|
0 |
|
|
/classes/Cart.php:1451
/classes/Product.php:4104 (getProductQuantity)
/classes/Product.php:5537 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 130 |
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2025-12-04 00:00:00',
INTERVAL 20 DAY
)
) > 0) as new
FROM 1vv7f_product p
LEFT JOIN 1vv7f_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 1
LEFT JOIN 1vv7f_stock_available sa ON sa.id_product = p.id_product
AND sa.id_product_attribute = 0
AND sa.id_shop = 1 LEFT JOIN 1vv7f_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product IN (4) |
0.649
ms
|
1 |
|
|
/classes/ProductAssembler.php:70
/classes/ProductAssembler.php:189 (addMissingProductFields)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 148 |
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2025-12-04 00:00:00',
INTERVAL 20 DAY
)
) > 0) as new
FROM 1vv7f_product p
LEFT JOIN 1vv7f_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 1
LEFT JOIN 1vv7f_stock_available sa ON sa.id_product = p.id_product
AND sa.id_product_attribute = 0
AND sa.id_shop = 1 LEFT JOIN 1vv7f_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product IN (4) |
0.634
ms
|
1 |
|
|
/classes/ProductAssembler.php:70
/classes/ProductAssembler.php:189 (addMissingProductFields)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 85 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product` a
LEFT JOIN `1vv7f_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `1vv7f_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 10) AND (b.`id_shop` = 1) LIMIT 1 |
0.633
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:708 (__construct)
/src/Adapter/Image/ImageRetriever.php:68 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:941 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:137 (fillImages)
/src/Adapter/Presenter/Product/ProductPresenter.php:100 (__construct)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 142 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product` a
LEFT JOIN `1vv7f_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `1vv7f_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.627
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:708 (__construct)
/src/Adapter/Image/ImageRetriever.php:68 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:941 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:137 (fillImages)
/src/Adapter/Presenter/Product/ProductPresenter.php:100 (__construct)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 107 |
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 `1vv7f_attribute` a
LEFT JOIN `1vv7f_attribute_lang` al
ON (al.`id_attribute` = a.`id_attribute` AND al.`id_lang` = 1)
LEFT JOIN `1vv7f_product_attribute_combination` pac
ON (pac.`id_attribute` = a.`id_attribute`)
LEFT JOIN `1vv7f_product_attribute` pa
ON (pa.`id_product_attribute` = pac.`id_product_attribute`)
INNER JOIN 1vv7f_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 `1vv7f_product_attribute_lang` pal
ON (pal.`id_product_attribute` = pac.`id_product_attribute` AND pal.`id_lang` = 1)
LEFT JOIN `1vv7f_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.625
ms
|
1 |
|
|
/classes/Product.php:7163
/classes/Product.php:5568 (getAttributesParams)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 147 |
SELECT SQL_NO_CACHE COUNT(cp.`id_product`) AS total
FROM `1vv7f_product` p
INNER JOIN 1vv7f_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `1vv7f_category_product` cp ON p.`id_product` = cp.`id_product`
WHERE cp.`id_category` = 2 AND product_shop.`visibility` IN ("both", "catalog") AND product_shop.`active` = 1 LIMIT 1 |
0.607
ms
|
19 |
|
|
/classes/Category.php:1021
/src/Adapter/Category/CategoryProductSearchProvider.php:83 (getProducts)
/src/Adapter/Category/CategoryProductSearchProvider.php:119 (getProductsOrCount)
/modules/cartzillablocks/cartzillablocks.php:1191 (runQuery)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 96 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product` a
LEFT JOIN `1vv7f_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `1vv7f_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 8) AND (b.`id_shop` = 1) LIMIT 1 |
0.600
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:708 (__construct)
/src/Adapter/Image/ImageRetriever.php:68 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:941 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:137 (fillImages)
/src/Adapter/Presenter/Product/ProductPresenter.php:100 (__construct)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 110 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product` a
LEFT JOIN `1vv7f_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `1vv7f_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.592
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:708 (__construct)
/src/Adapter/Image/ImageRetriever.php:68 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:941 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:137 (fillImages)
/src/Adapter/Presenter/Product/ProductPresenter.php:100 (__construct)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 52 |
SELECT SQL_NO_CACHE l.id_product FROM 1vv7f_product_lang as l
INNER JOIN 1vv7f_product c ON (c.id_product = l.id_product)
WHERE c.active = 1
AND l.id_shop = 1 AND l.id_lang = 1
ORDER BY RAND() LIMIT 5 |
0.571
ms
|
19 |
Yes
|
|
/modules/prettyblocks/classes/HelperBuilder.php:221
/modules/cartzillablocks/classes/blocks/CartZillaHeroProduct.php:126 (getRandomProduct)
/modules/prettyblocks/classes/HelperBuilder.php:155 (registerBlocks)
/modules/cartzillablocks/cartzillablocks.php:959 (renderBlocks)
/classes/Hook.php:1237 (hookActionRegisterBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:784 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:98 (getBlocksAvailable)
/modules/prettyblocks/classes/PrettyBlocksModel.php:243 (loadBlock)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 442 |
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2025-12-04 00:00:00',
INTERVAL 20 DAY
)
) > 0) as new
FROM 1vv7f_product p
LEFT JOIN 1vv7f_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 1
LEFT JOIN 1vv7f_stock_available sa ON sa.id_product = p.id_product
AND sa.id_product_attribute = 0
AND sa.id_shop = 1 LEFT JOIN 1vv7f_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product IN (10) |
0.569
ms
|
1 |
|
|
/classes/ProductAssembler.php:70
/classes/ProductAssembler.php:189 (addMissingProductFields)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 87 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `1vv7f_image` i
INNER JOIN 1vv7f_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `1vv7f_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 10
ORDER BY `position` |
0.566
ms
|
2 |
Yes
|
|
/classes/Product.php:3285
/src/Adapter/Image/ImageRetriever.php:75 (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)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 135 |
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 `1vv7f_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 `1vv7f_cart_product` cp JOIN `1vv7f_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `1vv7f_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.561
ms
|
0 |
|
|
/classes/Cart.php:1451
/classes/Product.php:4104 (getProductQuantity)
/classes/Product.php:5537 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 137 |
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 `1vv7f_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 `1vv7f_cart_product` cp JOIN `1vv7f_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `1vv7f_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.559
ms
|
0 |
|
|
/classes/Cart.php:1451
/classes/Product.php:4104 (getProductQuantity)
/classes/Product.php:5549 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 72 |
SELECT SQL_NO_CACHE product_shop.`price`, product_shop.`ecotax`,
IFNULL(product_attribute_shop.id_product_attribute,0) id_product_attribute, product_attribute_shop.`price` AS attribute_price, product_attribute_shop.default_on, product_attribute_shop.`ecotax` AS attribute_ecotax
FROM `1vv7f_product` p
INNER JOIN `1vv7f_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `1vv7f_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` = 10) |
0.558
ms
|
2 |
|
|
/classes/Product.php:3603
/classes/Product.php:3459 (priceCalculation)
/classes/Product.php:5431 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 112 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `1vv7f_image` i
INNER JOIN 1vv7f_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `1vv7f_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 3
ORDER BY `position` |
0.557
ms
|
1 |
Yes
|
|
/classes/Product.php:3285
/src/Adapter/Image/ImageRetriever.php:75 (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)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 124 |
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 `1vv7f_product` p
INNER JOIN `1vv7f_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `1vv7f_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` = 6) |
0.553
ms
|
1 |
|
|
/classes/Product.php:3603
/classes/Product.php:3459 (priceCalculation)
/classes/Product.php:5431 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 65 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_category_lang`
WHERE `id_category` = 2 AND `id_shop` = 1 |
0.552
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:81
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:179 (__construct)
/modules/cartzillablocks/cartzillablocks.php:1144 (__construct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 139 |
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 `1vv7f_attribute` a
LEFT JOIN `1vv7f_attribute_lang` al
ON (al.`id_attribute` = a.`id_attribute` AND al.`id_lang` = 1)
LEFT JOIN `1vv7f_product_attribute_combination` pac
ON (pac.`id_attribute` = a.`id_attribute`)
LEFT JOIN `1vv7f_product_attribute` pa
ON (pa.`id_product_attribute` = pac.`id_product_attribute`)
INNER JOIN 1vv7f_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 `1vv7f_product_attribute_lang` pal
ON (pal.`id_product_attribute` = pac.`id_product_attribute` AND pal.`id_lang` = 1)
LEFT JOIN `1vv7f_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.536
ms
|
1 |
|
|
/classes/Product.php:7163
/classes/Product.php:5568 (getAttributesParams)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 484 |
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2025-12-04 00:00:00',
INTERVAL 20 DAY
)
) > 0) as new
FROM 1vv7f_product p
LEFT JOIN 1vv7f_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 1
LEFT JOIN 1vv7f_stock_available sa ON sa.id_product = p.id_product
AND sa.id_product_attribute = 0
AND sa.id_shop = 1 LEFT JOIN 1vv7f_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product IN (19) |
0.533
ms
|
1 |
|
|
/classes/ProductAssembler.php:70
/classes/ProductAssembler.php:189 (addMissingProductFields)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 88 |
SELECT SQL_NO_CACHE pai.`id_image`, pai.`id_product_attribute`, il.`legend`
FROM `1vv7f_product_attribute_image` pai
LEFT JOIN `1vv7f_image_lang` il ON (il.`id_image` = pai.`id_image`)
INNER JOIN `1vv7f_image` i ON (i.`id_image` = pai.`id_image`)
WHERE i.`id_product` = 10 AND il.`id_lang` = 1 ORDER by i.`position` |
0.532
ms
|
4 |
Yes
|
|
/classes/Product.php:2668
/src/Adapter/Image/ImageRetriever.php:81 (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)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 128 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product` a
LEFT JOIN `1vv7f_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `1vv7f_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 6) AND (b.`id_shop` = 1) LIMIT 1 |
0.530
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:708 (__construct)
/src/Adapter/Image/ImageRetriever.php:68 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:941 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:137 (fillImages)
/src/Adapter/Presenter/Product/ProductPresenter.php:100 (__construct)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 143 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `1vv7f_image` i
INNER JOIN 1vv7f_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `1vv7f_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 4
ORDER BY `position` |
0.527
ms
|
1 |
Yes
|
|
/classes/Product.php:3285
/src/Adapter/Image/ImageRetriever.php:75 (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)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 97 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `1vv7f_image` i
INNER JOIN 1vv7f_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `1vv7f_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 8
ORDER BY `position` |
0.525
ms
|
1 |
Yes
|
|
/classes/Product.php:3285
/src/Adapter/Image/ImageRetriever.php:75 (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)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 33 |
SELECT SQL_NO_CACHE m.`id_module`, m.`name`, ms.`id_module`as `mshop`
FROM `1vv7f_module` m
LEFT JOIN `1vv7f_module_shop` ms
ON m.`id_module` = ms.`id_module`
AND ms.`id_shop` = 1 |
0.524
ms
|
79 |
|
|
/classes/module/Module.php:342
/modules/ps_emailsubscription/ps_emailsubscription.php:96 (__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:1386 (get)
/tools/profiling/Module.php:35 (coreLoadModule)
/classes/module/Module.php:1365 (coreLoadModule)
/classes/Hook.php:1108 (getInstanceByName)
/classes/controller/FrontController.php:957 (exec)
/tools/profiling/Controller.php:53 (setMedia)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 391 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_prettyblocks` a0
WHERE (a0.`zone_name` = 'displayHome') AND (a0.`id_shop` = 1) AND (a0.`id_lang` = 1)
ORDER BY a0.`position` asc |
0.515
ms
|
80 |
Yes
|
|
/classes/PrestaShopCollection.php:381
/classes/PrestaShopCollection.php:426 (getAll)
/modules/prettyblocks/classes/PrettyBlocksModel.php:172 (getResults)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 100 |
SELECT SQL_NO_CACHE product_shop.`price`, product_shop.`ecotax`,
IFNULL(product_attribute_shop.id_product_attribute,0) id_product_attribute, product_attribute_shop.`price` AS attribute_price, product_attribute_shop.default_on, product_attribute_shop.`ecotax` AS attribute_ecotax
FROM `1vv7f_product` p
INNER JOIN `1vv7f_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `1vv7f_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.514
ms
|
3 |
|
|
/classes/Product.php:3603
/classes/Product.php:3459 (priceCalculation)
/classes/Product.php:5431 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 168 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `1vv7f_image` i
INNER JOIN 1vv7f_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `1vv7f_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 6
ORDER BY `position` |
0.508
ms
|
1 |
Yes
|
|
/classes/Product.php:3285
/src/Adapter/Image/ImageRetriever.php:75 (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)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 395 |
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2025-12-04 00:00:00',
INTERVAL 20 DAY
)
) > 0) as new
FROM 1vv7f_product p
LEFT JOIN 1vv7f_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 1
LEFT JOIN 1vv7f_stock_available sa ON sa.id_product = p.id_product
AND sa.id_product_attribute = 0
AND sa.id_shop = 1 LEFT JOIN 1vv7f_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product IN (8) |
0.506
ms
|
1 |
|
|
/classes/ProductAssembler.php:70
/classes/ProductAssembler.php:189 (addMissingProductFields)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 153 |
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 `1vv7f_product` p
INNER JOIN `1vv7f_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `1vv7f_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` = 16) |
0.496
ms
|
4 |
|
|
/classes/Product.php:3603
/classes/Product.php:3459 (priceCalculation)
/classes/Product.php:5431 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 120 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product` a
LEFT JOIN `1vv7f_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `1vv7f_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.495
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:708 (__construct)
/src/Adapter/Image/ImageRetriever.php:68 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:941 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:137 (fillImages)
/src/Adapter/Presenter/Product/ProductPresenter.php:100 (__construct)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 24 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_currency` a
LEFT JOIN `1vv7f_currency_lang` `b` ON a.`id_currency` = b.`id_currency` AND b.`id_lang` = 1
LEFT JOIN `1vv7f_currency_shop` `c` ON a.`id_currency` = c.`id_currency` AND c.`id_shop` = 1
WHERE (a.`id_currency` = 1) LIMIT 1 |
0.491
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:217 (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:217 (getLocale)
/classes/controller/FrontController.php:242 (init)
/tools/profiling/Controller.php:46 (init)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 464 |
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2025-12-04 00:00:00',
INTERVAL 20 DAY
)
) > 0) as new
FROM 1vv7f_product p
LEFT JOIN 1vv7f_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 1
LEFT JOIN 1vv7f_stock_available sa ON sa.id_product = p.id_product
AND sa.id_product_attribute = 0
AND sa.id_shop = 1 LEFT JOIN 1vv7f_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product IN (8) |
0.486
ms
|
1 |
|
|
/classes/ProductAssembler.php:70
/classes/ProductAssembler.php:189 (addMissingProductFields)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 538 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product` a
LEFT JOIN `1vv7f_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 18) LIMIT 1 |
0.485
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:708 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:914 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:752 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getFlags)
/var/cache/dev/smarty/compile/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/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/child_cartzilla/e4/96/b1/e496b18b87ade5e5d8fd9ee4adff3b90b8089022_2.module.cartzillablocksviewstemplatesblocksblockhomecategory.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918143dc09_64787304)
/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/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 81 |
SELECT SQL_NO_CACHE pa.`available_date` FROM `1vv7f_product` p LEFT JOIN `1vv7f_product_attribute` pa ON (pa.`id_product` = p.`id_product`) INNER JOIN 1vv7f_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1) INNER JOIN 1vv7f_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` = 10 AND pa.`id_product` = 10 AND pa.`id_product_attribute` = 24 LIMIT 1 |
0.485
ms
|
1 |
|
|
/classes/Product.php:1180
/classes/Product.php:5557 (getAvailableDate)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 129 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `1vv7f_image` i
INNER JOIN 1vv7f_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `1vv7f_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 6
ORDER BY `position` |
0.485
ms
|
1 |
Yes
|
|
/classes/Product.php:3285
/src/Adapter/Image/ImageRetriever.php:75 (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)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 348 |
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 `1vv7f_product_attribute_combination` pac
LEFT JOIN `1vv7f_attribute` a ON a.`id_attribute` = pac.`id_attribute`
LEFT JOIN `1vv7f_attribute_group` ag ON ag.`id_attribute_group` = a.`id_attribute_group`
LEFT JOIN `1vv7f_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 1)
LEFT JOIN `1vv7f_attribute_group_lang` agl ON (ag.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 1)
WHERE pac.id_product_attribute IN (28,29,30,31)
GROUP BY pac.id_product_attribute
ORDER BY pac.id_product_attribute |
0.484
ms
|
4 |
|
|
/classes/Product.php:2507
/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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/eb/de/5e/ebde5ecd27395382175f5b6bf115854ef82509c8_2.file.products-list.tpl.php:82 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791814c6ad5_81113389)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/14/06/4a/14064a6b847b93777f7c4ec7d24b91d83428a930_2.module.cartzillablocksviewstemplatesblocksproductstrending.tpl.php:43 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918149f3f7_83891116)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 92 |
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 `1vv7f_product` p
INNER JOIN `1vv7f_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `1vv7f_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` = 8) |
0.478
ms
|
1 |
|
|
/classes/Product.php:3603
/classes/Product.php:3459 (priceCalculation)
/classes/Product.php:5431 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 350 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product` a
LEFT JOIN `1vv7f_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 5) LIMIT 1 |
0.474
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:708 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:914 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:752 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getFlags)
/var/cache/dev/smarty/compile/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/eb/de/5e/ebde5ecd27395382175f5b6bf115854ef82509c8_2.file.products-list.tpl.php:82 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791814c6ad5_81113389)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/14/06/4a/14064a6b847b93777f7c4ec7d24b91d83428a930_2.module.cartzillablocksviewstemplatesblocksproductstrending.tpl.php:43 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918149f3f7_83891116)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 404 |
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2025-12-04 00:00:00',
INTERVAL 20 DAY
)
) > 0) as new
FROM 1vv7f_product p
LEFT JOIN 1vv7f_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 1
LEFT JOIN 1vv7f_stock_available sa ON sa.id_product = p.id_product
AND sa.id_product_attribute = 0
AND sa.id_shop = 1 LEFT JOIN 1vv7f_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product IN (19) |
0.471
ms
|
1 |
|
|
/classes/ProductAssembler.php:70
/classes/ProductAssembler.php:189 (addMissingProductFields)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 113 |
SELECT SQL_NO_CACHE pai.`id_image`, pai.`id_product_attribute`, il.`legend`
FROM `1vv7f_product_attribute_image` pai
LEFT JOIN `1vv7f_image_lang` il ON (il.`id_image` = pai.`id_image`)
INNER JOIN `1vv7f_image` i ON (i.`id_image` = pai.`id_image`)
WHERE i.`id_product` = 3 AND il.`id_lang` = 1 ORDER by i.`position` |
0.470
ms
|
2 |
Yes
|
|
/classes/Product.php:2668
/src/Adapter/Image/ImageRetriever.php:81 (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)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 224 |
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2025-12-04 00:00:00',
INTERVAL 20 DAY
)
) > 0) as new
FROM 1vv7f_product p
LEFT JOIN 1vv7f_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 1
LEFT JOIN 1vv7f_stock_available sa ON sa.id_product = p.id_product
AND sa.id_product_attribute = 0
AND sa.id_shop = 1 LEFT JOIN 1vv7f_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product IN (5) |
0.469
ms
|
1 |
|
|
/classes/ProductAssembler.php:70
/classes/ProductAssembler.php:189 (addMissingProductFields)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 46 |
SELECT SQL_NO_CACHE settings FROM 1vv7f_prettyblocks_settings WHERE theme_name = "child_cartzilla" AND id_shop = 1 LIMIT 1 |
0.467
ms
|
1 |
|
|
/modules/prettyblocks/classes/PrettyBlocksSettingsModel.php:51
/modules/prettyblocks/classes/PrettyBlocksModel.php:1079 (getSettings)
/modules/prettyblocks/classes/TplSettings.php:36 (getThemeSettings)
/modules/prettyblocks/classes/TplSettings.php:24 (getVars)
/modules/cartzillablocks/cartzillablocks.php:125 (getSettings)
/classes/Hook.php:1237 (hookdisplayHeader)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/classes/controller/FrontController.php:589 (exec)
/controllers/front/IndexController.php:38 (initContent)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 469 |
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2025-12-04 00:00:00',
INTERVAL 20 DAY
)
) > 0) as new
FROM 1vv7f_product p
LEFT JOIN 1vv7f_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 1
LEFT JOIN 1vv7f_stock_available sa ON sa.id_product = p.id_product
AND sa.id_product_attribute = 0
AND sa.id_shop = 1 LEFT JOIN 1vv7f_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product IN (7) |
0.467
ms
|
1 |
|
|
/classes/ProductAssembler.php:70
/classes/ProductAssembler.php:189 (addMissingProductFields)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 108 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product_attribute` a
LEFT JOIN `1vv7f_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.466
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:5623 (__construct)
/classes/Product.php:5586 (computeUnitPriceRatio)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 497 |
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2025-12-04 00:00:00',
INTERVAL 20 DAY
)
) > 0) as new
FROM 1vv7f_product p
LEFT JOIN 1vv7f_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 1
LEFT JOIN 1vv7f_stock_available sa ON sa.id_product = p.id_product
AND sa.id_product_attribute = 0
AND sa.id_shop = 1 LEFT JOIN 1vv7f_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product IN (17) |
0.464
ms
|
1 |
|
|
/classes/ProductAssembler.php:70
/classes/ProductAssembler.php:189 (addMissingProductFields)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 66 |
SELECT SQL_NO_CACHE ctg.`id_group`
FROM 1vv7f_category_group ctg
WHERE ctg.`id_category` = 2 AND ctg.`id_group` = 1 LIMIT 1 |
0.463
ms
|
1 |
|
|
/classes/Category.php:1774
/classes/Category.php:1003 (checkAccess)
/src/Adapter/Category/CategoryProductSearchProvider.php:83 (getProducts)
/src/Adapter/Category/CategoryProductSearchProvider.php:118 (getProductsOrCount)
/modules/cartzillablocks/cartzillablocks.php:1191 (runQuery)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 27 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_currency_lang`
WHERE `id_currency` = 1 |
0.460
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:81
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Currency.php:246 (__construct)
/classes/Currency.php:1089 (__construct)
/classes/Tools.php:680 (getCurrencyInstance)
/classes/controller/FrontController.php:331 (setCurrency)
/tools/profiling/Controller.php:46 (init)
/classes/Dispatcher.php:484 (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 1vv7f_shop_url su
LEFT JOIN 1vv7f_shop s ON (s.id_shop = su.id_shop)
WHERE (su.domain = 'www.chatpristy.fr' OR su.domain_ssl = 'www.chatpristy.fr')
AND s.active = 1
AND s.deleted = 0
ORDER BY LENGTH(CONCAT(su.physical_uri, su.virtual_uri)) DESC |
0.458
ms
|
1 |
Yes
|
|
/classes/shop/Shop.php:1392
/classes/shop/Shop.php:356 (findShopByHost)
/config/config.inc.php:122 (initialize)
/index.php:40 (require_once)
|
| 53 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product` a0
LEFT JOIN `1vv7f_product_lang` `a1` ON (a0.`id_product` = a1.`id_product`)
WHERE (a0.`id_product` = 18) AND (a1.`id_lang` = 1) AND (a1.`id_shop` = 1) |
0.458
ms
|
1 |
|
|
/classes/PrestaShopCollection.php:381
/classes/PrestaShopCollection.php:396 (getAll)
/modules/prettyblocks/classes/HelperBuilder.php:241 (getFirst)
/modules/cartzillablocks/classes/blocks/CartZillaHeroProduct.php:126 (getRandomProduct)
/modules/prettyblocks/classes/HelperBuilder.php:155 (registerBlocks)
/modules/cartzillablocks/cartzillablocks.php:959 (renderBlocks)
/classes/Hook.php:1237 (hookActionRegisterBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:784 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:98 (getBlocksAvailable)
/modules/prettyblocks/classes/PrettyBlocksModel.php:243 (loadBlock)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 256 |
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2025-12-04 00:00:00',
INTERVAL 20 DAY
)
) > 0) as new
FROM 1vv7f_product p
LEFT JOIN 1vv7f_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 1
LEFT JOIN 1vv7f_stock_available sa ON sa.id_product = p.id_product
AND sa.id_product_attribute = 0
AND sa.id_shop = 1 LEFT JOIN 1vv7f_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product IN (8) |
0.454
ms
|
1 |
|
|
/classes/ProductAssembler.php:70
/classes/ProductAssembler.php:189 (addMissingProductFields)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 34 |
SELECT SQL_NO_CACHE *
FROM 1vv7f_meta m
LEFT JOIN 1vv7f_meta_lang ml ON m.id_meta = ml.id_meta
WHERE (
m.page = "index"
OR m.page = "index"
)
AND ml.id_lang = 1
AND ml.id_shop = 1 LIMIT 1 |
0.453
ms
|
1 |
|
|
/classes/Meta.php:181
/classes/Meta.php:321 (getMetaByPage)
/classes/Meta.php:308 (getHomeMetas)
/classes/controller/FrontController.php:1732 (getMetaTags)
/classes/controller/FrontController.php:521 (getTemplateVarPage)
/classes/controller/FrontController.php:585 (assignGeneralPurposeVariables)
/controllers/front/IndexController.php:38 (initContent)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 111 |
SELECT SQL_NO_CACHE cl.`link_rewrite`
FROM `1vv7f_category_lang` cl
WHERE `id_lang` = 1
AND cl.id_shop = 1
AND cl.`id_category` = 9 LIMIT 1 |
0.453
ms
|
1 |
|
|
/classes/Category.php:1396
/classes/Product.php:740 (getLinkRewrite)
/src/Adapter/Image/ImageRetriever.php:68 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:941 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:137 (fillImages)
/src/Adapter/Presenter/Product/ProductPresenter.php:100 (__construct)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 138 |
SELECT SQL_NO_CACHE pa.`available_date` FROM `1vv7f_product` p LEFT JOIN `1vv7f_product_attribute` pa ON (pa.`id_product` = p.`id_product`) INNER JOIN 1vv7f_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1) INNER JOIN 1vv7f_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.452
ms
|
1 |
|
|
/classes/Product.php:1180
/classes/Product.php:5557 (getAvailableDate)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 83 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product_attribute` a
LEFT JOIN `1vv7f_product_attribute_shop` `c` ON a.`id_product_attribute` = c.`id_product_attribute` AND c.`id_shop` = 1
WHERE (a.`id_product_attribute` = 24) LIMIT 1 |
0.452
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:5623 (__construct)
/classes/Product.php:5586 (computeUnitPriceRatio)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 167 |
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2025-12-04 00:00:00',
INTERVAL 20 DAY
)
) > 0) as new
FROM 1vv7f_product p
LEFT JOIN 1vv7f_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 1
LEFT JOIN 1vv7f_stock_available sa ON sa.id_product = p.id_product
AND sa.id_product_attribute = 0
AND sa.id_shop = 1 LEFT JOIN 1vv7f_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product IN (6) |
0.449
ms
|
1 |
|
|
/classes/ProductAssembler.php:70
/classes/ProductAssembler.php:189 (addMissingProductFields)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 94 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `1vv7f_stock_available`
WHERE (id_product = 8) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.447
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:267
/classes/Product.php:4092 (getQuantityAvailableByProduct)
/classes/Product.php:5537 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 121 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `1vv7f_image` i
INNER JOIN 1vv7f_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `1vv7f_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 14
ORDER BY `position` |
0.447
ms
|
1 |
Yes
|
|
/classes/Product.php:3285
/src/Adapter/Image/ImageRetriever.php:75 (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)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 145 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_category` a0
LEFT JOIN `1vv7f_category_lang` `a1` ON (a0.`id_category` = a1.`id_category`)
WHERE (a0.`id_category` = 2) AND (a1.`id_lang` = 1) AND (a1.`id_shop` = 1) |
0.446
ms
|
1 |
|
|
/classes/PrestaShopCollection.php:381
/classes/PrestaShopCollection.php:396 (getAll)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:737 (getFirst)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:678 (_getCollection)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:222 (formatFieldSelectorForFront)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:177 (formatForFront)
/modules/prettyblocks/classes/PrettyBlocksModel.php:722 (getFrontValue)
/modules/prettyblocks/classes/PrettyBlocksModel.php:254 (_formatGetConfig)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 49 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_prettyblocks` a0
WHERE (a0.`zone_name` = 'displayHome') AND (a0.`id_shop` = 1) AND (a0.`id_lang` = 1)
ORDER BY a0.`position` asc |
0.444
ms
|
80 |
Yes
|
|
/classes/PrestaShopCollection.php:381
/classes/PrestaShopCollection.php:426 (getAll)
/modules/prettyblocks/classes/PrettyBlocksModel.php:172 (getResults)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 196 |
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2025-12-04 00:00:00',
INTERVAL 20 DAY
)
) > 0) as new
FROM 1vv7f_product p
LEFT JOIN 1vv7f_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 1
LEFT JOIN 1vv7f_stock_available sa ON sa.id_product = p.id_product
AND sa.id_product_attribute = 0
AND sa.id_shop = 1 LEFT JOIN 1vv7f_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product IN (1) |
0.444
ms
|
1 |
|
|
/classes/ProductAssembler.php:70
/classes/ProductAssembler.php:189 (addMissingProductFields)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 462 |
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2025-12-04 00:00:00',
INTERVAL 20 DAY
)
) > 0) as new
FROM 1vv7f_product p
LEFT JOIN 1vv7f_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 1
LEFT JOIN 1vv7f_stock_available sa ON sa.id_product = p.id_product
AND sa.id_product_attribute = 0
AND sa.id_shop = 1 LEFT JOIN 1vv7f_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product IN (7) |
0.443
ms
|
1 |
|
|
/classes/ProductAssembler.php:70
/classes/ProductAssembler.php:189 (addMissingProductFields)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 491 |
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 `1vv7f_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 `1vv7f_cart_product` cp JOIN `1vv7f_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `1vv7f_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.440
ms
|
0 |
|
|
/classes/Cart.php:1451
/classes/Product.php:4104 (getProductQuantity)
/classes/Product.php:5537 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 494 |
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2025-12-04 00:00:00',
INTERVAL 20 DAY
)
) > 0) as new
FROM 1vv7f_product p
LEFT JOIN 1vv7f_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 1
LEFT JOIN 1vv7f_stock_available sa ON sa.id_product = p.id_product
AND sa.id_product_attribute = 0
AND sa.id_shop = 1 LEFT JOIN 1vv7f_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product IN (11) |
0.439
ms
|
1 |
|
|
/classes/ProductAssembler.php:70
/classes/ProductAssembler.php:189 (addMissingProductFields)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 521 |
SELECT SQL_NO_CACHE pa.*, product_attribute_shop.*
FROM `1vv7f_product_attribute` pa
INNER JOIN 1vv7f_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` = 1
GROUP BY pa.`id_product_attribute`
ORDER BY pa.`id_product_attribute` |
0.439
ms
|
8 |
Yes
|
Yes
|
/classes/Product.php:2492
/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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/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/child_cartzilla/eb/dd/b2/ebddb2c357462ef8687cb2d5faeb2111369291a5_2.module.cartzillablocksviewstemplatesblocksblockhomecategoryreverse.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181307fe4_90975203)
/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/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 79 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `1vv7f_stock_available`
WHERE (id_product = 10) AND (id_product_attribute = 24) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.438
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:267
/classes/Product.php:4092 (getQuantityAvailableByProduct)
/classes/Product.php:5549 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 106 |
SELECT SQL_NO_CACHE pa.`available_date` FROM `1vv7f_product` p LEFT JOIN `1vv7f_product_attribute` pa ON (pa.`id_product` = p.`id_product`) INNER JOIN 1vv7f_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1) INNER JOIN 1vv7f_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.437
ms
|
1 |
|
|
/classes/Product.php:1180
/classes/Product.php:5557 (getAvailableDate)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 144 |
SELECT SQL_NO_CACHE pai.`id_image`, pai.`id_product_attribute`, il.`legend`
FROM `1vv7f_product_attribute_image` pai
LEFT JOIN `1vv7f_image_lang` il ON (il.`id_image` = pai.`id_image`)
INNER JOIN `1vv7f_image` i ON (i.`id_image` = pai.`id_image`)
WHERE i.`id_product` = 4 AND il.`id_lang` = 1 ORDER by i.`position` |
0.437
ms
|
2 |
Yes
|
|
/classes/Product.php:2668
/src/Adapter/Image/ImageRetriever.php:81 (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)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 99 |
SELECT SQL_NO_CACHE 1 FROM `1vv7f_specific_price` WHERE id_product = 3 LIMIT 1 |
0.434
ms
|
1 |
|
|
/classes/SpecificPrice.php:432
/classes/SpecificPrice.php:520 (couldHaveSpecificPrice)
/classes/Product.php:3569 (getSpecificPrice)
/classes/Product.php:3459 (priceCalculation)
/classes/Product.php:5431 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 132 |
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 `1vv7f_product` p
INNER JOIN `1vv7f_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `1vv7f_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.433
ms
|
3 |
|
|
/classes/Product.php:3603
/classes/Product.php:3459 (priceCalculation)
/classes/Product.php:5431 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 193 |
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2025-12-04 00:00:00',
INTERVAL 20 DAY
)
) > 0) as new
FROM 1vv7f_product p
LEFT JOIN 1vv7f_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 1
LEFT JOIN 1vv7f_stock_available sa ON sa.id_product = p.id_product
AND sa.id_product_attribute = 0
AND sa.id_shop = 1 LEFT JOIN 1vv7f_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product IN (4) |
0.432
ms
|
1 |
|
|
/classes/ProductAssembler.php:70
/classes/ProductAssembler.php:189 (addMissingProductFields)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 471 |
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2025-12-04 00:00:00',
INTERVAL 20 DAY
)
) > 0) as new
FROM 1vv7f_product p
LEFT JOIN 1vv7f_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 1
LEFT JOIN 1vv7f_stock_available sa ON sa.id_product = p.id_product
AND sa.id_product_attribute = 0
AND sa.id_shop = 1 LEFT JOIN 1vv7f_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product IN (2) |
0.432
ms
|
1 |
|
|
/classes/ProductAssembler.php:70
/classes/ProductAssembler.php:189 (addMissingProductFields)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 402 |
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 `1vv7f_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 7 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `1vv7f_cart_product` cp JOIN `1vv7f_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `1vv7f_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` = 7 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.430
ms
|
0 |
|
|
/classes/Cart.php:1451
/classes/Product.php:4104 (getProductQuantity)
/classes/Product.php:5537 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 515 |
SELECT SQL_NO_CACHE pa.*, product_attribute_shop.*
FROM `1vv7f_product_attribute` pa
INNER JOIN 1vv7f_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.430
ms
|
3 |
Yes
|
Yes
|
/classes/Product.php:2492
/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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/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/child_cartzilla/eb/dd/b2/ebddb2c357462ef8687cb2d5faeb2111369291a5_2.module.cartzillablocksviewstemplatesblocksblockhomecategoryreverse.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181307fe4_90975203)
/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/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 314 |
SELECT SQL_NO_CACHE pa.*, product_attribute_shop.*
FROM `1vv7f_product_attribute` pa
INNER JOIN 1vv7f_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` = 10
GROUP BY pa.`id_product_attribute`
ORDER BY pa.`id_product_attribute` |
0.428
ms
|
2 |
Yes
|
Yes
|
/classes/Product.php:2492
/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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/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/child_cartzilla/e4/96/b1/e496b18b87ade5e5d8fd9ee4adff3b90b8089022_2.module.cartzillablocksviewstemplatesblocksblockhomecategory.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918143dc09_64787304)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 204 |
SELECT SQL_NO_CACHE *, ( IF (`id_shop` = 1, 2, 0) + IF (`id_country` = 8, 4, 0) + IF (`id_currency` = 1, 8, 0) + IF (`id_group` = 1, 16, 0) + IF (`id_customer` = 0, 32, 0)) AS `score`
FROM `1vv7f_specific_price`
WHERE
`id_shop` IN (0, 1) AND
`id_currency` IN (0, 1) AND
`id_country` IN (0, 8) AND
`id_group` IN (0, 1) AND `id_product` = 1 AND `id_customer` = 0 AND `id_product_attribute` = 0 AND `id_cart` = 0 AND (`from` = '0000-00-00 00:00:00' OR '2025-12-04 00:00:00' >= `from`) AND (`to` = '0000-00-00 00:00:00' OR '2025-12-04 00:00:00' <= `to`)
AND IF(`from_quantity` > 1, `from_quantity`, 0) <= 1 ORDER BY `id_product_attribute` DESC, `id_cart` DESC, `from_quantity` DESC, `id_specific_price_rule` ASC, `score` DESC, `to` DESC, `from` DESC LIMIT 1 |
0.427
ms
|
2 |
Yes
|
|
/classes/SpecificPrice.php:573
/classes/Product.php:3569 (getSpecificPrice)
/classes/Product.php:3459 (priceCalculation)
/classes/Product.php:5431 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 91 |
SELECT SQL_NO_CACHE 1 FROM `1vv7f_specific_price` WHERE id_product = 8 LIMIT 1 |
0.426
ms
|
1 |
|
|
/classes/SpecificPrice.php:432
/classes/SpecificPrice.php:520 (couldHaveSpecificPrice)
/classes/Product.php:3569 (getSpecificPrice)
/classes/Product.php:3459 (priceCalculation)
/classes/Product.php:5431 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 549 |
SELECT SQL_NO_CACHE pa.*, product_attribute_shop.*
FROM `1vv7f_product_attribute` pa
INNER JOIN 1vv7f_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` = 2
GROUP BY pa.`id_product_attribute`
ORDER BY pa.`id_product_attribute` |
0.426
ms
|
4 |
Yes
|
Yes
|
/classes/Product.php:2492
/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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/eb/de/5e/ebde5ecd27395382175f5b6bf115854ef82509c8_2.file.products-list.tpl.php:82 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791814c6ad5_81113389)
/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/child_cartzilla/14/06/4a/14064a6b847b93777f7c4ec7d24b91d83428a930_2.module.cartzillablocksviewstemplatesblocksproductstrending.tpl.php:43 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918149f3f7_83891116)
/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/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 23 |
SELECT SQL_NO_CACHE c.id_currency
FROM `1vv7f_currency` c
WHERE (iso_code = 'EUR') LIMIT 1 |
0.424
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:217 (getLocale)
/classes/controller/FrontController.php:242 (init)
/tools/profiling/Controller.php:46 (init)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 150 |
SELECT SQL_NO_CACHE pai.`id_image`, pai.`id_product_attribute`, il.`legend`
FROM `1vv7f_product_attribute_image` pai
LEFT JOIN `1vv7f_image_lang` il ON (il.`id_image` = pai.`id_image`)
INNER JOIN `1vv7f_image` i ON (i.`id_image` = pai.`id_image`)
WHERE i.`id_product` = 4 AND il.`id_lang` = 1 ORDER by i.`position` |
0.424
ms
|
2 |
Yes
|
|
/classes/Product.php:2668
/src/Adapter/Image/ImageRetriever.php:81 (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)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 187 |
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2025-12-04 00:00:00',
INTERVAL 20 DAY
)
) > 0) as new
FROM 1vv7f_product p
LEFT JOIN 1vv7f_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 1
LEFT JOIN 1vv7f_stock_available sa ON sa.id_product = p.id_product
AND sa.id_product_attribute = 0
AND sa.id_shop = 1 LEFT JOIN 1vv7f_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product IN (3) |
0.424
ms
|
1 |
|
|
/classes/ProductAssembler.php:70
/classes/ProductAssembler.php:189 (addMissingProductFields)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 219 |
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2025-12-04 00:00:00',
INTERVAL 20 DAY
)
) > 0) as new
FROM 1vv7f_product p
LEFT JOIN 1vv7f_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 1
LEFT JOIN 1vv7f_stock_available sa ON sa.id_product = p.id_product
AND sa.id_product_attribute = 0
AND sa.id_shop = 1 LEFT JOIN 1vv7f_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product IN (6) |
0.423
ms
|
1 |
|
|
/classes/ProductAssembler.php:70
/classes/ProductAssembler.php:189 (addMissingProductFields)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 20 |
SELECT SQL_NO_CACHE * FROM `1vv7f_currency` c ORDER BY `iso_code` ASC |
0.422
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:217 (getLocale)
/classes/controller/FrontController.php:242 (init)
/tools/profiling/Controller.php:46 (init)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 104 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `1vv7f_stock_available`
WHERE (id_product = 3) AND (id_product_attribute = 13) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.421
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:267
/classes/Product.php:4092 (getQuantityAvailableByProduct)
/classes/Product.php:5549 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 352 |
SELECT SQL_NO_CACHE pa.*, product_attribute_shop.*
FROM `1vv7f_product_attribute` pa
INNER JOIN 1vv7f_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.421
ms
|
3 |
Yes
|
Yes
|
/classes/Product.php:2492
/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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/eb/de/5e/ebde5ecd27395382175f5b6bf115854ef82509c8_2.file.products-list.tpl.php:82 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791814c6ad5_81113389)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/14/06/4a/14064a6b847b93777f7c4ec7d24b91d83428a930_2.module.cartzillablocksviewstemplatesblocksproductstrending.tpl.php:43 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918149f3f7_83891116)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 418 |
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2025-12-04 00:00:00',
INTERVAL 20 DAY
)
) > 0) as new
FROM 1vv7f_product p
LEFT JOIN 1vv7f_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 1
LEFT JOIN 1vv7f_stock_available sa ON sa.id_product = p.id_product
AND sa.id_product_attribute = 0
AND sa.id_shop = 1 LEFT JOIN 1vv7f_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product IN (1) |
0.421
ms
|
1 |
|
|
/classes/ProductAssembler.php:70
/classes/ProductAssembler.php:189 (addMissingProductFields)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 169 |
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2025-12-04 00:00:00',
INTERVAL 20 DAY
)
) > 0) as new
FROM 1vv7f_product p
LEFT JOIN 1vv7f_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 1
LEFT JOIN 1vv7f_stock_available sa ON sa.id_product = p.id_product
AND sa.id_product_attribute = 0
AND sa.id_shop = 1 LEFT JOIN 1vv7f_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product IN (10) |
0.419
ms
|
1 |
|
|
/classes/ProductAssembler.php:70
/classes/ProductAssembler.php:189 (addMissingProductFields)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 486 |
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2025-12-04 00:00:00',
INTERVAL 20 DAY
)
) > 0) as new
FROM 1vv7f_product p
LEFT JOIN 1vv7f_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 1
LEFT JOIN 1vv7f_stock_available sa ON sa.id_product = p.id_product
AND sa.id_product_attribute = 0
AND sa.id_shop = 1 LEFT JOIN 1vv7f_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product IN (13) |
0.419
ms
|
1 |
|
|
/classes/ProductAssembler.php:70
/classes/ProductAssembler.php:189 (addMissingProductFields)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 254 |
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2025-12-04 00:00:00',
INTERVAL 20 DAY
)
) > 0) as new
FROM 1vv7f_product p
LEFT JOIN 1vv7f_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 1
LEFT JOIN 1vv7f_stock_available sa ON sa.id_product = p.id_product
AND sa.id_product_attribute = 0
AND sa.id_shop = 1 LEFT JOIN 1vv7f_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product IN (14) |
0.419
ms
|
1 |
|
|
/classes/ProductAssembler.php:70
/classes/ProductAssembler.php:189 (addMissingProductFields)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 412 |
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2025-12-04 00:00:00',
INTERVAL 20 DAY
)
) > 0) as new
FROM 1vv7f_product p
LEFT JOIN 1vv7f_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 1
LEFT JOIN 1vv7f_stock_available sa ON sa.id_product = p.id_product
AND sa.id_product_attribute = 0
AND sa.id_shop = 1 LEFT JOIN 1vv7f_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product IN (5) |
0.419
ms
|
1 |
|
|
/classes/ProductAssembler.php:70
/classes/ProductAssembler.php:189 (addMissingProductFields)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 357 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product` a
LEFT JOIN `1vv7f_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 11) LIMIT 1 |
0.418
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:708 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:914 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:752 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getFlags)
/var/cache/dev/smarty/compile/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/eb/de/5e/ebde5ecd27395382175f5b6bf115854ef82509c8_2.file.products-list.tpl.php:82 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791814c6ad5_81113389)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/14/06/4a/14064a6b847b93777f7c4ec7d24b91d83428a930_2.module.cartzillablocksviewstemplatesblocksproductstrending.tpl.php:43 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918149f3f7_83891116)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 452 |
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 `1vv7f_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 18 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `1vv7f_cart_product` cp JOIN `1vv7f_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `1vv7f_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` = 18 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.417
ms
|
0 |
|
|
/classes/Cart.php:1451
/classes/Product.php:4104 (getProductQuantity)
/classes/Product.php:5537 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 149 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `1vv7f_image` i
INNER JOIN 1vv7f_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `1vv7f_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 4
ORDER BY `position` |
0.416
ms
|
1 |
Yes
|
|
/classes/Product.php:3285
/src/Adapter/Image/ImageRetriever.php:75 (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)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 476 |
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2025-12-04 00:00:00',
INTERVAL 20 DAY
)
) > 0) as new
FROM 1vv7f_product p
LEFT JOIN 1vv7f_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 1
LEFT JOIN 1vv7f_stock_available sa ON sa.id_product = p.id_product
AND sa.id_product_attribute = 0
AND sa.id_shop = 1 LEFT JOIN 1vv7f_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product IN (12) |
0.415
ms
|
1 |
|
|
/classes/ProductAssembler.php:70
/classes/ProductAssembler.php:189 (addMissingProductFields)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 26 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_currency` a
LEFT JOIN `1vv7f_currency_shop` `c` ON a.`id_currency` = c.`id_currency` AND c.`id_shop` = 1
WHERE (a.`id_currency` = 1) LIMIT 1 |
0.415
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Currency.php:246 (__construct)
/classes/Currency.php:1089 (__construct)
/classes/Tools.php:680 (getCurrencyInstance)
/classes/controller/FrontController.php:331 (setCurrency)
/tools/profiling/Controller.php:46 (init)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 431 |
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 `1vv7f_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 2 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `1vv7f_cart_product` cp JOIN `1vv7f_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `1vv7f_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` = 2 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.415
ms
|
0 |
|
|
/classes/Cart.php:1451
/classes/Product.php:4104 (getProductQuantity)
/classes/Product.php:5537 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 534 |
SELECT SQL_NO_CACHE pa.*, product_attribute_shop.*
FROM `1vv7f_product_attribute` pa
INNER JOIN 1vv7f_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` = 10
GROUP BY pa.`id_product_attribute`
ORDER BY pa.`id_product_attribute` |
0.415
ms
|
2 |
Yes
|
Yes
|
/classes/Product.php:2492
/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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/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/child_cartzilla/e4/96/b1/e496b18b87ade5e5d8fd9ee4adff3b90b8089022_2.module.cartzillablocksviewstemplatesblocksblockhomecategory.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918143dc09_64787304)
/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/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 116 |
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 `1vv7f_product` p
INNER JOIN `1vv7f_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `1vv7f_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.414
ms
|
1 |
|
|
/classes/Product.php:3603
/classes/Product.php:3459 (priceCalculation)
/classes/Product.php:5431 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 474 |
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2025-12-04 00:00:00',
INTERVAL 20 DAY
)
) > 0) as new
FROM 1vv7f_product p
LEFT JOIN 1vv7f_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 1
LEFT JOIN 1vv7f_stock_available sa ON sa.id_product = p.id_product
AND sa.id_product_attribute = 0
AND sa.id_shop = 1 LEFT JOIN 1vv7f_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product IN (6) |
0.414
ms
|
1 |
|
|
/classes/ProductAssembler.php:70
/classes/ProductAssembler.php:189 (addMissingProductFields)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 140 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product_attribute` a
LEFT JOIN `1vv7f_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.414
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:5623 (__construct)
/classes/Product.php:5586 (computeUnitPriceRatio)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 70 |
SELECT SQL_NO_CACHE 1 FROM `1vv7f_specific_price` WHERE id_product = 0 LIMIT 1 |
0.413
ms
|
1 |
|
|
/classes/SpecificPrice.php:423
/classes/SpecificPrice.php:520 (couldHaveSpecificPrice)
/classes/Product.php:3569 (getSpecificPrice)
/classes/Product.php:3459 (priceCalculation)
/classes/Product.php:5431 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 172 |
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2025-12-04 00:00:00',
INTERVAL 20 DAY
)
) > 0) as new
FROM 1vv7f_product p
LEFT JOIN 1vv7f_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 1
LEFT JOIN 1vv7f_stock_available sa ON sa.id_product = p.id_product
AND sa.id_product_attribute = 0
AND sa.id_shop = 1 LEFT JOIN 1vv7f_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product IN (17) |
0.413
ms
|
1 |
|
|
/classes/ProductAssembler.php:70
/classes/ProductAssembler.php:189 (addMissingProductFields)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 397 |
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2025-12-04 00:00:00',
INTERVAL 20 DAY
)
) > 0) as new
FROM 1vv7f_product p
LEFT JOIN 1vv7f_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 1
LEFT JOIN 1vv7f_stock_available sa ON sa.id_product = p.id_product
AND sa.id_product_attribute = 0
AND sa.id_shop = 1 LEFT JOIN 1vv7f_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product IN (7) |
0.413
ms
|
1 |
|
|
/classes/ProductAssembler.php:70
/classes/ProductAssembler.php:189 (addMissingProductFields)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 605 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_prettyblocks` a0
WHERE (a0.`zone_name` = 'displayFooterReassurance') AND (a0.`id_shop` = 1) AND (a0.`id_lang` = 1)
ORDER BY a0.`position` asc |
0.413
ms
|
80 |
Yes
|
|
/classes/PrestaShopCollection.php:381
/classes/PrestaShopCollection.php:426 (getAll)
/modules/prettyblocks/classes/PrettyBlocksModel.php:172 (getResults)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/b4/5e/9e/b45e9edb41c99cc854ada6c3a7cbf8c4fd389496_2.file.footer.tpl.php:54 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791819e5500_39099131)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:556 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:141 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 239 |
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2025-12-04 00:00:00',
INTERVAL 20 DAY
)
) > 0) as new
FROM 1vv7f_product p
LEFT JOIN 1vv7f_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 1
LEFT JOIN 1vv7f_stock_available sa ON sa.id_product = p.id_product
AND sa.id_product_attribute = 0
AND sa.id_shop = 1 LEFT JOIN 1vv7f_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product IN (11) |
0.412
ms
|
1 |
|
|
/classes/ProductAssembler.php:70
/classes/ProductAssembler.php:189 (addMissingProductFields)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 445 |
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2025-12-04 00:00:00',
INTERVAL 20 DAY
)
) > 0) as new
FROM 1vv7f_product p
LEFT JOIN 1vv7f_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 1
LEFT JOIN 1vv7f_stock_available sa ON sa.id_product = p.id_product
AND sa.id_product_attribute = 0
AND sa.id_shop = 1 LEFT JOIN 1vv7f_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product IN (19) |
0.411
ms
|
1 |
|
|
/classes/ProductAssembler.php:70
/classes/ProductAssembler.php:189 (addMissingProductFields)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 433 |
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 `1vv7f_cart_product` cp
WHERE cp.`id_product_attribute` = 9
AND cp.`id_cart` = 0 AND cp.`id_product` = 2 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `1vv7f_cart_product` cp JOIN `1vv7f_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `1vv7f_product` pr ON p.`id_product_pack` = pr.`id_product`
WHERE cp.`id_product_attribute` = 9
AND cp.`id_cart` = 0 AND p.`id_product_item` = 2 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.409
ms
|
0 |
|
|
/classes/Cart.php:1451
/classes/Product.php:4104 (getProductQuantity)
/classes/Product.php:5549 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 89 |
SELECT SQL_NO_CACHE * FROM `1vv7f_image_type` |
0.407
ms
|
8 |
|
|
/classes/ImageType.php:161
/classes/ImageType.php:202 (getByNameNType)
/src/Adapter/Image/ImageRetriever.php:217 (getFormattedName)
/src/Adapter/Image/ImageRetriever.php:102 (getImage)
:undefined (PrestaShop\PrestaShop\Adapter\Image\{closure})
/src/Adapter/Image/ImageRetriever.php:95 (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)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 208 |
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 `1vv7f_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 1 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `1vv7f_cart_product` cp JOIN `1vv7f_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `1vv7f_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` = 1 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.406
ms
|
0 |
|
|
/classes/Cart.php:1451
/classes/Product.php:4104 (getProductQuantity)
/classes/Product.php:5537 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 557 |
SELECT SQL_NO_CACHE pa.*, product_attribute_shop.*
FROM `1vv7f_product_attribute` pa
INNER JOIN 1vv7f_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` = 11
GROUP BY pa.`id_product_attribute`
ORDER BY pa.`id_product_attribute` |
0.406
ms
|
2 |
Yes
|
Yes
|
/classes/Product.php:2492
/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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/eb/de/5e/ebde5ecd27395382175f5b6bf115854ef82509c8_2.file.products-list.tpl.php:82 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791814c6ad5_81113389)
/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/child_cartzilla/14/06/4a/14064a6b847b93777f7c4ec7d24b91d83428a930_2.module.cartzillablocksviewstemplatesblocksproductstrending.tpl.php:43 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918149f3f7_83891116)
/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/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 481 |
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 `1vv7f_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 `1vv7f_cart_product` cp JOIN `1vv7f_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `1vv7f_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.406
ms
|
0 |
|
|
/classes/Cart.php:1451
/classes/Product.php:4104 (getProductQuantity)
/classes/Product.php:5537 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 368 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product` a
LEFT JOIN `1vv7f_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `1vv7f_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.405
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:708 (__construct)
/classes/Link.php:114 (__construct)
/classes/Link.php:186 (getProductObject)
/classes/Link.php:1514 (getProductLink)
/classes/Smarty/SmartyLazyRegister.php:81 (getUrlSmarty)
/var/cache/dev/smarty/compile/child_cartzilla/bd/21/55/bd21556623ed563b0ea7c7a099d166ff5e2b7556_2.module.cartzillablocksviewstemplatesblocksrelated.tpl.php:44 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181568649_37248053)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 410 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product` a
LEFT JOIN `1vv7f_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `1vv7f_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 19) AND (b.`id_shop` = 1) LIMIT 1 |
0.405
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:708 (__construct)
/src/Adapter/Image/ImageRetriever.php:68 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:941 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:137 (fillImages)
/src/Adapter/Presenter/Product/ProductPresenter.php:100 (__construct)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 229 |
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 `1vv7f_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 `1vv7f_cart_product` cp JOIN `1vv7f_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `1vv7f_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.403
ms
|
0 |
|
|
/classes/Cart.php:1451
/classes/Product.php:4104 (getProductQuantity)
/classes/Product.php:5537 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 527 |
SELECT SQL_NO_CACHE pa.*, product_attribute_shop.*
FROM `1vv7f_product_attribute` pa
INNER JOIN 1vv7f_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` = 2
GROUP BY pa.`id_product_attribute`
ORDER BY pa.`id_product_attribute` |
0.403
ms
|
4 |
Yes
|
Yes
|
/classes/Product.php:2492
/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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/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/child_cartzilla/e4/96/b1/e496b18b87ade5e5d8fd9ee4adff3b90b8089022_2.module.cartzillablocksviewstemplatesblocksblockhomecategory.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918143dc09_64787304)
/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/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 447 |
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2025-12-04 00:00:00',
INTERVAL 20 DAY
)
) > 0) as new
FROM 1vv7f_product p
LEFT JOIN 1vv7f_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 1
LEFT JOIN 1vv7f_stock_available sa ON sa.id_product = p.id_product
AND sa.id_product_attribute = 0
AND sa.id_shop = 1 LEFT JOIN 1vv7f_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product IN (18) |
0.402
ms
|
1 |
|
|
/classes/ProductAssembler.php:70
/classes/ProductAssembler.php:189 (addMissingProductFields)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 518 |
SELECT SQL_NO_CACHE pa.*, product_attribute_shop.*
FROM `1vv7f_product_attribute` pa
INNER JOIN 1vv7f_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.402
ms
|
3 |
Yes
|
Yes
|
/classes/Product.php:2492
/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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/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/child_cartzilla/eb/dd/b2/ebddb2c357462ef8687cb2d5faeb2111369291a5_2.module.cartzillablocksviewstemplatesblocksblockhomecategoryreverse.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181307fe4_90975203)
/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/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 25 |
SELECT SQL_NO_CACHE `id_lang` FROM `1vv7f_lang`
WHERE `locale` = 'fr-fr'
OR `language_code` = 'fr-fr' LIMIT 1 |
0.401
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:217 (getLocale)
/classes/controller/FrontController.php:242 (init)
/tools/profiling/Controller.php:46 (init)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 522 |
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 `1vv7f_product_attribute_combination` pac
LEFT JOIN `1vv7f_attribute` a ON a.`id_attribute` = pac.`id_attribute`
LEFT JOIN `1vv7f_attribute_group` ag ON ag.`id_attribute_group` = a.`id_attribute_group`
LEFT JOIN `1vv7f_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 1)
LEFT JOIN `1vv7f_attribute_group_lang` agl ON (ag.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 1)
WHERE pac.id_product_attribute IN (1,2,3,4,5,6,7,8)
GROUP BY pac.id_product_attribute
ORDER BY pac.id_product_attribute |
0.401
ms
|
16 |
|
|
/classes/Product.php:2507
/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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/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/child_cartzilla/eb/dd/b2/ebddb2c357462ef8687cb2d5faeb2111369291a5_2.module.cartzillablocksviewstemplatesblocksblockhomecategoryreverse.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181307fe4_90975203)
/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/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 126 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `1vv7f_stock_available`
WHERE (id_product = 6) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.400
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:267
/classes/Product.php:4092 (getQuantityAvailableByProduct)
/classes/Product.php:5537 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 427 |
SELECT SQL_NO_CACHE *, ( IF (`id_shop` = 1, 2, 0) + IF (`id_country` = 8, 4, 0) + IF (`id_currency` = 1, 8, 0) + IF (`id_group` = 1, 16, 0) + IF (`id_customer` = 0, 32, 0)) AS `score`
FROM `1vv7f_specific_price`
WHERE
`id_shop` IN (0, 1) AND
`id_currency` IN (0, 1) AND
`id_country` IN (0, 8) AND
`id_group` IN (0, 1) AND `id_product` = 2 AND `id_customer` = 0 AND `id_product_attribute` = 0 AND `id_cart` = 0 AND (`from` = '0000-00-00 00:00:00' OR '2025-12-04 00:00:00' >= `from`) AND (`to` = '0000-00-00 00:00:00' OR '2025-12-04 00:00:00' <= `to`)
AND IF(`from_quantity` > 1, `from_quantity`, 0) <= 1 ORDER BY `id_product_attribute` DESC, `id_cart` DESC, `from_quantity` DESC, `id_specific_price_rule` ASC, `score` DESC, `to` DESC, `from` DESC LIMIT 1 |
0.400
ms
|
2 |
Yes
|
|
/classes/SpecificPrice.php:573
/classes/Product.php:3569 (getSpecificPrice)
/classes/Product.php:3459 (priceCalculation)
/classes/Product.php:5431 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 258 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product` a0
LEFT JOIN `1vv7f_product_lang` `a1` ON (a0.`id_product` = a1.`id_product`)
WHERE (a0.`id_product` = 1) AND (a1.`id_lang` = 1) AND (a1.`id_shop` = 1) |
0.399
ms
|
1 |
|
|
/classes/PrestaShopCollection.php:381
/classes/PrestaShopCollection.php:396 (getAll)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:737 (getFirst)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:678 (_getCollection)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:222 (formatFieldSelectorForFront)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:177 (formatForFront)
/modules/prettyblocks/classes/PrettyBlocksModel.php:424 (getFrontValue)
/modules/prettyblocks/classes/PrettyBlocksModel.php:288 (_formatStateForFront)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 516 |
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 `1vv7f_product_attribute_combination` pac
LEFT JOIN `1vv7f_attribute` a ON a.`id_attribute` = pac.`id_attribute`
LEFT JOIN `1vv7f_attribute_group` ag ON ag.`id_attribute_group` = a.`id_attribute_group`
LEFT JOIN `1vv7f_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 1)
LEFT JOIN `1vv7f_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.399
ms
|
3 |
|
|
/classes/Product.php:2507
/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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/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/child_cartzilla/eb/dd/b2/ebddb2c357462ef8687cb2d5faeb2111369291a5_2.module.cartzillablocksviewstemplatesblocksblockhomecategoryreverse.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181307fe4_90975203)
/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/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 75 |
SELECT SQL_NO_CACHE `reduction`
FROM `1vv7f_product_group_reduction_cache`
WHERE `id_product` = 10 AND `id_group` = 1 LIMIT 1 |
0.399
ms
|
0 |
|
|
/classes/GroupReduction.php:146
/classes/Product.php:3733 (getValueForProduct)
/classes/Product.php:3459 (priceCalculation)
/classes/Product.php:5431 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 212 |
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 `1vv7f_attribute` a
LEFT JOIN `1vv7f_attribute_lang` al
ON (al.`id_attribute` = a.`id_attribute` AND al.`id_lang` = 1)
LEFT JOIN `1vv7f_product_attribute_combination` pac
ON (pac.`id_attribute` = a.`id_attribute`)
LEFT JOIN `1vv7f_product_attribute` pa
ON (pa.`id_product_attribute` = pac.`id_product_attribute`)
INNER JOIN 1vv7f_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 `1vv7f_product_attribute_lang` pal
ON (pal.`id_product_attribute` = pac.`id_product_attribute` AND pal.`id_lang` = 1)
LEFT JOIN `1vv7f_attribute_group_lang` agl
ON (a.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 1)
WHERE pa.`id_product` = 1
AND pac.`id_product_attribute` = 1
AND agl.`id_lang` = 1 |
0.397
ms
|
2 |
|
|
/classes/Product.php:7163
/classes/Product.php:5568 (getAttributesParams)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 540 |
SELECT SQL_NO_CACHE pa.*, product_attribute_shop.*
FROM `1vv7f_product_attribute` pa
INNER JOIN 1vv7f_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` = 18
GROUP BY pa.`id_product_attribute`
ORDER BY pa.`id_product_attribute` |
0.396
ms
|
4 |
Yes
|
Yes
|
/classes/Product.php:2492
/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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/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/child_cartzilla/e4/96/b1/e496b18b87ade5e5d8fd9ee4adff3b90b8089022_2.module.cartzillablocksviewstemplatesblocksblockhomecategory.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918143dc09_64787304)
/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/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 317 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product` a
LEFT JOIN `1vv7f_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 17) LIMIT 1 |
0.395
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:708 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:914 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:752 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getFlags)
/var/cache/dev/smarty/compile/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/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/child_cartzilla/e4/96/b1/e496b18b87ade5e5d8fd9ee4adff3b90b8089022_2.module.cartzillablocksviewstemplatesblocksblockhomecategory.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918143dc09_64787304)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 50 |
SELECT SQL_NO_CACHE l.id_category FROM 1vv7f_category_lang as l
INNER JOIN 1vv7f_category c ON (c.id_category = l.id_category)
WHERE c.active = 1
AND l.id_shop = 1 AND l.id_lang = 1
ORDER BY RAND() LIMIT 5 |
0.395
ms
|
9 |
Yes
|
|
/modules/prettyblocks/classes/HelperBuilder.php:175
/modules/cartzillablocks/classes/blocks/CartZillaFeaturedProducts.php:59 (getRandomCategory)
/modules/prettyblocks/classes/HelperBuilder.php:155 (registerBlocks)
/modules/cartzillablocks/cartzillablocks.php:959 (renderBlocks)
/classes/Hook.php:1237 (hookActionRegisterBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:784 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:98 (getBlocksAvailable)
/modules/prettyblocks/classes/PrettyBlocksModel.php:243 (loadBlock)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 415 |
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2025-12-04 00:00:00',
INTERVAL 20 DAY
)
) > 0) as new
FROM 1vv7f_product p
LEFT JOIN 1vv7f_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 1
LEFT JOIN 1vv7f_stock_available sa ON sa.id_product = p.id_product
AND sa.id_product_attribute = 0
AND sa.id_shop = 1 LEFT JOIN 1vv7f_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product IN (3) |
0.395
ms
|
1 |
|
|
/classes/ProductAssembler.php:70
/classes/ProductAssembler.php:189 (addMissingProductFields)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 22 |
SELECT SQL_NO_CACHE value FROM `1vv7f_configuration` WHERE `name` = "PS_MULTISHOP_FEATURE_ACTIVE" LIMIT 1 |
0.394
ms
|
1 |
|
|
/classes/shop/Shop.php:1211
/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:217 (getLocale)
/classes/controller/FrontController.php:242 (init)
/tools/profiling/Controller.php:46 (init)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 54 |
SELECT SQL_NO_CACHE l.id_category FROM 1vv7f_category_lang as l
INNER JOIN 1vv7f_category c ON (c.id_category = l.id_category)
WHERE c.active = 1
AND l.id_shop = 1 AND l.id_lang = 1
ORDER BY RAND() LIMIT 5 |
0.394
ms
|
9 |
Yes
|
|
/modules/prettyblocks/classes/HelperBuilder.php:175
/modules/cartzillablocks/classes/blocks/CartZillaHeroCategoryBlock.php:87 (getRandomCategory)
/modules/prettyblocks/classes/HelperBuilder.php:155 (registerBlocks)
/modules/cartzillablocks/cartzillablocks.php:959 (renderBlocks)
/classes/Hook.php:1237 (hookActionRegisterBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:784 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:98 (getBlocksAvailable)
/modules/prettyblocks/classes/PrettyBlocksModel.php:243 (loadBlock)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 424 |
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2025-12-04 00:00:00',
INTERVAL 20 DAY
)
) > 0) as new
FROM 1vv7f_product p
LEFT JOIN 1vv7f_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 1
LEFT JOIN 1vv7f_stock_available sa ON sa.id_product = p.id_product
AND sa.id_product_attribute = 0
AND sa.id_shop = 1 LEFT JOIN 1vv7f_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product IN (2) |
0.394
ms
|
1 |
|
|
/classes/ProductAssembler.php:70
/classes/ProductAssembler.php:189 (addMissingProductFields)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (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 1vv7f_shop_group gs
LEFT JOIN 1vv7f_shop s
ON s.id_shop_group = gs.id_shop_group
LEFT JOIN 1vv7f_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.393
ms
|
1 |
Yes
|
|
/classes/shop/Shop.php:716
/classes/shop/Shop.php:775 (cacheShops)
/classes/Configuration.php:300 (getShops)
/classes/shop/Shop.php:399 (getMultiShopValues)
/config/config.inc.php:122 (initialize)
/index.php:40 (require_once)
|
| 319 |
SELECT SQL_NO_CACHE pa.*, product_attribute_shop.*
FROM `1vv7f_product_attribute` pa
INNER JOIN 1vv7f_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` = 17
GROUP BY pa.`id_product_attribute`
ORDER BY pa.`id_product_attribute` |
0.391
ms
|
4 |
Yes
|
Yes
|
/classes/Product.php:2492
/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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/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/child_cartzilla/e4/96/b1/e496b18b87ade5e5d8fd9ee4adff3b90b8089022_2.module.cartzillablocksviewstemplatesblocksblockhomecategory.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918143dc09_64787304)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 468 |
SELECT SQL_NO_CACHE COUNT(cp.`id_product`) AS total
FROM `1vv7f_product` p
INNER JOIN 1vv7f_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `1vv7f_category_product` cp ON p.`id_product` = cp.`id_product`
WHERE cp.`id_category` = 2 AND product_shop.`visibility` IN ("both", "catalog") AND product_shop.`active` = 1 LIMIT 1 |
0.391
ms
|
19 |
|
|
/classes/Category.php:1021
/src/Adapter/Category/CategoryProductSearchProvider.php:83 (getProducts)
/src/Adapter/Category/CategoryProductSearchProvider.php:119 (getProductsOrCount)
/modules/cartzillablocks/cartzillablocks.php:1191 (runQuery)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 156 |
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 `1vv7f_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 16 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `1vv7f_cart_product` cp JOIN `1vv7f_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `1vv7f_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` = 16 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.390
ms
|
0 |
|
|
/classes/Cart.php:1451
/classes/Product.php:4104 (getProductQuantity)
/classes/Product.php:5537 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 558 |
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 `1vv7f_product_attribute_combination` pac
LEFT JOIN `1vv7f_attribute` a ON a.`id_attribute` = pac.`id_attribute`
LEFT JOIN `1vv7f_attribute_group` ag ON ag.`id_attribute_group` = a.`id_attribute_group`
LEFT JOIN `1vv7f_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 1)
LEFT JOIN `1vv7f_attribute_group_lang` agl ON (ag.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 1)
WHERE pac.id_product_attribute IN (26,27)
GROUP BY pac.id_product_attribute
ORDER BY pac.id_product_attribute |
0.390
ms
|
2 |
|
|
/classes/Product.php:2507
/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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/eb/de/5e/ebde5ecd27395382175f5b6bf115854ef82509c8_2.file.products-list.tpl.php:82 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791814c6ad5_81113389)
/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/child_cartzilla/14/06/4a/14064a6b847b93777f7c4ec7d24b91d83428a930_2.module.cartzillablocksviewstemplatesblocksproductstrending.tpl.php:43 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918149f3f7_83891116)
/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/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 394 |
SELECT SQL_NO_CACHE COUNT(cp.`id_product`) AS total
FROM `1vv7f_product` p
INNER JOIN 1vv7f_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `1vv7f_category_product` cp ON p.`id_product` = cp.`id_product`
WHERE cp.`id_category` = 2 AND product_shop.`visibility` IN ("both", "catalog") AND product_shop.`active` = 1 LIMIT 1 |
0.389
ms
|
19 |
|
|
/classes/Category.php:1021
/src/Adapter/Category/CategoryProductSearchProvider.php:83 (getProducts)
/src/Adapter/Category/CategoryProductSearchProvider.php:119 (getProductsOrCount)
/modules/cartzillablocks/cartzillablocks.php:1191 (runQuery)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 152 |
SELECT SQL_NO_CACHE 1 FROM `1vv7f_specific_price` WHERE id_product = 16 LIMIT 1 |
0.389
ms
|
1 |
|
|
/classes/SpecificPrice.php:432
/classes/SpecificPrice.php:520 (couldHaveSpecificPrice)
/classes/Product.php:3569 (getSpecificPrice)
/classes/Product.php:3459 (priceCalculation)
/classes/Product.php:5431 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 560 |
SELECT SQL_NO_CACHE pa.*, product_attribute_shop.*
FROM `1vv7f_product_attribute` pa
INNER JOIN 1vv7f_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` = 17
GROUP BY pa.`id_product_attribute`
ORDER BY pa.`id_product_attribute` |
0.389
ms
|
4 |
Yes
|
Yes
|
/classes/Product.php:2492
/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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/eb/de/5e/ebde5ecd27395382175f5b6bf115854ef82509c8_2.file.products-list.tpl.php:82 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791814c6ad5_81113389)
/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/child_cartzilla/14/06/4a/14064a6b847b93777f7c4ec7d24b91d83428a930_2.module.cartzillablocksviewstemplatesblocksproductstrending.tpl.php:43 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918149f3f7_83891116)
/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/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 328 |
SELECT SQL_NO_CACHE pa.*, product_attribute_shop.*
FROM `1vv7f_product_attribute` pa
INNER JOIN 1vv7f_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.388
ms
|
3 |
Yes
|
Yes
|
/classes/Product.php:2492
/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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/eb/de/5e/ebde5ecd27395382175f5b6bf115854ef82509c8_2.file.products-list.tpl.php:82 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791814c6ad5_81113389)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/14/06/4a/14064a6b847b93777f7c4ec7d24b91d83428a930_2.module.cartzillablocksviewstemplatesblocksproductstrending.tpl.php:43 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918149f3f7_83891116)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 51 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_category` a0
LEFT JOIN `1vv7f_category_lang` `a1` ON (a0.`id_category` = a1.`id_category`)
WHERE (a0.`id_category` = 4) AND (a1.`id_lang` = 1) AND (a1.`id_shop` = 1) |
0.387
ms
|
1 |
|
|
/classes/PrestaShopCollection.php:381
/classes/PrestaShopCollection.php:396 (getAll)
/modules/prettyblocks/classes/HelperBuilder.php:188 (getFirst)
/modules/cartzillablocks/classes/blocks/CartZillaFeaturedProducts.php:59 (getRandomCategory)
/modules/prettyblocks/classes/HelperBuilder.php:155 (registerBlocks)
/modules/cartzillablocks/cartzillablocks.php:959 (renderBlocks)
/classes/Hook.php:1237 (hookActionRegisterBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:784 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:98 (getBlocksAvailable)
/modules/prettyblocks/classes/PrettyBlocksModel.php:243 (loadBlock)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 550 |
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 `1vv7f_product_attribute_combination` pac
LEFT JOIN `1vv7f_attribute` a ON a.`id_attribute` = pac.`id_attribute`
LEFT JOIN `1vv7f_attribute_group` ag ON ag.`id_attribute_group` = a.`id_attribute_group`
LEFT JOIN `1vv7f_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 1)
LEFT JOIN `1vv7f_attribute_group_lang` agl ON (ag.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 1)
WHERE pac.id_product_attribute IN (9,10,11,12)
GROUP BY pac.id_product_attribute
ORDER BY pac.id_product_attribute |
0.387
ms
|
4 |
|
|
/classes/Product.php:2507
/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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/eb/de/5e/ebde5ecd27395382175f5b6bf115854ef82509c8_2.file.products-list.tpl.php:82 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791814c6ad5_81113389)
/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/child_cartzilla/14/06/4a/14064a6b847b93777f7c4ec7d24b91d83428a930_2.module.cartzillablocksviewstemplatesblocksproductstrending.tpl.php:43 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918149f3f7_83891116)
/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/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 123 |
SELECT SQL_NO_CACHE 1 FROM `1vv7f_specific_price` WHERE id_product = 6 LIMIT 1 |
0.386
ms
|
1 |
|
|
/classes/SpecificPrice.php:432
/classes/SpecificPrice.php:520 (couldHaveSpecificPrice)
/classes/Product.php:3569 (getSpecificPrice)
/classes/Product.php:3459 (priceCalculation)
/classes/Product.php:5431 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 282 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product` a
LEFT JOIN `1vv7f_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 3) LIMIT 1 |
0.386
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:708 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:914 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:752 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getFlags)
/var/cache/dev/smarty/compile/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/eb/dd/b2/ebddb2c357462ef8687cb2d5faeb2111369291a5_2.module.cartzillablocksviewstemplatesblocksblockhomecategoryreverse.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181307fe4_90975203)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 221 |
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2025-12-04 00:00:00',
INTERVAL 20 DAY
)
) > 0) as new
FROM 1vv7f_product p
LEFT JOIN 1vv7f_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 1
LEFT JOIN 1vv7f_stock_available sa ON sa.id_product = p.id_product
AND sa.id_product_attribute = 0
AND sa.id_shop = 1 LEFT JOIN 1vv7f_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product IN (16) |
0.385
ms
|
1 |
|
|
/classes/ProductAssembler.php:70
/classes/ProductAssembler.php:189 (addMissingProductFields)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 77 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `1vv7f_stock_available`
WHERE (id_product = 10) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.385
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:267
/classes/Product.php:4092 (getQuantityAvailableByProduct)
/classes/Product.php:5537 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 19 |
SELECT SQL_NO_CACHE * FROM `1vv7f_hook_module_exceptions`
WHERE `id_shop` IN (1) |
0.384
ms
|
1 |
|
|
/classes/module/Module.php:2168
/classes/Hook.php:1050 (getExceptionsStatic)
/classes/Dispatcher.php:481 (exec)
/index.php:78 (dispatch)
|
| 37 |
SELECT SQL_NO_CACHE * FROM `1vv7f_image_type` WHERE 1 AND `suppliers` = 1 ORDER BY `width` DESC, `height` DESC, `name`ASC |
0.384
ms
|
8 |
Yes
|
|
/classes/ImageType.php:109
/src/Adapter/Image/ImageRetriever.php:369 (getImagesTypes)
/classes/controller/FrontController.php:1529 (getNoPictureImage)
/classes/controller/FrontController.php:1681 (getTemplateVarUrls)
/classes/controller/FrontController.php:522 (getTemplateVarShop)
/classes/controller/FrontController.php:585 (assignGeneralPurposeVariables)
/controllers/front/IndexController.php:38 (initContent)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 71 |
SELECT SQL_NO_CACHE 1 FROM `1vv7f_specific_price` WHERE id_product = 10 LIMIT 1 |
0.384
ms
|
1 |
|
|
/classes/SpecificPrice.php:432
/classes/SpecificPrice.php:520 (couldHaveSpecificPrice)
/classes/Product.php:3569 (getSpecificPrice)
/classes/Product.php:3459 (priceCalculation)
/classes/Product.php:5431 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 274 |
SELECT SQL_NO_CACHE pa.*, product_attribute_shop.*
FROM `1vv7f_product_attribute` pa
INNER JOIN 1vv7f_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` = 10
GROUP BY pa.`id_product_attribute`
ORDER BY pa.`id_product_attribute` |
0.384
ms
|
2 |
Yes
|
Yes
|
/classes/Product.php:2492
/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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/eb/dd/b2/ebddb2c357462ef8687cb2d5faeb2111369291a5_2.module.cartzillablocksviewstemplatesblocksblockhomecategoryreverse.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181307fe4_90975203)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 296 |
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 `1vv7f_product_attribute_combination` pac
LEFT JOIN `1vv7f_attribute` a ON a.`id_attribute` = pac.`id_attribute`
LEFT JOIN `1vv7f_attribute_group` ag ON ag.`id_attribute_group` = a.`id_attribute_group`
LEFT JOIN `1vv7f_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 1)
LEFT JOIN `1vv7f_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.383
ms
|
3 |
|
|
/classes/Product.php:2507
/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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/eb/dd/b2/ebddb2c357462ef8687cb2d5faeb2111369291a5_2.module.cartzillablocksviewstemplatesblocksblockhomecategoryreverse.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181307fe4_90975203)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 300 |
SELECT SQL_NO_CACHE pa.*, product_attribute_shop.*
FROM `1vv7f_product_attribute` pa
INNER JOIN 1vv7f_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.382
ms
|
3 |
Yes
|
Yes
|
/classes/Product.php:2492
/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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/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/child_cartzilla/e4/96/b1/e496b18b87ade5e5d8fd9ee4adff3b90b8089022_2.module.cartzillablocksviewstemplatesblocksblockhomecategory.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918143dc09_64787304)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 335 |
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 `1vv7f_product_attribute_combination` pac
LEFT JOIN `1vv7f_attribute` a ON a.`id_attribute` = pac.`id_attribute`
LEFT JOIN `1vv7f_attribute_group` ag ON ag.`id_attribute_group` = a.`id_attribute_group`
LEFT JOIN `1vv7f_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 1)
LEFT JOIN `1vv7f_attribute_group_lang` agl ON (ag.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 1)
WHERE pac.id_product_attribute IN (1,2,3,4,5,6,7,8)
GROUP BY pac.id_product_attribute
ORDER BY pac.id_product_attribute |
0.382
ms
|
16 |
|
|
/classes/Product.php:2507
/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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/eb/de/5e/ebde5ecd27395382175f5b6bf115854ef82509c8_2.file.products-list.tpl.php:82 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791814c6ad5_81113389)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/14/06/4a/14064a6b847b93777f7c4ec7d24b91d83428a930_2.module.cartzillablocksviewstemplatesblocksproductstrending.tpl.php:43 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918149f3f7_83891116)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 524 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product` a
LEFT JOIN `1vv7f_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 2) LIMIT 1 |
0.381
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:708 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:914 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:752 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getFlags)
/var/cache/dev/smarty/compile/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/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/child_cartzilla/e4/96/b1/e496b18b87ade5e5d8fd9ee4adff3b90b8089022_2.module.cartzillablocksviewstemplatesblocksblockhomecategory.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918143dc09_64787304)
/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/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 179 |
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 `1vv7f_cart_product` cp
WHERE cp.`id_product_attribute` = 32
AND cp.`id_cart` = 0 AND cp.`id_product` = 17 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `1vv7f_cart_product` cp JOIN `1vv7f_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `1vv7f_product` pr ON p.`id_product_pack` = pr.`id_product`
WHERE cp.`id_product_attribute` = 32
AND cp.`id_cart` = 0 AND p.`id_product_item` = 17 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.379
ms
|
0 |
|
|
/classes/Cart.php:1451
/classes/Product.php:4104 (getProductQuantity)
/classes/Product.php:5549 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 181 |
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 `1vv7f_attribute` a
LEFT JOIN `1vv7f_attribute_lang` al
ON (al.`id_attribute` = a.`id_attribute` AND al.`id_lang` = 1)
LEFT JOIN `1vv7f_product_attribute_combination` pac
ON (pac.`id_attribute` = a.`id_attribute`)
LEFT JOIN `1vv7f_product_attribute` pa
ON (pa.`id_product_attribute` = pac.`id_product_attribute`)
INNER JOIN 1vv7f_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 `1vv7f_product_attribute_lang` pal
ON (pal.`id_product_attribute` = pac.`id_product_attribute` AND pal.`id_lang` = 1)
LEFT JOIN `1vv7f_attribute_group_lang` agl
ON (a.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 1)
WHERE pa.`id_product` = 17
AND pac.`id_product_attribute` = 32
AND agl.`id_lang` = 1 |
0.379
ms
|
1 |
|
|
/classes/Product.php:7163
/classes/Product.php:5568 (getAttributesParams)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 35 |
SELECT SQL_NO_CACHE * FROM `1vv7f_image_type` WHERE 1 AND `categories` = 1 ORDER BY `width` DESC, `height` DESC, `name`ASC |
0.378
ms
|
8 |
Yes
|
|
/classes/ImageType.php:109
/src/Adapter/Image/ImageRetriever.php:369 (getImagesTypes)
/classes/controller/FrontController.php:1529 (getNoPictureImage)
/classes/controller/FrontController.php:1681 (getTemplateVarUrls)
/classes/controller/FrontController.php:522 (getTemplateVarShop)
/classes/controller/FrontController.php:585 (assignGeneralPurposeVariables)
/controllers/front/IndexController.php:38 (initContent)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 528 |
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 `1vv7f_product_attribute_combination` pac
LEFT JOIN `1vv7f_attribute` a ON a.`id_attribute` = pac.`id_attribute`
LEFT JOIN `1vv7f_attribute_group` ag ON ag.`id_attribute_group` = a.`id_attribute_group`
LEFT JOIN `1vv7f_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 1)
LEFT JOIN `1vv7f_attribute_group_lang` agl ON (ag.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 1)
WHERE pac.id_product_attribute IN (9,10,11,12)
GROUP BY pac.id_product_attribute
ORDER BY pac.id_product_attribute |
0.378
ms
|
4 |
|
|
/classes/Product.php:2507
/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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/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/child_cartzilla/e4/96/b1/e496b18b87ade5e5d8fd9ee4adff3b90b8089022_2.module.cartzillablocksviewstemplatesblocksblockhomecategory.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918143dc09_64787304)
/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/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 325 |
SELECT SQL_NO_CACHE pa.*, product_attribute_shop.*
FROM `1vv7f_product_attribute` pa
INNER JOIN 1vv7f_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.376
ms
|
3 |
Yes
|
Yes
|
/classes/Product.php:2492
/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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/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/child_cartzilla/e4/96/b1/e496b18b87ade5e5d8fd9ee4adff3b90b8089022_2.module.cartzillablocksviewstemplatesblocksblockhomecategory.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918143dc09_64787304)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 76 |
SELECT SQL_NO_CACHE `reduction`
FROM `1vv7f_group`
WHERE `id_group` = 1 LIMIT 1 |
0.375
ms
|
1 |
|
|
/classes/Group.php:151
/classes/Product.php:3737 (getReductionByIdGroup)
/classes/Product.php:3459 (priceCalculation)
/classes/Product.php:5431 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 177 |
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 `1vv7f_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 17 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `1vv7f_cart_product` cp JOIN `1vv7f_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `1vv7f_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` = 17 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.375
ms
|
0 |
|
|
/classes/Cart.php:1451
/classes/Product.php:4104 (getProductQuantity)
/classes/Product.php:5537 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 184 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product` a
LEFT JOIN `1vv7f_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `1vv7f_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 17) AND (b.`id_shop` = 1) LIMIT 1 |
0.374
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:708 (__construct)
/src/Adapter/Image/ImageRetriever.php:68 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:941 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:137 (fillImages)
/src/Adapter/Presenter/Product/ProductPresenter.php:100 (__construct)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 353 |
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 `1vv7f_product_attribute_combination` pac
LEFT JOIN `1vv7f_attribute` a ON a.`id_attribute` = pac.`id_attribute`
LEFT JOIN `1vv7f_attribute_group` ag ON ag.`id_attribute_group` = a.`id_attribute_group`
LEFT JOIN `1vv7f_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 1)
LEFT JOIN `1vv7f_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.374
ms
|
3 |
|
|
/classes/Product.php:2507
/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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/eb/de/5e/ebde5ecd27395382175f5b6bf115854ef82509c8_2.file.products-list.tpl.php:82 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791814c6ad5_81113389)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/14/06/4a/14064a6b847b93777f7c4ec7d24b91d83428a930_2.module.cartzillablocksviewstemplatesblocksproductstrending.tpl.php:43 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918149f3f7_83891116)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 136 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `1vv7f_stock_available`
WHERE (id_product = 4) AND (id_product_attribute = 16) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.374
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:267
/classes/Product.php:4092 (getQuantityAvailableByProduct)
/classes/Product.php:5549 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 492 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product` a
LEFT JOIN `1vv7f_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `1vv7f_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.374
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:708 (__construct)
/src/Adapter/Image/ImageRetriever.php:68 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:941 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:137 (fillImages)
/src/Adapter/Presenter/Product/ProductPresenter.php:100 (__construct)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 210 |
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 `1vv7f_cart_product` cp
WHERE cp.`id_product_attribute` = 1
AND cp.`id_cart` = 0 AND cp.`id_product` = 1 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `1vv7f_cart_product` cp JOIN `1vv7f_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `1vv7f_product` pr ON p.`id_product_pack` = pr.`id_product`
WHERE cp.`id_product_attribute` = 1
AND cp.`id_cart` = 0 AND p.`id_product_item` = 1 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.373
ms
|
0 |
|
|
/classes/Cart.php:1451
/classes/Product.php:4104 (getProductQuantity)
/classes/Product.php:5549 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 459 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product` a
LEFT JOIN `1vv7f_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `1vv7f_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 18) AND (b.`id_shop` = 1) LIMIT 1 |
0.373
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:708 (__construct)
/src/Adapter/Image/ImageRetriever.php:68 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:941 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:137 (fillImages)
/src/Adapter/Presenter/Product/ProductPresenter.php:100 (__construct)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 535 |
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 `1vv7f_product_attribute_combination` pac
LEFT JOIN `1vv7f_attribute` a ON a.`id_attribute` = pac.`id_attribute`
LEFT JOIN `1vv7f_attribute_group` ag ON ag.`id_attribute_group` = a.`id_attribute_group`
LEFT JOIN `1vv7f_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 1)
LEFT JOIN `1vv7f_attribute_group_lang` agl ON (ag.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 1)
WHERE pac.id_product_attribute IN (24,25)
GROUP BY pac.id_product_attribute
ORDER BY pac.id_product_attribute |
0.373
ms
|
2 |
|
|
/classes/Product.php:2507
/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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/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/child_cartzilla/e4/96/b1/e496b18b87ade5e5d8fd9ee4adff3b90b8089022_2.module.cartzillablocksviewstemplatesblocksblockhomecategory.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918143dc09_64787304)
/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/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 591 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_prettyblocks` a0
WHERE (a0.`zone_name` = 'displayFooter') AND (a0.`id_shop` = 1) AND (a0.`id_lang` = 1)
ORDER BY a0.`position` asc |
0.373
ms
|
80 |
Yes
|
|
/classes/PrestaShopCollection.php:381
/classes/PrestaShopCollection.php:426 (getAll)
/modules/prettyblocks/classes/PrettyBlocksModel.php:172 (getResults)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/b4/5e/9e/b45e9edb41c99cc854ada6c3a7cbf8c4fd389496_2.file.footer.tpl.php:29 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791819e5500_39099131)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:556 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:141 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 29 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_group` a
LEFT JOIN `1vv7f_group_shop` `c` ON a.`id_group` = c.`id_group` AND c.`id_shop` = 1
WHERE (a.`id_group` = 1) LIMIT 1 |
0.372
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Group.php:81 (__construct)
/classes/Group.php:393 (__construct)
/classes/Cart.php:272 (getCurrent)
/classes/Cart.php:238 (setTaxCalculationMethod)
/classes/controller/FrontController.php:430 (__construct)
/tools/profiling/Controller.php:46 (init)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 86 |
SELECT SQL_NO_CACHE cl.`link_rewrite`
FROM `1vv7f_category_lang` cl
WHERE `id_lang` = 1
AND cl.id_shop = 1
AND cl.`id_category` = 8 LIMIT 1 |
0.372
ms
|
1 |
|
|
/classes/Category.php:1396
/classes/Product.php:740 (getLinkRewrite)
/src/Adapter/Image/ImageRetriever.php:68 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:941 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:137 (fillImages)
/src/Adapter/Presenter/Product/ProductPresenter.php:100 (__construct)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 231 |
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 `1vv7f_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 `1vv7f_cart_product` cp JOIN `1vv7f_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `1vv7f_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.372
ms
|
0 |
|
|
/classes/Cart.php:1451
/classes/Product.php:4104 (getProductQuantity)
/classes/Product.php:5549 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 275 |
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 `1vv7f_product_attribute_combination` pac
LEFT JOIN `1vv7f_attribute` a ON a.`id_attribute` = pac.`id_attribute`
LEFT JOIN `1vv7f_attribute_group` ag ON ag.`id_attribute_group` = a.`id_attribute_group`
LEFT JOIN `1vv7f_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 1)
LEFT JOIN `1vv7f_attribute_group_lang` agl ON (ag.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 1)
WHERE pac.id_product_attribute IN (24,25)
GROUP BY pac.id_product_attribute
ORDER BY pac.id_product_attribute |
0.371
ms
|
2 |
|
|
/classes/Product.php:2507
/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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/eb/dd/b2/ebddb2c357462ef8687cb2d5faeb2111369291a5_2.module.cartzillablocksviewstemplatesblocksblockhomecategoryreverse.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181307fe4_90975203)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 303 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product` a
LEFT JOIN `1vv7f_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 16) LIMIT 1 |
0.371
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:708 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:914 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:752 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getFlags)
/var/cache/dev/smarty/compile/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/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/child_cartzilla/e4/96/b1/e496b18b87ade5e5d8fd9ee4adff3b90b8089022_2.module.cartzillablocksviewstemplatesblocksblockhomecategory.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918143dc09_64787304)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 158 |
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 `1vv7f_cart_product` cp
WHERE cp.`id_product_attribute` = 28
AND cp.`id_cart` = 0 AND cp.`id_product` = 16 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `1vv7f_cart_product` cp JOIN `1vv7f_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `1vv7f_product` pr ON p.`id_product_pack` = pr.`id_product`
WHERE cp.`id_product_attribute` = 28
AND cp.`id_cart` = 0 AND p.`id_product_item` = 16 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.369
ms
|
0 |
|
|
/classes/Cart.php:1451
/classes/Product.php:4104 (getProductQuantity)
/classes/Product.php:5549 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 334 |
SELECT SQL_NO_CACHE pa.*, product_attribute_shop.*
FROM `1vv7f_product_attribute` pa
INNER JOIN 1vv7f_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` = 1
GROUP BY pa.`id_product_attribute`
ORDER BY pa.`id_product_attribute` |
0.368
ms
|
8 |
Yes
|
Yes
|
/classes/Product.php:2492
/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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/eb/de/5e/ebde5ecd27395382175f5b6bf115854ef82509c8_2.file.products-list.tpl.php:82 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791814c6ad5_81113389)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/14/06/4a/14064a6b847b93777f7c4ec7d24b91d83428a930_2.module.cartzillablocksviewstemplatesblocksproductstrending.tpl.php:43 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918149f3f7_83891116)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 561 |
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 `1vv7f_product_attribute_combination` pac
LEFT JOIN `1vv7f_attribute` a ON a.`id_attribute` = pac.`id_attribute`
LEFT JOIN `1vv7f_attribute_group` ag ON ag.`id_attribute_group` = a.`id_attribute_group`
LEFT JOIN `1vv7f_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 1)
LEFT JOIN `1vv7f_attribute_group_lang` agl ON (ag.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 1)
WHERE pac.id_product_attribute IN (32,33,34,35)
GROUP BY pac.id_product_attribute
ORDER BY pac.id_product_attribute |
0.368
ms
|
4 |
|
|
/classes/Product.php:2507
/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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/eb/de/5e/ebde5ecd27395382175f5b6bf115854ef82509c8_2.file.products-list.tpl.php:82 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791814c6ad5_81113389)
/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/child_cartzilla/14/06/4a/14064a6b847b93777f7c4ec7d24b91d83428a930_2.module.cartzillablocksviewstemplatesblocksproductstrending.tpl.php:43 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918149f3f7_83891116)
/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/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 101 |
SELECT SQL_NO_CACHE `reduction`
FROM `1vv7f_product_group_reduction_cache`
WHERE `id_product` = 3 AND `id_group` = 1 LIMIT 1 |
0.367
ms
|
0 |
|
|
/classes/GroupReduction.php:146
/classes/Product.php:3733 (getValueForProduct)
/classes/Product.php:3459 (priceCalculation)
/classes/Product.php:5431 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 454 |
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 `1vv7f_cart_product` cp
WHERE cp.`id_product_attribute` = 36
AND cp.`id_cart` = 0 AND cp.`id_product` = 18 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `1vv7f_cart_product` cp JOIN `1vv7f_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `1vv7f_product` pr ON p.`id_product_pack` = pr.`id_product`
WHERE cp.`id_product_attribute` = 36
AND cp.`id_cart` = 0 AND p.`id_product_item` = 18 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:1451
/classes/Product.php:4104 (getProductQuantity)
/classes/Product.php:5549 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 102 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `1vv7f_stock_available`
WHERE (id_product = 3) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.366
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:267
/classes/Product.php:4092 (getQuantityAvailableByProduct)
/classes/Product.php:5537 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 192 |
SELECT SQL_NO_CACHE COUNT(cp.`id_product`) AS total
FROM `1vv7f_product` p
INNER JOIN 1vv7f_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `1vv7f_category_product` cp ON p.`id_product` = cp.`id_product`
WHERE cp.`id_category` = 2 AND product_shop.`visibility` IN ("both", "catalog") AND product_shop.`active` = 1 LIMIT 1 |
0.366
ms
|
19 |
|
|
/classes/Category.php:1021
/src/Adapter/Category/CategoryProductSearchProvider.php:83 (getProducts)
/src/Adapter/Category/CategoryProductSearchProvider.php:119 (getProductsOrCount)
/modules/cartzillablocks/cartzillablocks.php:1191 (runQuery)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 244 |
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 `1vv7f_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 11 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `1vv7f_cart_product` cp JOIN `1vv7f_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `1vv7f_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` = 11 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.366
ms
|
0 |
|
|
/classes/Cart.php:1451
/classes/Product.php:4104 (getProductQuantity)
/classes/Product.php:5537 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 331 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product` a
LEFT JOIN `1vv7f_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 1) LIMIT 1 |
0.366
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:708 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:914 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:752 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getFlags)
/var/cache/dev/smarty/compile/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/eb/de/5e/ebde5ecd27395382175f5b6bf115854ef82509c8_2.file.products-list.tpl.php:82 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791814c6ad5_81113389)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/14/06/4a/14064a6b847b93777f7c4ec7d24b91d83428a930_2.module.cartzillablocksviewstemplatesblocksproductstrending.tpl.php:43 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918149f3f7_83891116)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 500 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product` a0
LEFT JOIN `1vv7f_product_lang` `a1` ON (a0.`id_product` = a1.`id_product`)
WHERE (a0.`id_product` = 1) AND (a1.`id_lang` = 1) AND (a1.`id_shop` = 1) |
0.366
ms
|
1 |
|
|
/classes/PrestaShopCollection.php:381
/classes/PrestaShopCollection.php:396 (getAll)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:737 (getFirst)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:678 (_getCollection)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:222 (formatFieldSelectorForFront)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:177 (formatForFront)
/modules/prettyblocks/classes/PrettyBlocksModel.php:424 (getFrontValue)
/modules/prettyblocks/classes/PrettyBlocksModel.php:288 (_formatStateForFront)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 11 |
SELECT SQL_NO_CACHE COUNT(DISTINCT l.id_lang) FROM `1vv7f_lang` l
JOIN 1vv7f_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.364
ms
|
1 |
|
|
/classes/Language.php:1204
/classes/Language.php:1508 (countActiveLanguages)
/classes/Dispatcher.php:505 (isMultiLanguageActivated)
/classes/Dispatcher.php:224 (setRequestUri)
/classes/Dispatcher.php:193 (__construct)
/index.php:78 (getInstance)
|
| 365 |
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `1vv7f_image` i
INNER JOIN 1vv7f_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 1
AND image_shop.`cover` = 1 LIMIT 1 |
0.363
ms
|
2 |
|
|
/classes/Product.php:3316
/var/cache/dev/smarty/compile/child_cartzilla/bd/21/55/bd21556623ed563b0ea7c7a099d166ff5e2b7556_2.module.cartzillablocksviewstemplatesblocksrelated.tpl.php:46 (getCover)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181568649_37248053)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 482 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product` a
LEFT JOIN `1vv7f_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `1vv7f_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.362
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:708 (__construct)
/src/Adapter/Image/ImageRetriever.php:68 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:941 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:137 (fillImages)
/src/Adapter/Presenter/Product/ProductPresenter.php:100 (__construct)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 93 |
SELECT SQL_NO_CACHE `reduction`
FROM `1vv7f_product_group_reduction_cache`
WHERE `id_product` = 8 AND `id_group` = 1 LIMIT 1 |
0.362
ms
|
0 |
|
|
/classes/GroupReduction.php:146
/classes/Product.php:3733 (getValueForProduct)
/classes/Product.php:3459 (priceCalculation)
/classes/Product.php:5431 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 295 |
SELECT SQL_NO_CACHE pa.*, product_attribute_shop.*
FROM `1vv7f_product_attribute` pa
INNER JOIN 1vv7f_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.361
ms
|
3 |
Yes
|
Yes
|
/classes/Product.php:2492
/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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/eb/dd/b2/ebddb2c357462ef8687cb2d5faeb2111369291a5_2.module.cartzillablocksviewstemplatesblocksblockhomecategoryreverse.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181307fe4_90975203)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 409 |
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 `1vv7f_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 19 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `1vv7f_cart_product` cp JOIN `1vv7f_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `1vv7f_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` = 19 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.361
ms
|
0 |
|
|
/classes/Cart.php:1451
/classes/Product.php:4104 (getProductQuantity)
/classes/Product.php:5537 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 315 |
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 `1vv7f_product_attribute_combination` pac
LEFT JOIN `1vv7f_attribute` a ON a.`id_attribute` = pac.`id_attribute`
LEFT JOIN `1vv7f_attribute_group` ag ON ag.`id_attribute_group` = a.`id_attribute_group`
LEFT JOIN `1vv7f_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 1)
LEFT JOIN `1vv7f_attribute_group_lang` agl ON (ag.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 1)
WHERE pac.id_product_attribute IN (24,25)
GROUP BY pac.id_product_attribute
ORDER BY pac.id_product_attribute |
0.360
ms
|
2 |
|
|
/classes/Product.php:2507
/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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/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/child_cartzilla/e4/96/b1/e496b18b87ade5e5d8fd9ee4adff3b90b8089022_2.module.cartzillablocksviewstemplatesblocksblockhomecategory.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918143dc09_64787304)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 423 |
SELECT SQL_NO_CACHE COUNT(cp.`id_product`) AS total
FROM `1vv7f_product` p
INNER JOIN 1vv7f_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `1vv7f_category_product` cp ON p.`id_product` = cp.`id_product`
WHERE cp.`id_category` = 2 AND product_shop.`visibility` IN ("both", "catalog") AND product_shop.`active` = 1 LIMIT 1 |
0.360
ms
|
19 |
|
|
/classes/Category.php:1021
/src/Adapter/Category/CategoryProductSearchProvider.php:83 (getProducts)
/src/Adapter/Category/CategoryProductSearchProvider.php:119 (getProductsOrCount)
/modules/cartzillablocks/cartzillablocks.php:1191 (runQuery)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 125 |
SELECT SQL_NO_CACHE `reduction`
FROM `1vv7f_product_group_reduction_cache`
WHERE `id_product` = 6 AND `id_group` = 1 LIMIT 1 |
0.359
ms
|
0 |
|
|
/classes/GroupReduction.php:146
/classes/Product.php:3733 (getValueForProduct)
/classes/Product.php:3459 (priceCalculation)
/classes/Product.php:5431 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 306 |
SELECT SQL_NO_CACHE pa.*, product_attribute_shop.*
FROM `1vv7f_product_attribute` pa
INNER JOIN 1vv7f_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` = 16
GROUP BY pa.`id_product_attribute`
ORDER BY pa.`id_product_attribute` |
0.359
ms
|
4 |
Yes
|
Yes
|
/classes/Product.php:2492
/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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/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/child_cartzilla/e4/96/b1/e496b18b87ade5e5d8fd9ee4adff3b90b8089022_2.module.cartzillablocksviewstemplatesblocksblockhomecategory.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918143dc09_64787304)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 371 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_prettyblocks` a0
WHERE (a0.`zone_name` = 'displayAfterBodyOpeningTag') AND (a0.`id_shop` = 1) AND (a0.`id_lang` = 1)
ORDER BY a0.`position` asc |
0.358
ms
|
80 |
Yes
|
|
/classes/PrestaShopCollection.php:381
/classes/PrestaShopCollection.php:426 (getAll)
/modules/prettyblocks/classes/PrettyBlocksModel.php:172 (getResults)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:194 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:50 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 84 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product_attribute_lang`
WHERE `id_product_attribute` = 24 |
0.358
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:81
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:5623 (__construct)
/classes/Product.php:5586 (computeUnitPriceRatio)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 246 |
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 `1vv7f_cart_product` cp
WHERE cp.`id_product_attribute` = 26
AND cp.`id_cart` = 0 AND cp.`id_product` = 11 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `1vv7f_cart_product` cp JOIN `1vv7f_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `1vv7f_product` pr ON p.`id_product_pack` = pr.`id_product`
WHERE cp.`id_product_attribute` = 26
AND cp.`id_cart` = 0 AND p.`id_product_item` = 11 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.357
ms
|
0 |
|
|
/classes/Cart.php:1451
/classes/Product.php:4104 (getProductQuantity)
/classes/Product.php:5549 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 438 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product` a
LEFT JOIN `1vv7f_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `1vv7f_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 2) AND (b.`id_shop` = 1) LIMIT 1 |
0.357
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:708 (__construct)
/src/Adapter/Image/ImageRetriever.php:68 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:941 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:137 (fillImages)
/src/Adapter/Presenter/Product/ProductPresenter.php:100 (__construct)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 28 |
SELECT SQL_NO_CACHE id_shop
FROM `1vv7f_currency_shop`
WHERE `id_currency` = 1
AND id_shop = 1 LIMIT 1 |
0.356
ms
|
1 |
|
|
/classes/ObjectModel.php:1570
/classes/Tools.php:689 (isAssociatedToShop)
/classes/controller/FrontController.php:331 (setCurrency)
/tools/profiling/Controller.php:46 (init)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 285 |
SELECT SQL_NO_CACHE pa.*, product_attribute_shop.*
FROM `1vv7f_product_attribute` pa
INNER JOIN 1vv7f_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.355
ms
|
3 |
Yes
|
Yes
|
/classes/Product.php:2492
/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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/eb/dd/b2/ebddb2c357462ef8687cb2d5faeb2111369291a5_2.module.cartzillablocksviewstemplatesblocksblockhomecategoryreverse.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181307fe4_90975203)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 435 |
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 `1vv7f_attribute` a
LEFT JOIN `1vv7f_attribute_lang` al
ON (al.`id_attribute` = a.`id_attribute` AND al.`id_lang` = 1)
LEFT JOIN `1vv7f_product_attribute_combination` pac
ON (pac.`id_attribute` = a.`id_attribute`)
LEFT JOIN `1vv7f_product_attribute` pa
ON (pa.`id_product_attribute` = pac.`id_product_attribute`)
INNER JOIN 1vv7f_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 `1vv7f_product_attribute_lang` pal
ON (pal.`id_product_attribute` = pac.`id_product_attribute` AND pal.`id_lang` = 1)
LEFT JOIN `1vv7f_attribute_group_lang` agl
ON (a.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 1)
WHERE pa.`id_product` = 2
AND pac.`id_product_attribute` = 9
AND agl.`id_lang` = 1 |
0.354
ms
|
1 |
|
|
/classes/Product.php:7163
/classes/Product.php:5568 (getAttributesParams)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 574 |
SELECT SQL_NO_CACHE *
FROM 1vv7f_meta m
LEFT JOIN 1vv7f_meta_lang ml ON m.id_meta = ml.id_meta
WHERE (
m.page = "new-products"
OR m.page = "newproducts"
)
AND ml.id_lang = 1
AND ml.id_shop = 1 LIMIT 1 |
0.354
ms
|
2 |
|
|
/classes/Meta.php:181
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:166 (getMetaByPage)
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:104 (makeProductLinks)
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:66 (makeLinks)
/modules/ps_linklist/ps_linklist.php:291 (present)
/modules/ps_linklist/ps_linklist.php:277 (getWidgetVariables)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/b4/5e/9e/b45e9edb41c99cc854ada6c3a7cbf8c4fd389496_2.file.footer.tpl.php:29 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791819e5500_39099131)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:556 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:141 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 456 |
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 `1vv7f_attribute` a
LEFT JOIN `1vv7f_attribute_lang` al
ON (al.`id_attribute` = a.`id_attribute` AND al.`id_lang` = 1)
LEFT JOIN `1vv7f_product_attribute_combination` pac
ON (pac.`id_attribute` = a.`id_attribute`)
LEFT JOIN `1vv7f_product_attribute` pa
ON (pa.`id_product_attribute` = pac.`id_product_attribute`)
INNER JOIN 1vv7f_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 `1vv7f_product_attribute_lang` pal
ON (pal.`id_product_attribute` = pac.`id_product_attribute` AND pal.`id_lang` = 1)
LEFT JOIN `1vv7f_attribute_group_lang` agl
ON (a.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 1)
WHERE pa.`id_product` = 18
AND pac.`id_product_attribute` = 36
AND agl.`id_lang` = 1 |
0.354
ms
|
1 |
|
|
/classes/Product.php:7163
/classes/Product.php:5568 (getAttributesParams)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 375 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_prettyblocks` a0
WHERE (a0.`zone_name` = 'displayNavMiddle') AND (a0.`id_shop` = 1) AND (a0.`id_lang` = 1)
ORDER BY a0.`position` asc |
0.353
ms
|
80 |
Yes
|
|
/classes/PrestaShopCollection.php:381
/classes/PrestaShopCollection.php:426 (getAll)
/modules/prettyblocks/classes/PrettyBlocksModel.php:172 (getResults)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/d8/99/4f/d8994f02c8612f9f0b5efe3627ca0d7ebfc76c49_2.file.header.tpl.php:82 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/d8/99/4f/d8994f02c8612f9f0b5efe3627ca0d7ebfc76c49_2.file.header.tpl.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791816ef929_48790264)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:230 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:61 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 553 |
SELECT SQL_NO_CACHE `id_customization_field`, `type`
FROM `1vv7f_customization_field`
WHERE `id_product` = 6
AND `required` = 1 AND `is_deleted` = 0 |
0.353
ms
|
1 |
|
|
/classes/Product.php:6359
/src/Adapter/Presenter/Product/ProductLazyArray.php:193 (getRequiredCustomizableFieldsStatic)
/src/Adapter/Presenter/Product/ProductLazyArray.php:1185 (getCustomizationRequired)
/src/Adapter/Presenter/Product/ProductLazyArray.php:259 (shouldEnableAddToCartButton)
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getAddToCartUrl)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:99 (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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/eb/de/5e/ebde5ecd27395382175f5b6bf115854ef82509c8_2.file.products-list.tpl.php:82 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791814c6ad5_81113389)
/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/child_cartzilla/14/06/4a/14064a6b847b93777f7c4ec7d24b91d83428a930_2.module.cartzillablocksviewstemplatesblocksproductstrending.tpl.php:43 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918149f3f7_83891116)
/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/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 251 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product` a
LEFT JOIN `1vv7f_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `1vv7f_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 11) AND (b.`id_shop` = 1) LIMIT 1 |
0.351
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:708 (__construct)
/src/Adapter/Image/ImageRetriever.php:68 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:941 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:137 (fillImages)
/src/Adapter/Presenter/Product/ProductPresenter.php:100 (__construct)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 301 |
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 `1vv7f_product_attribute_combination` pac
LEFT JOIN `1vv7f_attribute` a ON a.`id_attribute` = pac.`id_attribute`
LEFT JOIN `1vv7f_attribute_group` ag ON ag.`id_attribute_group` = a.`id_attribute_group`
LEFT JOIN `1vv7f_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 1)
LEFT JOIN `1vv7f_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.351
ms
|
3 |
|
|
/classes/Product.php:2507
/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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/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/child_cartzilla/e4/96/b1/e496b18b87ade5e5d8fd9ee4adff3b90b8089022_2.module.cartzillablocksviewstemplatesblocksblockhomecategory.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918143dc09_64787304)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 163 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product` a
LEFT JOIN `1vv7f_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `1vv7f_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 16) AND (b.`id_shop` = 1) LIMIT 1 |
0.350
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:708 (__construct)
/src/Adapter/Image/ImageRetriever.php:68 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:941 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:137 (fillImages)
/src/Adapter/Presenter/Product/ProductPresenter.php:100 (__construct)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 248 |
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 `1vv7f_attribute` a
LEFT JOIN `1vv7f_attribute_lang` al
ON (al.`id_attribute` = a.`id_attribute` AND al.`id_lang` = 1)
LEFT JOIN `1vv7f_product_attribute_combination` pac
ON (pac.`id_attribute` = a.`id_attribute`)
LEFT JOIN `1vv7f_product_attribute` pa
ON (pa.`id_product_attribute` = pac.`id_product_attribute`)
INNER JOIN 1vv7f_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 `1vv7f_product_attribute_lang` pal
ON (pal.`id_product_attribute` = pac.`id_product_attribute` AND pal.`id_lang` = 1)
LEFT JOIN `1vv7f_attribute_group_lang` agl
ON (a.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 1)
WHERE pa.`id_product` = 11
AND pac.`id_product_attribute` = 26
AND agl.`id_lang` = 1 |
0.350
ms
|
1 |
|
|
/classes/Product.php:7163
/classes/Product.php:5568 (getAttributesParams)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 320 |
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 `1vv7f_product_attribute_combination` pac
LEFT JOIN `1vv7f_attribute` a ON a.`id_attribute` = pac.`id_attribute`
LEFT JOIN `1vv7f_attribute_group` ag ON ag.`id_attribute_group` = a.`id_attribute_group`
LEFT JOIN `1vv7f_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 1)
LEFT JOIN `1vv7f_attribute_group_lang` agl ON (ag.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 1)
WHERE pac.id_product_attribute IN (32,33,34,35)
GROUP BY pac.id_product_attribute
ORDER BY pac.id_product_attribute |
0.350
ms
|
4 |
|
|
/classes/Product.php:2507
/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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/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/child_cartzilla/e4/96/b1/e496b18b87ade5e5d8fd9ee4adff3b90b8089022_2.module.cartzillablocksviewstemplatesblocksblockhomecategory.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918143dc09_64787304)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 154 |
SELECT SQL_NO_CACHE `reduction`
FROM `1vv7f_product_group_reduction_cache`
WHERE `id_product` = 16 AND `id_group` = 1 LIMIT 1 |
0.349
ms
|
0 |
|
|
/classes/GroupReduction.php:146
/classes/Product.php:3733 (getValueForProduct)
/classes/Product.php:3459 (priceCalculation)
/classes/Product.php:5431 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 38 |
SELECT SQL_NO_CACHE * FROM `1vv7f_image_type` WHERE 1 AND `products` = 1 ORDER BY `width` DESC, `height` DESC, `name`ASC |
0.348
ms
|
8 |
Yes
|
|
/classes/ImageType.php:109
/src/Adapter/Image/ImageRetriever.php:369 (getImagesTypes)
/classes/controller/FrontController.php:1529 (getNoPictureImage)
/classes/controller/FrontController.php:1681 (getTemplateVarUrls)
/classes/controller/FrontController.php:522 (getTemplateVarShop)
/classes/controller/FrontController.php:585 (assignGeneralPurposeVariables)
/controllers/front/IndexController.php:38 (initContent)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 160 |
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 `1vv7f_attribute` a
LEFT JOIN `1vv7f_attribute_lang` al
ON (al.`id_attribute` = a.`id_attribute` AND al.`id_lang` = 1)
LEFT JOIN `1vv7f_product_attribute_combination` pac
ON (pac.`id_attribute` = a.`id_attribute`)
LEFT JOIN `1vv7f_product_attribute` pa
ON (pa.`id_product_attribute` = pac.`id_product_attribute`)
INNER JOIN 1vv7f_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 `1vv7f_product_attribute_lang` pal
ON (pal.`id_product_attribute` = pac.`id_product_attribute` AND pal.`id_lang` = 1)
LEFT JOIN `1vv7f_attribute_group_lang` agl
ON (a.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 1)
WHERE pa.`id_product` = 16
AND pac.`id_product_attribute` = 28
AND agl.`id_lang` = 1 |
0.348
ms
|
1 |
|
|
/classes/Product.php:7163
/classes/Product.php:5568 (getAttributesParams)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 257 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `1vv7f_image` i
INNER JOIN 1vv7f_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `1vv7f_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 8
ORDER BY `position` |
0.348
ms
|
1 |
Yes
|
|
/classes/Product.php:3285
/src/Adapter/Image/ImageRetriever.php:75 (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)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 286 |
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 `1vv7f_product_attribute_combination` pac
LEFT JOIN `1vv7f_attribute` a ON a.`id_attribute` = pac.`id_attribute`
LEFT JOIN `1vv7f_attribute_group` ag ON ag.`id_attribute_group` = a.`id_attribute_group`
LEFT JOIN `1vv7f_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 1)
LEFT JOIN `1vv7f_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.347
ms
|
3 |
|
|
/classes/Product.php:2507
/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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/eb/dd/b2/ebddb2c357462ef8687cb2d5faeb2111369291a5_2.module.cartzillablocksviewstemplatesblocksblockhomecategoryreverse.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181307fe4_90975203)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 326 |
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 `1vv7f_product_attribute_combination` pac
LEFT JOIN `1vv7f_attribute` a ON a.`id_attribute` = pac.`id_attribute`
LEFT JOIN `1vv7f_attribute_group` ag ON ag.`id_attribute_group` = a.`id_attribute_group`
LEFT JOIN `1vv7f_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 1)
LEFT JOIN `1vv7f_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.347
ms
|
3 |
|
|
/classes/Product.php:2507
/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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/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/child_cartzilla/e4/96/b1/e496b18b87ade5e5d8fd9ee4adff3b90b8089022_2.module.cartzillablocksviewstemplatesblocksblockhomecategory.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918143dc09_64787304)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 541 |
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 `1vv7f_product_attribute_combination` pac
LEFT JOIN `1vv7f_attribute` a ON a.`id_attribute` = pac.`id_attribute`
LEFT JOIN `1vv7f_attribute_group` ag ON ag.`id_attribute_group` = a.`id_attribute_group`
LEFT JOIN `1vv7f_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 1)
LEFT JOIN `1vv7f_attribute_group_lang` agl ON (ag.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 1)
WHERE pac.id_product_attribute IN (36,37,38,39)
GROUP BY pac.id_product_attribute
ORDER BY pac.id_product_attribute |
0.346
ms
|
4 |
|
|
/classes/Product.php:2507
/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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/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/child_cartzilla/e4/96/b1/e496b18b87ade5e5d8fd9ee4adff3b90b8089022_2.module.cartzillablocksviewstemplatesblocksblockhomecategory.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918143dc09_64787304)
/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/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 36 |
SELECT SQL_NO_CACHE * FROM `1vv7f_image_type` WHERE 1 AND `manufacturers` = 1 ORDER BY `width` DESC, `height` DESC, `name`ASC |
0.344
ms
|
8 |
Yes
|
|
/classes/ImageType.php:109
/src/Adapter/Image/ImageRetriever.php:369 (getImagesTypes)
/classes/controller/FrontController.php:1529 (getNoPictureImage)
/classes/controller/FrontController.php:1681 (getTemplateVarUrls)
/classes/controller/FrontController.php:522 (getTemplateVarShop)
/classes/controller/FrontController.php:585 (assignGeneralPurposeVariables)
/controllers/front/IndexController.php:38 (initContent)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 109 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product_attribute_lang`
WHERE `id_product_attribute` = 13 |
0.344
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:81
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:5623 (__construct)
/classes/Product.php:5586 (computeUnitPriceRatio)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 39 |
SELECT SQL_NO_CACHE * FROM `1vv7f_image_type` WHERE 1 AND `stores` = 1 ORDER BY `width` DESC, `height` DESC, `name`ASC |
0.344
ms
|
8 |
Yes
|
|
/classes/ImageType.php:109
/src/Adapter/Image/ImageRetriever.php:369 (getImagesTypes)
/classes/controller/FrontController.php:1529 (getNoPictureImage)
/classes/controller/FrontController.php:1681 (getTemplateVarUrls)
/classes/controller/FrontController.php:522 (getTemplateVarShop)
/classes/controller/FrontController.php:585 (assignGeneralPurposeVariables)
/controllers/front/IndexController.php:38 (initContent)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 359 |
SELECT SQL_NO_CACHE pa.*, product_attribute_shop.*
FROM `1vv7f_product_attribute` pa
INNER JOIN 1vv7f_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` = 11
GROUP BY pa.`id_product_attribute`
ORDER BY pa.`id_product_attribute` |
0.344
ms
|
2 |
Yes
|
Yes
|
/classes/Product.php:2492
/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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/eb/de/5e/ebde5ecd27395382175f5b6bf115854ef82509c8_2.file.products-list.tpl.php:82 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791814c6ad5_81113389)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/14/06/4a/14064a6b847b93777f7c4ec7d24b91d83428a930_2.module.cartzillablocksviewstemplatesblocksproductstrending.tpl.php:43 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918149f3f7_83891116)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 573 |
SELECT SQL_NO_CACHE *
FROM 1vv7f_meta m
LEFT JOIN 1vv7f_meta_lang ml ON m.id_meta = ml.id_meta
WHERE (
m.page = "prices-drop"
OR m.page = "pricesdrop"
)
AND ml.id_lang = 1
AND ml.id_shop = 1 LIMIT 1 |
0.344
ms
|
2 |
|
|
/classes/Meta.php:181
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:166 (getMetaByPage)
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:104 (makeProductLinks)
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:66 (makeLinks)
/modules/ps_linklist/ps_linklist.php:291 (present)
/modules/ps_linklist/ps_linklist.php:277 (getWidgetVariables)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/b4/5e/9e/b45e9edb41c99cc854ada6c3a7cbf8c4fd389496_2.file.footer.tpl.php:29 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791819e5500_39099131)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:556 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:141 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 519 |
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 `1vv7f_product_attribute_combination` pac
LEFT JOIN `1vv7f_attribute` a ON a.`id_attribute` = pac.`id_attribute`
LEFT JOIN `1vv7f_attribute_group` ag ON ag.`id_attribute_group` = a.`id_attribute_group`
LEFT JOIN `1vv7f_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 1)
LEFT JOIN `1vv7f_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.343
ms
|
3 |
|
|
/classes/Product.php:2507
/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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/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/child_cartzilla/eb/dd/b2/ebddb2c357462ef8687cb2d5faeb2111369291a5_2.module.cartzillablocksviewstemplatesblocksblockhomecategoryreverse.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181307fe4_90975203)
/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/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 45 |
SELECT SQL_NO_CACHE settings FROM 1vv7f_prettyblocks_settings WHERE theme_name = "child_cartzilla" AND id_shop = 1 LIMIT 1 |
0.342
ms
|
1 |
|
|
/modules/prettyblocks/classes/PrettyBlocksSettingsModel.php:51
/modules/prettyblocks/classes/PrettyBlocksModel.php:1079 (getSettings)
/modules/prettyblocks/prettyblocks.php:330 (getThemeSettings)
/classes/Hook.php:1237 (hookActionFrontControllerSetVariables)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/classes/controller/FrontController.php:536 (exec)
/classes/controller/FrontController.php:585 (assignGeneralPurposeVariables)
/controllers/front/IndexController.php:38 (initContent)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 293 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product` a
LEFT JOIN `1vv7f_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 4) LIMIT 1 |
0.342
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:708 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:914 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:752 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getFlags)
/var/cache/dev/smarty/compile/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/eb/dd/b2/ebddb2c357462ef8687cb2d5faeb2111369291a5_2.module.cartzillablocksviewstemplatesblocksblockhomecategoryreverse.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181307fe4_90975203)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 595 |
SELECT SQL_NO_CACHE lb.`id_link_block`
FROM 1vv7f_link_block lb
INNER JOIN 1vv7f_link_block_shop lbs ON lbs.`id_link_block` = lb.`id_link_block`
WHERE lb. `id_hook` = 50 AND lbs.`id_shop` = 1
ORDER by lbs.`position` |
0.340
ms
|
2 |
Yes
|
|
/modules/ps_linklist/src/LegacyLinkBlockRepository.php:87
/modules/ps_linklist/ps_linklist.php:287 (getByIdHook)
/modules/ps_linklist/ps_linklist.php:277 (getWidgetVariables)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/b4/5e/9e/b45e9edb41c99cc854ada6c3a7cbf8c4fd389496_2.file.footer.tpl.php:39 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791819e5500_39099131)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:556 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:141 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 370 |
SELECT SQL_NO_CACHE 1 FROM 1vv7f_cart_product cp INNER JOIN 1vv7f_product p
ON (p.id_product = cp.id_product) INNER JOIN 1vv7f_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.339
ms
|
1 |
|
|
/classes/Cart.php:4051
/classes/Cart.php:4032 (hasProducts)
/classes/Cart.php:2032 (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/child_cartzillalayouts_layout_default_tpl/06/55/14/065514b7ef023db08064371fb1b66733529e14dc_2.file.javascript.tpl.php:67 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181657c81_93412019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/44/2b/0b/442b0bceb3c85be3b401cfb7c3dbbb3605063a05_2.file.head.tpl.php:308 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/44/2b/0b/442b0bceb3c85be3b401cfb7c3dbbb3605063a05_2.file.head.tpl.php:60 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ebff3_69296373)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:176 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:40 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 603 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_prettyblocks` a0
WHERE (a0.`zone_name` = 'displayFooterRight') AND (a0.`id_shop` = 1) AND (a0.`id_lang` = 1)
ORDER BY a0.`position` asc |
0.339
ms
|
80 |
Yes
|
|
/classes/PrestaShopCollection.php:381
/classes/PrestaShopCollection.php:426 (getAll)
/modules/prettyblocks/classes/PrettyBlocksModel.php:172 (getResults)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/b4/5e/9e/b45e9edb41c99cc854ada6c3a7cbf8c4fd389496_2.file.footer.tpl.php:43 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791819e5500_39099131)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:556 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:141 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 594 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_prettyblocks` a0
WHERE (a0.`zone_name` = 'displayFooterRight') AND (a0.`id_shop` = 1) AND (a0.`id_lang` = 1)
ORDER BY a0.`position` asc |
0.339
ms
|
80 |
Yes
|
|
/classes/PrestaShopCollection.php:381
/classes/PrestaShopCollection.php:426 (getAll)
/modules/prettyblocks/classes/PrettyBlocksModel.php:172 (getResults)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/b4/5e/9e/b45e9edb41c99cc854ada6c3a7cbf8c4fd389496_2.file.footer.tpl.php:32 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791819e5500_39099131)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:556 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:141 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 604 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_prettyblocks` a0
WHERE (a0.`zone_name` = 'footerFull') AND (a0.`id_shop` = 1) AND (a0.`id_lang` = 1)
ORDER BY a0.`position` asc |
0.339
ms
|
80 |
Yes
|
|
/classes/PrestaShopCollection.php:381
/classes/PrestaShopCollection.php:426 (getAll)
/modules/prettyblocks/classes/PrettyBlocksModel.php:172 (getResults)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/b4/5e/9e/b45e9edb41c99cc854ada6c3a7cbf8c4fd389496_2.file.footer.tpl.php:47 (renderZone)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791819e5500_39099131)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:556 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:141 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 131 |
SELECT SQL_NO_CACHE 1 FROM `1vv7f_specific_price` WHERE id_product = 4 LIMIT 1 |
0.337
ms
|
1 |
|
|
/classes/SpecificPrice.php:432
/classes/SpecificPrice.php:520 (couldHaveSpecificPrice)
/classes/Product.php:3569 (getSpecificPrice)
/classes/Product.php:3459 (priceCalculation)
/classes/Product.php:5431 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 307 |
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 `1vv7f_product_attribute_combination` pac
LEFT JOIN `1vv7f_attribute` a ON a.`id_attribute` = pac.`id_attribute`
LEFT JOIN `1vv7f_attribute_group` ag ON ag.`id_attribute_group` = a.`id_attribute_group`
LEFT JOIN `1vv7f_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 1)
LEFT JOIN `1vv7f_attribute_group_lang` agl ON (ag.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 1)
WHERE pac.id_product_attribute IN (28,29,30,31)
GROUP BY pac.id_product_attribute
ORDER BY pac.id_product_attribute |
0.334
ms
|
4 |
|
|
/classes/Product.php:2507
/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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/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/child_cartzilla/e4/96/b1/e496b18b87ade5e5d8fd9ee4adff3b90b8089022_2.module.cartzillablocksviewstemplatesblocksblockhomecategory.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918143dc09_64787304)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 115 |
SELECT SQL_NO_CACHE 1 FROM `1vv7f_specific_price` WHERE id_product = 14 LIMIT 1 |
0.333
ms
|
1 |
|
|
/classes/SpecificPrice.php:432
/classes/SpecificPrice.php:520 (couldHaveSpecificPrice)
/classes/Product.php:3569 (getSpecificPrice)
/classes/Product.php:3459 (priceCalculation)
/classes/Product.php:5431 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 233 |
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 `1vv7f_attribute` a
LEFT JOIN `1vv7f_attribute_lang` al
ON (al.`id_attribute` = a.`id_attribute` AND al.`id_lang` = 1)
LEFT JOIN `1vv7f_product_attribute_combination` pac
ON (pac.`id_attribute` = a.`id_attribute`)
LEFT JOIN `1vv7f_product_attribute` pa
ON (pa.`id_product_attribute` = pac.`id_product_attribute`)
INNER JOIN 1vv7f_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 `1vv7f_product_attribute_lang` pal
ON (pal.`id_product_attribute` = pac.`id_product_attribute` AND pal.`id_lang` = 1)
LEFT JOIN `1vv7f_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.333
ms
|
1 |
|
|
/classes/Product.php:7163
/classes/Product.php:5568 (getAttributesParams)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 329 |
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 `1vv7f_product_attribute_combination` pac
LEFT JOIN `1vv7f_attribute` a ON a.`id_attribute` = pac.`id_attribute`
LEFT JOIN `1vv7f_attribute_group` ag ON ag.`id_attribute_group` = a.`id_attribute_group`
LEFT JOIN `1vv7f_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 1)
LEFT JOIN `1vv7f_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.332
ms
|
3 |
|
|
/classes/Product.php:2507
/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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/eb/de/5e/ebde5ecd27395382175f5b6bf115854ef82509c8_2.file.products-list.tpl.php:82 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791814c6ad5_81113389)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/14/06/4a/14064a6b847b93777f7c4ec7d24b91d83428a930_2.module.cartzillablocksviewstemplatesblocksproductstrending.tpl.php:43 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918149f3f7_83891116)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 466 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_category` a0
LEFT JOIN `1vv7f_category_lang` `a1` ON (a0.`id_category` = a1.`id_category`)
WHERE (a0.`id_category` = 2) AND (a1.`id_lang` = 1) AND (a1.`id_shop` = 1) |
0.332
ms
|
1 |
|
|
/classes/PrestaShopCollection.php:381
/classes/PrestaShopCollection.php:396 (getAll)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:737 (getFirst)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:678 (_getCollection)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:222 (formatFieldSelectorForFront)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:177 (formatForFront)
/modules/prettyblocks/classes/PrettyBlocksModel.php:722 (getFrontValue)
/modules/prettyblocks/classes/PrettyBlocksModel.php:254 (_formatGetConfig)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 118 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `1vv7f_stock_available`
WHERE (id_product = 14) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.331
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:267
/classes/Product.php:4092 (getQuantityAvailableByProduct)
/classes/Product.php:5537 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 134 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `1vv7f_stock_available`
WHERE (id_product = 4) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.331
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:267
/classes/Product.php:4092 (getQuantityAvailableByProduct)
/classes/Product.php:5537 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 270 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_category` a
LEFT JOIN `1vv7f_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 1
LEFT JOIN `1vv7f_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.331
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:179 (__construct)
/classes/Link.php:402 (__construct)
/classes/Link.php:458 (getCategoryObject)
/var/cache/dev/smarty/compile/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:43 (getCategoryLink)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/eb/dd/b2/ebddb2c357462ef8687cb2d5faeb2111369291a5_2.module.cartzillablocksviewstemplatesblocksblockhomecategoryreverse.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181307fe4_90975203)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 42 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_country` a
LEFT JOIN `1vv7f_country_shop` `c` ON a.`id_country` = c.`id_country` AND c.`id_shop` = 1
WHERE (a.`id_country` = 8) LIMIT 1 |
0.330
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/AddressFormat.php:402 (__construct)
/classes/AddressFormat.php:437 (getFormattedAddressFieldsValues)
/classes/controller/FrontController.php:1701 (generateAddress)
/classes/controller/FrontController.php:522 (getTemplateVarShop)
/classes/controller/FrontController.php:585 (assignGeneralPurposeVariables)
/controllers/front/IndexController.php:38 (initContent)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 465 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `1vv7f_image` i
INNER JOIN 1vv7f_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `1vv7f_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 8
ORDER BY `position` |
0.330
ms
|
1 |
Yes
|
|
/classes/Product.php:3285
/src/Adapter/Image/ImageRetriever.php:75 (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)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 351 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product_lang`
WHERE `id_product` = 5 AND `id_shop` = 1 |
0.328
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:81
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:708 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:914 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:752 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getFlags)
/var/cache/dev/smarty/compile/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/eb/de/5e/ebde5ecd27395382175f5b6bf115854ef82509c8_2.file.products-list.tpl.php:82 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791814c6ad5_81113389)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/14/06/4a/14064a6b847b93777f7c4ec7d24b91d83428a930_2.module.cartzillablocksviewstemplatesblocksproductstrending.tpl.php:43 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918149f3f7_83891116)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 380 |
SELECT SQL_NO_CACHE COUNT(DISTINCT c.id_currency) FROM `1vv7f_currency` c
LEFT JOIN 1vv7f_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.328
ms
|
1 |
|
|
/classes/Currency.php:1120
/classes/Currency.php:1139 (countActiveCurrencies)
/modules/ps_currencyselector/ps_currencyselector.php:123 (isMultiCurrencyActivated)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/d8/99/4f/d8994f02c8612f9f0b5efe3627ca0d7ebfc76c49_2.file.header.tpl.php:85 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/d8/99/4f/d8994f02c8612f9f0b5efe3627ca0d7ebfc76c49_2.file.header.tpl.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791816ef929_48790264)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:230 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:61 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 281 |
SELECT SQL_NO_CACHE name FROM 1vv7f_category_lang
WHERE id_shop = 1 AND id_lang = 1 AND id_category = 8 LIMIT 1 |
0.328
ms
|
1 |
|
|
/src/Adapter/Presenter/Product/ProductLazyArray.php:624
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getCategoryName)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:68 (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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/eb/dd/b2/ebddb2c357462ef8687cb2d5faeb2111369291a5_2.module.cartzillablocksviewstemplatesblocksblockhomecategoryreverse.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181307fe4_90975203)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 575 |
SELECT SQL_NO_CACHE *
FROM 1vv7f_meta m
LEFT JOIN 1vv7f_meta_lang ml ON m.id_meta = ml.id_meta
WHERE (
m.page = "best-sales"
OR m.page = "bestsales"
)
AND ml.id_lang = 1
AND ml.id_shop = 1 LIMIT 1 |
0.327
ms
|
2 |
|
|
/classes/Meta.php:181
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:166 (getMetaByPage)
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:104 (makeProductLinks)
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:66 (makeLinks)
/modules/ps_linklist/ps_linklist.php:291 (present)
/modules/ps_linklist/ps_linklist.php:277 (getWidgetVariables)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/b4/5e/9e/b45e9edb41c99cc854ada6c3a7cbf8c4fd389496_2.file.footer.tpl.php:29 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791819e5500_39099131)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:556 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:141 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 190 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_category` a0
LEFT JOIN `1vv7f_category_lang` `a1` ON (a0.`id_category` = a1.`id_category`)
WHERE (a0.`id_category` = 2) AND (a1.`id_lang` = 1) AND (a1.`id_shop` = 1) |
0.324
ms
|
1 |
|
|
/classes/PrestaShopCollection.php:381
/classes/PrestaShopCollection.php:396 (getAll)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:737 (getFirst)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:678 (_getCollection)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:222 (formatFieldSelectorForFront)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:177 (formatForFront)
/modules/prettyblocks/classes/PrettyBlocksModel.php:722 (getFrontValue)
/modules/prettyblocks/classes/PrettyBlocksModel.php:254 (_formatGetConfig)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 236 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product` a
LEFT JOIN `1vv7f_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `1vv7f_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.323
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:708 (__construct)
/src/Adapter/Image/ImageRetriever.php:68 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:941 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:137 (fillImages)
/src/Adapter/Presenter/Product/ProductPresenter.php:100 (__construct)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 30 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_group_lang`
WHERE `id_group` = 1 |
0.323
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:81
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Group.php:81 (__construct)
/classes/Group.php:393 (__construct)
/classes/Cart.php:272 (getCurrent)
/classes/Cart.php:238 (setTaxCalculationMethod)
/classes/controller/FrontController.php:430 (__construct)
/tools/profiling/Controller.php:46 (init)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 40 |
SELECT SQL_NO_CACHE format
FROM `1vv7f_address_format`
WHERE `id_country` = 8 LIMIT 1 |
0.322
ms
|
1 |
|
|
/classes/AddressFormat.php:649
/classes/AddressFormat.php:628 (getFormatDB)
/classes/AddressFormat.php:613 (getFormat)
/classes/AddressFormat.php:560 (getAddressCountryFormat)
/classes/AddressFormat.php:436 (getOrderedAddressFields)
/classes/controller/FrontController.php:1701 (generateAddress)
/classes/controller/FrontController.php:522 (getTemplateVarShop)
/classes/controller/FrontController.php:585 (assignGeneralPurposeVariables)
/controllers/front/IndexController.php:38 (initContent)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 141 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product_attribute_lang`
WHERE `id_product_attribute` = 16 |
0.322
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:81
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:5623 (__construct)
/classes/Product.php:5586 (computeUnitPriceRatio)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 360 |
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 `1vv7f_product_attribute_combination` pac
LEFT JOIN `1vv7f_attribute` a ON a.`id_attribute` = pac.`id_attribute`
LEFT JOIN `1vv7f_attribute_group` ag ON ag.`id_attribute_group` = a.`id_attribute_group`
LEFT JOIN `1vv7f_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 1)
LEFT JOIN `1vv7f_attribute_group_lang` agl ON (ag.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 1)
WHERE pac.id_product_attribute IN (26,27)
GROUP BY pac.id_product_attribute
ORDER BY pac.id_product_attribute |
0.322
ms
|
2 |
|
|
/classes/Product.php:2507
/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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/eb/de/5e/ebde5ecd27395382175f5b6bf115854ef82509c8_2.file.products-list.tpl.php:82 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791814c6ad5_81113389)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/14/06/4a/14064a6b847b93777f7c4ec7d24b91d83428a930_2.module.cartzillablocksviewstemplatesblocksproductstrending.tpl.php:43 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918149f3f7_83891116)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 133 |
SELECT SQL_NO_CACHE `reduction`
FROM `1vv7f_product_group_reduction_cache`
WHERE `id_product` = 4 AND `id_group` = 1 LIMIT 1 |
0.322
ms
|
0 |
|
|
/classes/GroupReduction.php:146
/classes/Product.php:3733 (getValueForProduct)
/classes/Product.php:3459 (priceCalculation)
/classes/Product.php:5431 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 392 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_category` a0
LEFT JOIN `1vv7f_category_lang` `a1` ON (a0.`id_category` = a1.`id_category`)
WHERE (a0.`id_category` = 2) AND (a1.`id_lang` = 1) AND (a1.`id_shop` = 1) |
0.322
ms
|
1 |
|
|
/classes/PrestaShopCollection.php:381
/classes/PrestaShopCollection.php:396 (getAll)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:737 (getFirst)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:678 (_getCollection)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:222 (formatFieldSelectorForFront)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:177 (formatForFront)
/modules/prettyblocks/classes/PrettyBlocksModel.php:722 (getFrontValue)
/modules/prettyblocks/classes/PrettyBlocksModel.php:254 (_formatGetConfig)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 63 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_category` a0
LEFT JOIN `1vv7f_category_lang` `a1` ON (a0.`id_category` = a1.`id_category`)
WHERE (a0.`id_category` = 2) AND (a1.`id_lang` = 1) AND (a1.`id_shop` = 1) |
0.321
ms
|
1 |
|
|
/classes/PrestaShopCollection.php:381
/classes/PrestaShopCollection.php:396 (getAll)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:737 (getFirst)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:678 (_getCollection)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:222 (formatFieldSelectorForFront)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:177 (formatForFront)
/modules/prettyblocks/classes/PrettyBlocksModel.php:722 (getFrontValue)
/modules/prettyblocks/classes/PrettyBlocksModel.php:254 (_formatGetConfig)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 215 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product` a
LEFT JOIN `1vv7f_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `1vv7f_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 1) AND (b.`id_shop` = 1) LIMIT 1 |
0.321
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:708 (__construct)
/src/Adapter/Image/ImageRetriever.php:68 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:941 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:137 (fillImages)
/src/Adapter/Presenter/Product/ProductPresenter.php:100 (__construct)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 532 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_category` a
LEFT JOIN `1vv7f_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 1
LEFT JOIN `1vv7f_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 5) AND (b.`id_shop` = 1) LIMIT 1 |
0.321
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:179 (__construct)
/classes/Link.php:402 (__construct)
/classes/Link.php:458 (getCategoryObject)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:67 (getCategoryLink)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/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/child_cartzilla/e4/96/b1/e496b18b87ade5e5d8fd9ee4adff3b90b8089022_2.module.cartzillablocksviewstemplatesblocksblockhomecategory.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918143dc09_64787304)
/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/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 346 |
SELECT SQL_NO_CACHE `id_customization_field`, `type`
FROM `1vv7f_customization_field`
WHERE `id_product` = 6
AND `required` = 1 AND `is_deleted` = 0 |
0.320
ms
|
1 |
|
|
/classes/Product.php:6359
/src/Adapter/Presenter/Product/ProductLazyArray.php:193 (getRequiredCustomizableFieldsStatic)
/src/Adapter/Presenter/Product/ProductLazyArray.php:1185 (getCustomizationRequired)
/src/Adapter/Presenter/Product/ProductLazyArray.php:259 (shouldEnableAddToCartButton)
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getAddToCartUrl)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:99 (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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/eb/de/5e/ebde5ecd27395382175f5b6bf115854ef82509c8_2.file.products-list.tpl.php:82 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791814c6ad5_81113389)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/14/06/4a/14064a6b847b93777f7c4ec7d24b91d83428a930_2.module.cartzillablocksviewstemplatesblocksproductstrending.tpl.php:43 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918149f3f7_83891116)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 343 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_category` a
LEFT JOIN `1vv7f_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 1
LEFT JOIN `1vv7f_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 4) AND (b.`id_shop` = 1) LIMIT 1 |
0.320
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:179 (__construct)
/classes/Link.php:402 (__construct)
/classes/Link.php:458 (getCategoryObject)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:67 (getCategoryLink)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/eb/de/5e/ebde5ecd27395382175f5b6bf115854ef82509c8_2.file.products-list.tpl.php:82 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791814c6ad5_81113389)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/14/06/4a/14064a6b847b93777f7c4ec7d24b91d83428a930_2.module.cartzillablocksviewstemplatesblocksproductstrending.tpl.php:43 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918149f3f7_83891116)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 510 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_manufacturer` a0
LEFT JOIN `1vv7f_manufacturer_lang` `a1` ON (a0.`id_manufacturer` = a1.`id_manufacturer`)
WHERE (a0.`id_manufacturer` = 2) AND (a1.`id_lang` = 1) |
0.319
ms
|
0 |
|
|
/classes/PrestaShopCollection.php:381
/classes/PrestaShopCollection.php:396 (getAll)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:737 (getFirst)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:678 (_getCollection)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:222 (formatFieldSelectorForFront)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:177 (formatForFront)
/modules/prettyblocks/classes/PrettyBlocksModel.php:424 (getFrontValue)
/modules/prettyblocks/classes/PrettyBlocksModel.php:288 (_formatStateForFront)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 529 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `1vv7f_stock_available`
WHERE (id_product = 2) AND (id_product_attribute = 10) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.319
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:267
/classes/Product.php:2527 (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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/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/child_cartzilla/e4/96/b1/e496b18b87ade5e5d8fd9ee4adff3b90b8089022_2.module.cartzillablocksviewstemplatesblocksblockhomecategory.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918143dc09_64787304)
/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/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 602 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_prettyblocks` a0
WHERE (a0.`zone_name` = 'displayFooter') AND (a0.`id_shop` = 1) AND (a0.`id_lang` = 1)
ORDER BY a0.`position` asc |
0.319
ms
|
80 |
Yes
|
|
/classes/PrestaShopCollection.php:381
/classes/PrestaShopCollection.php:426 (getAll)
/modules/prettyblocks/classes/PrettyBlocksModel.php:172 (getResults)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/b4/5e/9e/b45e9edb41c99cc854ada6c3a7cbf8c4fd389496_2.file.footer.tpl.php:39 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791819e5500_39099131)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:556 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:141 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 3 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_shop` a
WHERE (a.`id_shop` = 1) LIMIT 1 |
0.318
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/shop/Shop.php:146 (__construct)
/classes/shop/Shop.php:432 (__construct)
/config/config.inc.php:122 (initialize)
/index.php:40 (require_once)
|
| 205 |
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 `1vv7f_product` p
INNER JOIN `1vv7f_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `1vv7f_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` = 1) |
0.317
ms
|
8 |
|
|
/classes/Product.php:3603
/classes/Product.php:3459 (priceCalculation)
/classes/Product.php:5431 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 271 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product` a
LEFT JOIN `1vv7f_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 10) LIMIT 1 |
0.317
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:708 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:914 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:752 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getFlags)
/var/cache/dev/smarty/compile/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/eb/dd/b2/ebddb2c357462ef8687cb2d5faeb2111369291a5_2.module.cartzillablocksviewstemplatesblocksblockhomecategoryreverse.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181307fe4_90975203)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 43 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_country_lang`
WHERE `id_country` = 8 |
0.316
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:81
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/AddressFormat.php:402 (__construct)
/classes/AddressFormat.php:437 (getFormattedAddressFieldsValues)
/classes/controller/FrontController.php:1701 (generateAddress)
/classes/controller/FrontController.php:522 (getTemplateVarShop)
/classes/controller/FrontController.php:585 (assignGeneralPurposeVariables)
/controllers/front/IndexController.php:38 (initContent)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 607 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_prettyblocks` a0
WHERE (a0.`zone_name` = 'displayBeforeBodyClosingTag') AND (a0.`id_shop` = 1) AND (a0.`id_lang` = 1)
ORDER BY a0.`position` asc |
0.315
ms
|
80 |
Yes
|
|
/classes/PrestaShopCollection.php:381
/classes/PrestaShopCollection.php:426 (getAll)
/modules/prettyblocks/classes/PrettyBlocksModel.php:172 (getResults)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:609 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:157 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 32 |
SELECT SQL_NO_CACHE s.id_shop, s.id_shop_group FROM 1vv7f_shop s |
0.315
ms
|
1 |
|
|
/classes/shop/Shop.php:922
/src/Adapter/Configuration.php:383 (getGroupIdFromShopId)
/src/Adapter/Configuration.php:119 (getShopGroupId)
/src/Adapter/Assets/AssetUrlGeneratorTrait.php:68 (get)
/classes/assets/StylesheetManager.php:124 (getFQDN)
/classes/assets/StylesheetManager.php:78 (add)
/classes/controller/FrontController.php:1069 (register)
/classes/controller/FrontController.php:933 (registerStylesheet)
/tools/profiling/Controller.php:53 (setMedia)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 48 |
SELECT SQL_NO_CACHE `id_module` FROM `1vv7f_module_shop` WHERE `id_module` = 83 AND `id_shop` = 1 LIMIT 1 |
0.315
ms
|
1 |
|
|
/classes/module/Module.php:2267
/classes/Hook.php:1243 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 443 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `1vv7f_image` i
INNER JOIN 1vv7f_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `1vv7f_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 10
ORDER BY `position` |
0.314
ms
|
2 |
Yes
|
|
/classes/Product.php:3285
/src/Adapter/Image/ImageRetriever.php:75 (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)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 441 |
SELECT SQL_NO_CACHE pai.`id_image`, pai.`id_product_attribute`, il.`legend`
FROM `1vv7f_product_attribute_image` pai
LEFT JOIN `1vv7f_image_lang` il ON (il.`id_image` = pai.`id_image`)
INNER JOIN `1vv7f_image` i ON (i.`id_image` = pai.`id_image`)
WHERE i.`id_product` = 2 AND il.`id_lang` = 1 ORDER by i.`position` |
0.313
ms
|
2 |
Yes
|
|
/classes/Product.php:2668
/src/Adapter/Image/ImageRetriever.php:81 (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)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 503 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product` a0
LEFT JOIN `1vv7f_product_lang` `a1` ON (a0.`id_product` = a1.`id_product`)
WHERE (a0.`id_product` = 7) AND (a1.`id_lang` = 1) AND (a1.`id_shop` = 1) |
0.312
ms
|
1 |
|
|
/classes/PrestaShopCollection.php:381
/classes/PrestaShopCollection.php:396 (getAll)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:737 (getFirst)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:678 (_getCollection)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:222 (formatFieldSelectorForFront)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:177 (formatForFront)
/modules/prettyblocks/classes/PrettyBlocksModel.php:424 (getFrontValue)
/modules/prettyblocks/classes/PrettyBlocksModel.php:288 (_formatStateForFront)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 59 |
SELECT SQL_NO_CACHE l.id_category FROM 1vv7f_category_lang as l
INNER JOIN 1vv7f_category c ON (c.id_category = l.id_category)
WHERE c.active = 1
AND l.id_shop = 1 AND l.id_lang = 1
ORDER BY RAND() LIMIT 5 |
0.310
ms
|
9 |
Yes
|
|
/modules/prettyblocks/classes/HelperBuilder.php:175
/modules/cartzillablocks/classes/blocks/CartZillaProductCategoryWidget.php:91 (getRandomCategory)
/modules/prettyblocks/classes/HelperBuilder.php:155 (registerBlocks)
/modules/cartzillablocks/cartzillablocks.php:959 (renderBlocks)
/classes/Hook.php:1237 (hookActionRegisterBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:784 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:98 (getBlocksAvailable)
/modules/prettyblocks/classes/PrettyBlocksModel.php:243 (loadBlock)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 155 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `1vv7f_stock_available`
WHERE (id_product = 16) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.310
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:267
/classes/Product.php:4092 (getQuantityAvailableByProduct)
/classes/Product.php:5537 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 485 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `1vv7f_image` i
INNER JOIN 1vv7f_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `1vv7f_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 19
ORDER BY `position` |
0.310
ms
|
1 |
Yes
|
|
/classes/Product.php:3285
/src/Adapter/Image/ImageRetriever.php:75 (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)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 513 |
SELECT SQL_NO_CACHE name FROM 1vv7f_category_lang
WHERE id_shop = 1 AND id_lang = 1 AND id_category = 8 LIMIT 1 |
0.310
ms
|
1 |
|
|
/src/Adapter/Presenter/Product/ProductLazyArray.php:624
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getCategoryName)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:68 (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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/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/child_cartzilla/eb/dd/b2/ebddb2c357462ef8687cb2d5faeb2111369291a5_2.module.cartzillablocksviewstemplatesblocksblockhomecategoryreverse.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181307fe4_90975203)
/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/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 170 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `1vv7f_image` i
INNER JOIN 1vv7f_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `1vv7f_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 10
ORDER BY `position` |
0.309
ms
|
2 |
Yes
|
|
/classes/Product.php:3285
/src/Adapter/Image/ImageRetriever.php:75 (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)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 478 |
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 `1vv7f_product` p
INNER JOIN `1vv7f_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `1vv7f_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.309
ms
|
1 |
|
|
/classes/Product.php:3603
/classes/Product.php:3459 (priceCalculation)
/classes/Product.php:5431 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 5 |
SELECT SQL_NO_CACHE l.*, ls.`id_shop`
FROM `1vv7f_lang` l
LEFT JOIN `1vv7f_lang_shop` ls ON (l.id_lang = ls.id_lang) |
0.308
ms
|
1 |
|
|
/classes/Language.php:1070
/config/config.inc.php:151 (loadLanguages)
/index.php:40 (require_once)
|
| 277 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_category` a
LEFT JOIN `1vv7f_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 1
LEFT JOIN `1vv7f_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 8) AND (b.`id_shop` = 1) LIMIT 1 |
0.308
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:179 (__construct)
/classes/Link.php:402 (__construct)
/classes/Link.php:458 (getCategoryObject)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:67 (getCategoryLink)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/eb/dd/b2/ebddb2c357462ef8687cb2d5faeb2111369291a5_2.module.cartzillablocksviewstemplatesblocksblockhomecategoryreverse.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181307fe4_90975203)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 399 |
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 `1vv7f_product` p
INNER JOIN `1vv7f_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `1vv7f_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.307
ms
|
1 |
|
|
/classes/Product.php:3603
/classes/Product.php:3459 (priceCalculation)
/classes/Product.php:5431 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 444 |
SELECT SQL_NO_CACHE pai.`id_image`, pai.`id_product_attribute`, il.`legend`
FROM `1vv7f_product_attribute_image` pai
LEFT JOIN `1vv7f_image_lang` il ON (il.`id_image` = pai.`id_image`)
INNER JOIN `1vv7f_image` i ON (i.`id_image` = pai.`id_image`)
WHERE i.`id_product` = 10 AND il.`id_lang` = 1 ORDER by i.`position` |
0.307
ms
|
4 |
Yes
|
|
/classes/Product.php:2668
/src/Adapter/Image/ImageRetriever.php:81 (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)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 259 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product` a0
LEFT JOIN `1vv7f_product_lang` `a1` ON (a0.`id_product` = a1.`id_product`)
WHERE (a0.`id_product` = 6) AND (a1.`id_lang` = 1) AND (a1.`id_shop` = 1) |
0.306
ms
|
1 |
|
|
/classes/PrestaShopCollection.php:381
/classes/PrestaShopCollection.php:396 (getAll)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:737 (getFirst)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:678 (_getCollection)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:222 (formatFieldSelectorForFront)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:177 (formatForFront)
/modules/prettyblocks/classes/PrettyBlocksModel.php:424 (getFrontValue)
/modules/prettyblocks/classes/PrettyBlocksModel.php:288 (_formatStateForFront)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 416 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `1vv7f_image` i
INNER JOIN 1vv7f_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `1vv7f_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 3
ORDER BY `position` |
0.306
ms
|
1 |
Yes
|
|
/classes/Product.php:3285
/src/Adapter/Image/ImageRetriever.php:75 (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)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 493 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `1vv7f_image` i
INNER JOIN 1vv7f_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `1vv7f_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 13
ORDER BY `position` |
0.306
ms
|
1 |
Yes
|
|
/classes/Product.php:3285
/src/Adapter/Image/ImageRetriever.php:75 (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)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 596 |
SELECT SQL_NO_CACHE *
FROM 1vv7f_meta m
LEFT JOIN 1vv7f_meta_lang ml ON m.id_meta = ml.id_meta
WHERE (
m.page = "prices-drop"
OR m.page = "pricesdrop"
)
AND ml.id_lang = 1
AND ml.id_shop = 1 LIMIT 1 |
0.306
ms
|
2 |
|
|
/classes/Meta.php:181
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:166 (getMetaByPage)
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:104 (makeProductLinks)
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:66 (makeLinks)
/modules/ps_linklist/ps_linklist.php:291 (present)
/modules/ps_linklist/ps_linklist.php:277 (getWidgetVariables)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/b4/5e/9e/b45e9edb41c99cc854ada6c3a7cbf8c4fd389496_2.file.footer.tpl.php:39 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791819e5500_39099131)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:556 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:141 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 8 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_lang` a
LEFT JOIN `1vv7f_lang_shop` `c` ON a.`id_lang` = c.`id_lang` AND c.`id_shop` = 1
WHERE (a.`id_lang` = 1) LIMIT 1 |
0.304
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/config/config.inc.php:219 (__construct)
/index.php:40 (require_once)
|
| 117 |
SELECT SQL_NO_CACHE `reduction`
FROM `1vv7f_product_group_reduction_cache`
WHERE `id_product` = 14 AND `id_group` = 1 LIMIT 1 |
0.304
ms
|
0 |
|
|
/classes/GroupReduction.php:146
/classes/Product.php:3733 (getValueForProduct)
/classes/Product.php:3459 (priceCalculation)
/classes/Product.php:5431 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 358 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product_lang`
WHERE `id_product` = 11 AND `id_shop` = 1 |
0.303
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:81
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:708 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:914 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:752 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getFlags)
/var/cache/dev/smarty/compile/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/eb/de/5e/ebde5ecd27395382175f5b6bf115854ef82509c8_2.file.products-list.tpl.php:82 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791814c6ad5_81113389)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/14/06/4a/14064a6b847b93777f7c4ec7d24b91d83428a930_2.module.cartzillablocksviewstemplatesblocksproductstrending.tpl.php:43 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918149f3f7_83891116)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 502 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product` a0
LEFT JOIN `1vv7f_product_lang` `a1` ON (a0.`id_product` = a1.`id_product`)
WHERE (a0.`id_product` = 3) AND (a1.`id_lang` = 1) AND (a1.`id_shop` = 1) |
0.302
ms
|
1 |
|
|
/classes/PrestaShopCollection.php:381
/classes/PrestaShopCollection.php:396 (getAll)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:737 (getFirst)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:678 (_getCollection)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:222 (formatFieldSelectorForFront)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:177 (formatForFront)
/modules/prettyblocks/classes/PrettyBlocksModel.php:424 (getFrontValue)
/modules/prettyblocks/classes/PrettyBlocksModel.php:288 (_formatStateForFront)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 311 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_category` a
LEFT JOIN `1vv7f_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 1
LEFT JOIN `1vv7f_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 7) AND (b.`id_shop` = 1) LIMIT 1 |
0.302
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:179 (__construct)
/classes/Link.php:402 (__construct)
/classes/Link.php:458 (getCategoryObject)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:67 (getCategoryLink)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/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/child_cartzilla/e4/96/b1/e496b18b87ade5e5d8fd9ee4adff3b90b8089022_2.module.cartzillablocksviewstemplatesblocksblockhomecategory.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918143dc09_64787304)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 498 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `1vv7f_image` i
INNER JOIN 1vv7f_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `1vv7f_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 17
ORDER BY `position` |
0.301
ms
|
1 |
Yes
|
|
/classes/Product.php:3285
/src/Adapter/Image/ImageRetriever.php:75 (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)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 563 |
SELECT SQL_NO_CACHE `id_module` FROM `1vv7f_module` WHERE `name` = "ps_socialfollow" LIMIT 1 |
0.301
ms
|
1 |
|
|
/classes/module/Module.php:2778
/classes/module/Module.php:2266 (getModuleIdByName)
/classes/Hook.php:1243 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/b4/5e/9e/b45e9edb41c99cc854ada6c3a7cbf8c4fd389496_2.file.footer.tpl.php:25 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791819e5500_39099131)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:556 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:141 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 44 |
SELECT SQL_NO_CACHE id_required_field, object_name, field_name
FROM 1vv7f_required_field |
0.300
ms
|
1 |
|
|
/classes/ObjectModel.php:1437
/classes/ObjectModel.php:1472 (getFieldsRequiredDatabase)
/classes/ObjectModel.php:1403 (cacheFieldsRequiredDatabase)
/classes/controller/FrontController.php:526 (validateFieldsRequiredDatabase)
/classes/controller/FrontController.php:585 (assignGeneralPurposeVariables)
/controllers/front/IndexController.php:38 (initContent)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 598 |
SELECT SQL_NO_CACHE *
FROM 1vv7f_meta m
LEFT JOIN 1vv7f_meta_lang ml ON m.id_meta = ml.id_meta
WHERE (
m.page = "best-sales"
OR m.page = "bestsales"
)
AND ml.id_lang = 1
AND ml.id_shop = 1 LIMIT 1 |
0.300
ms
|
2 |
|
|
/classes/Meta.php:181
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:166 (getMetaByPage)
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:104 (makeProductLinks)
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:66 (makeLinks)
/modules/ps_linklist/ps_linklist.php:291 (present)
/modules/ps_linklist/ps_linklist.php:277 (getWidgetVariables)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/b4/5e/9e/b45e9edb41c99cc854ada6c3a7cbf8c4fd389496_2.file.footer.tpl.php:39 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791819e5500_39099131)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:556 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:141 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 174 |
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 `1vv7f_product` p
INNER JOIN `1vv7f_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `1vv7f_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` = 17) |
0.299
ms
|
4 |
|
|
/classes/Product.php:3603
/classes/Product.php:3459 (priceCalculation)
/classes/Product.php:5431 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 226 |
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 `1vv7f_product` p
INNER JOIN `1vv7f_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `1vv7f_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.299
ms
|
3 |
|
|
/classes/Product.php:3603
/classes/Product.php:3459 (priceCalculation)
/classes/Product.php:5431 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 567 |
SELECT SQL_NO_CACHE lb.`id_link_block`
FROM 1vv7f_link_block lb
INNER JOIN 1vv7f_link_block_shop lbs ON lbs.`id_link_block` = lb.`id_link_block`
WHERE lb. `id_hook` = 50 AND lbs.`id_shop` = 1
ORDER by lbs.`position` |
0.299
ms
|
2 |
Yes
|
|
/modules/ps_linklist/src/LegacyLinkBlockRepository.php:87
/modules/ps_linklist/ps_linklist.php:287 (getByIdHook)
/modules/ps_linklist/ps_linklist.php:277 (getWidgetVariables)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/b4/5e/9e/b45e9edb41c99cc854ada6c3a7cbf8c4fd389496_2.file.footer.tpl.php:29 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791819e5500_39099131)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:556 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:141 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 396 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `1vv7f_image` i
INNER JOIN 1vv7f_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `1vv7f_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 8
ORDER BY `position` |
0.298
ms
|
1 |
Yes
|
|
/classes/Product.php:3285
/src/Adapter/Image/ImageRetriever.php:75 (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)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 434 |
SELECT SQL_NO_CACHE pa.`available_date` FROM `1vv7f_product` p LEFT JOIN `1vv7f_product_attribute` pa ON (pa.`id_product` = p.`id_product`) INNER JOIN 1vv7f_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1) INNER JOIN 1vv7f_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` = 2 AND pa.`id_product` = 2 AND pa.`id_product_attribute` = 9 LIMIT 1 |
0.298
ms
|
1 |
|
|
/classes/Product.php:1180
/classes/Product.php:5557 (getAvailableDate)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 495 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `1vv7f_image` i
INNER JOIN 1vv7f_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `1vv7f_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 11
ORDER BY `position` |
0.298
ms
|
2 |
Yes
|
|
/classes/Product.php:3285
/src/Adapter/Image/ImageRetriever.php:75 (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)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 260 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product` a0
LEFT JOIN `1vv7f_product_lang` `a1` ON (a0.`id_product` = a1.`id_product`)
WHERE (a0.`id_product` = 3) AND (a1.`id_lang` = 1) AND (a1.`id_shop` = 1) |
0.297
ms
|
1 |
|
|
/classes/PrestaShopCollection.php:381
/classes/PrestaShopCollection.php:396 (getAll)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:737 (getFirst)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:678 (_getCollection)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:222 (formatFieldSelectorForFront)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:177 (formatForFront)
/modules/prettyblocks/classes/PrettyBlocksModel.php:424 (getFrontValue)
/modules/prettyblocks/classes/PrettyBlocksModel.php:288 (_formatStateForFront)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 56 |
SELECT SQL_NO_CACHE l.id_category FROM 1vv7f_category_lang as l
INNER JOIN 1vv7f_category c ON (c.id_category = l.id_category)
WHERE c.active = 1
AND l.id_shop = 1 AND l.id_lang = 1
ORDER BY RAND() LIMIT 5 |
0.297
ms
|
9 |
Yes
|
|
/modules/prettyblocks/classes/HelperBuilder.php:175
/modules/cartzillablocks/classes/blocks/CartZillaThumbnailCategory.php:115 (getRandomCategory)
/modules/prettyblocks/classes/HelperBuilder.php:155 (registerBlocks)
/modules/cartzillablocks/cartzillablocks.php:959 (renderBlocks)
/classes/Hook.php:1237 (hookActionRegisterBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:784 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:98 (getBlocksAvailable)
/modules/prettyblocks/classes/PrettyBlocksModel.php:243 (loadBlock)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 31 |
SELECT SQL_NO_CACHE id_shop
FROM `1vv7f_group_shop`
WHERE `id_group` = 1
AND id_shop = 1 LIMIT 1 |
0.296
ms
|
1 |
|
|
/classes/ObjectModel.php:1570
/classes/Group.php:396 (isAssociatedToShop)
/classes/Cart.php:272 (getCurrent)
/classes/Cart.php:238 (setTaxCalculationMethod)
/classes/controller/FrontController.php:430 (__construct)
/tools/profiling/Controller.php:46 (init)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 313 |
SELECT SQL_NO_CACHE name FROM 1vv7f_category_lang
WHERE id_shop = 1 AND id_lang = 1 AND id_category = 8 LIMIT 1 |
0.296
ms
|
1 |
|
|
/src/Adapter/Presenter/Product/ProductLazyArray.php:624
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getCategoryName)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:68 (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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/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/child_cartzilla/e4/96/b1/e496b18b87ade5e5d8fd9ee4adff3b90b8089022_2.module.cartzillablocksviewstemplatesblocksblockhomecategory.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918143dc09_64787304)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 186 |
SELECT SQL_NO_CACHE pai.`id_image`, pai.`id_product_attribute`, il.`legend`
FROM `1vv7f_product_attribute_image` pai
LEFT JOIN `1vv7f_image_lang` il ON (il.`id_image` = pai.`id_image`)
INNER JOIN `1vv7f_image` i ON (i.`id_image` = pai.`id_image`)
WHERE i.`id_product` = 17 AND il.`id_lang` = 1 ORDER by i.`position` |
0.295
ms
|
2 |
Yes
|
|
/classes/Product.php:2668
/src/Adapter/Image/ImageRetriever.php:81 (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)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 421 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_category` a0
LEFT JOIN `1vv7f_category_lang` `a1` ON (a0.`id_category` = a1.`id_category`)
WHERE (a0.`id_category` = 2) AND (a1.`id_lang` = 1) AND (a1.`id_shop` = 1) |
0.295
ms
|
1 |
|
|
/classes/PrestaShopCollection.php:381
/classes/PrestaShopCollection.php:396 (getAll)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:737 (getFirst)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:678 (_getCollection)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:222 (formatFieldSelectorForFront)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:177 (formatForFront)
/modules/prettyblocks/classes/PrettyBlocksModel.php:722 (getFrontValue)
/modules/prettyblocks/classes/PrettyBlocksModel.php:254 (_formatGetConfig)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 475 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `1vv7f_image` i
INNER JOIN 1vv7f_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `1vv7f_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 6
ORDER BY `position` |
0.295
ms
|
1 |
Yes
|
|
/classes/Product.php:3285
/src/Adapter/Image/ImageRetriever.php:75 (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)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 504 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_manufacturer` a0
LEFT JOIN `1vv7f_manufacturer_lang` `a1` ON (a0.`id_manufacturer` = a1.`id_manufacturer`)
WHERE (a0.`id_manufacturer` = 4) AND (a1.`id_lang` = 1) |
0.295
ms
|
0 |
|
|
/classes/PrestaShopCollection.php:381
/classes/PrestaShopCollection.php:396 (getAll)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:737 (getFirst)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:678 (_getCollection)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:222 (formatFieldSelectorForFront)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:177 (formatForFront)
/modules/prettyblocks/classes/PrettyBlocksModel.php:424 (getFrontValue)
/modules/prettyblocks/classes/PrettyBlocksModel.php:288 (_formatStateForFront)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 512 |
SELECT SQL_NO_CACHE name FROM 1vv7f_category_lang
WHERE id_shop = 1 AND id_lang = 1 AND id_category = 8 LIMIT 1 |
0.295
ms
|
1 |
|
|
/src/Adapter/Presenter/Product/ProductLazyArray.php:624
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getCategoryName)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:68 (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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/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/child_cartzilla/eb/dd/b2/ebddb2c357462ef8687cb2d5faeb2111369291a5_2.module.cartzillablocksviewstemplatesblocksblockhomecategoryreverse.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181307fe4_90975203)
/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/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 171 |
SELECT SQL_NO_CACHE pai.`id_image`, pai.`id_product_attribute`, il.`legend`
FROM `1vv7f_product_attribute_image` pai
LEFT JOIN `1vv7f_image_lang` il ON (il.`id_image` = pai.`id_image`)
INNER JOIN `1vv7f_image` i ON (i.`id_image` = pai.`id_image`)
WHERE i.`id_product` = 10 AND il.`id_lang` = 1 ORDER by i.`position` |
0.294
ms
|
4 |
Yes
|
|
/classes/Product.php:2668
/src/Adapter/Image/ImageRetriever.php:81 (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)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 14 |
SELECT SQL_NO_CACHE `name`, `alias` FROM `1vv7f_hook_alias` |
0.294
ms
|
86 |
|
|
/classes/Hook.php:319
/classes/Hook.php:350 (getAllHookAliases)
/classes/Hook.php:825 (getHookAliasesFor)
/classes/Hook.php:952 (getHookModuleExecList)
/classes/Dispatcher.php:584 (exec)
/classes/Dispatcher.php:235 (loadRoutes)
/classes/Dispatcher.php:193 (__construct)
/index.php:78 (getInstance)
|
| 490 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `1vv7f_stock_available`
WHERE (id_product = 13) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.294
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:267
/classes/Product.php:4092 (getQuantityAvailableByProduct)
/classes/Product.php:5537 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 583 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_cms_lang`
WHERE `id_cms` = 4 AND `id_shop` = 1 |
0.294
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:81
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:138 (__construct)
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:100 (makeCmsLinks)
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:66 (makeLinks)
/modules/ps_linklist/ps_linklist.php:291 (present)
/modules/ps_linklist/ps_linklist.php:277 (getWidgetVariables)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/b4/5e/9e/b45e9edb41c99cc854ada6c3a7cbf8c4fd389496_2.file.footer.tpl.php:29 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791819e5500_39099131)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:556 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:141 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 166 |
SELECT SQL_NO_CACHE pai.`id_image`, pai.`id_product_attribute`, il.`legend`
FROM `1vv7f_product_attribute_image` pai
LEFT JOIN `1vv7f_image_lang` il ON (il.`id_image` = pai.`id_image`)
INNER JOIN `1vv7f_image` i ON (i.`id_image` = pai.`id_image`)
WHERE i.`id_product` = 16 AND il.`id_lang` = 1 ORDER by i.`position` |
0.293
ms
|
2 |
Yes
|
|
/classes/Product.php:2668
/src/Adapter/Image/ImageRetriever.php:81 (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)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 332 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product_lang`
WHERE `id_product` = 1 AND `id_shop` = 1 |
0.293
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:81
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:708 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:914 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:752 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getFlags)
/var/cache/dev/smarty/compile/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/eb/de/5e/ebde5ecd27395382175f5b6bf115854ef82509c8_2.file.products-list.tpl.php:82 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791814c6ad5_81113389)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/14/06/4a/14064a6b847b93777f7c4ec7d24b91d83428a930_2.module.cartzillablocksviewstemplatesblocksproductstrending.tpl.php:43 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918149f3f7_83891116)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 499 |
SELECT SQL_NO_CACHE pai.`id_image`, pai.`id_product_attribute`, il.`legend`
FROM `1vv7f_product_attribute_image` pai
LEFT JOIN `1vv7f_image_lang` il ON (il.`id_image` = pai.`id_image`)
INNER JOIN `1vv7f_image` i ON (i.`id_image` = pai.`id_image`)
WHERE i.`id_product` = 17 AND il.`id_lang` = 1 ORDER by i.`position` |
0.293
ms
|
2 |
Yes
|
|
/classes/Product.php:2668
/src/Adapter/Image/ImageRetriever.php:81 (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)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 546 |
SELECT SQL_NO_CACHE name FROM 1vv7f_category_lang
WHERE id_shop = 1 AND id_lang = 1 AND id_category = 8 LIMIT 1 |
0.293
ms
|
1 |
|
|
/src/Adapter/Presenter/Product/ProductLazyArray.php:624
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getCategoryName)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:68 (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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/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/child_cartzilla/e4/96/b1/e496b18b87ade5e5d8fd9ee4adff3b90b8089022_2.module.cartzillablocksviewstemplatesblocksblockhomecategory.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918143dc09_64787304)
/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/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 6 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_country` a
LEFT JOIN `1vv7f_country_lang` `b` ON a.`id_country` = b.`id_country` AND b.`id_lang` = 1
LEFT JOIN `1vv7f_country_shop` `c` ON a.`id_country` = c.`id_country` AND c.`id_shop` = 1
WHERE (a.`id_country` = 8) LIMIT 1 |
0.293
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/config/config.inc.php:154 (__construct)
/index.php:40 (require_once)
|
| 304 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product_lang`
WHERE `id_product` = 16 AND `id_shop` = 1 |
0.292
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:81
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:708 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:914 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:752 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getFlags)
/var/cache/dev/smarty/compile/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/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/child_cartzilla/e4/96/b1/e496b18b87ade5e5d8fd9ee4adff3b90b8089022_2.module.cartzillablocksviewstemplatesblocksblockhomecategory.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918143dc09_64787304)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 472 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `1vv7f_image` i
INNER JOIN 1vv7f_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `1vv7f_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 2
ORDER BY `position` |
0.292
ms
|
1 |
Yes
|
|
/classes/Product.php:3285
/src/Adapter/Image/ImageRetriever.php:75 (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)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 188 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `1vv7f_image` i
INNER JOIN 1vv7f_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `1vv7f_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 3
ORDER BY `position` |
0.291
ms
|
1 |
Yes
|
|
/classes/Product.php:3285
/src/Adapter/Image/ImageRetriever.php:75 (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)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 388 |
SELECT SQL_NO_CACHE SUM(`quantity`)
FROM `1vv7f_cart_product`
WHERE `id_cart` = 0 LIMIT 1 |
0.291
ms
|
1 |
|
|
/classes/Cart.php:1322
/src/Adapter/Presenter/Cart/CartLazyArray.php:247 (getNbProducts)
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getProductsCount)
/var/cache/dev/smarty/compile/child_cartzilla/35/65/5e/35655e6409b6198f29dd6e732ef9598dec599880_2.module.ps_shoppingcartps_shoppingcart.tpl.php:26 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918177fb53_74593272)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/ps_shoppingcart/ps_shoppingcart.php:136 (fetch)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/d8/99/4f/d8994f02c8612f9f0b5efe3627ca0d7ebfc76c49_2.file.header.tpl.php:176 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/d8/99/4f/d8994f02c8612f9f0b5efe3627ca0d7ebfc76c49_2.file.header.tpl.php:39 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791816ef929_48790264)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:230 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:61 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 606 |
SELECT SQL_NO_CACHE data
FROM `1vv7f_ganalytics_data`
WHERE id_cart = 0
AND id_shop = 1 LIMIT 1 |
0.291
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:1237 (hookDisplayBeforeBodyClosingTag)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:609 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:157 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 539 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product_lang`
WHERE `id_product` = 18 AND `id_shop` = 1 |
0.291
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:81
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:708 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:914 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:752 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getFlags)
/var/cache/dev/smarty/compile/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/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/child_cartzilla/e4/96/b1/e496b18b87ade5e5d8fd9ee4adff3b90b8089022_2.module.cartzillablocksviewstemplatesblocksblockhomecategory.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918143dc09_64787304)
/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/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 276 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `1vv7f_stock_available`
WHERE (id_product = 10) AND (id_product_attribute = 25) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.290
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:267
/classes/Product.php:2527 (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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/eb/dd/b2/ebddb2c357462ef8687cb2d5faeb2111369291a5_2.module.cartzillablocksviewstemplatesblocksblockhomecategoryreverse.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181307fe4_90975203)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 470 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `1vv7f_image` i
INNER JOIN 1vv7f_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `1vv7f_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 7
ORDER BY `position` |
0.290
ms
|
1 |
Yes
|
|
/classes/Product.php:3285
/src/Adapter/Image/ImageRetriever.php:75 (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)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 570 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_link_block` a
LEFT JOIN `1vv7f_link_block_shop` `c` ON a.`id_link_block` = c.`id_link_block` AND c.`id_shop` = 1
WHERE (a.`id_link_block` = 2) LIMIT 1 |
0.290
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/modules/ps_linklist/src/Model/LinkBlock.php:80 (__construct)
/modules/ps_linklist/src/LegacyLinkBlockRepository.php:91 (__construct)
/modules/ps_linklist/ps_linklist.php:287 (getByIdHook)
/modules/ps_linklist/ps_linklist.php:277 (getWidgetVariables)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/b4/5e/9e/b45e9edb41c99cc854ada6c3a7cbf8c4fd389496_2.file.footer.tpl.php:29 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791819e5500_39099131)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:556 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:141 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 4 |
SELECT SQL_NO_CACHE su.physical_uri, su.virtual_uri, su.domain, su.domain_ssl
FROM 1vv7f_shop s
LEFT JOIN 1vv7f_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.290
ms
|
1 |
|
|
/classes/shop/Shop.php:215
/classes/shop/Shop.php:149 (setUrl)
/classes/shop/Shop.php:432 (__construct)
/config/config.inc.php:122 (initialize)
/index.php:40 (require_once)
|
| 556 |
SELECT SQL_NO_CACHE name FROM 1vv7f_category_lang
WHERE id_shop = 1 AND id_lang = 1 AND id_category = 9 LIMIT 1 |
0.290
ms
|
1 |
|
|
/src/Adapter/Presenter/Product/ProductLazyArray.php:624
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getCategoryName)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:68 (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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/eb/de/5e/ebde5ecd27395382175f5b6bf115854ef82509c8_2.file.products-list.tpl.php:82 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791814c6ad5_81113389)
/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/child_cartzilla/14/06/4a/14064a6b847b93777f7c4ec7d24b91d83428a930_2.module.cartzillablocksviewstemplatesblocksproductstrending.tpl.php:43 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918149f3f7_83891116)
/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/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 597 |
SELECT SQL_NO_CACHE *
FROM 1vv7f_meta m
LEFT JOIN 1vv7f_meta_lang ml ON m.id_meta = ml.id_meta
WHERE (
m.page = "new-products"
OR m.page = "newproducts"
)
AND ml.id_lang = 1
AND ml.id_shop = 1 LIMIT 1 |
0.290
ms
|
2 |
|
|
/classes/Meta.php:181
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:166 (getMetaByPage)
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:104 (makeProductLinks)
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:66 (makeLinks)
/modules/ps_linklist/ps_linklist.php:291 (present)
/modules/ps_linklist/ps_linklist.php:277 (getWidgetVariables)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/b4/5e/9e/b45e9edb41c99cc854ada6c3a7cbf8c4fd389496_2.file.footer.tpl.php:39 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791819e5500_39099131)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:556 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:141 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 403 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `1vv7f_image` i
INNER JOIN 1vv7f_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `1vv7f_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 7
ORDER BY `position` |
0.289
ms
|
1 |
Yes
|
|
/classes/Product.php:3285
/src/Adapter/Image/ImageRetriever.php:75 (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)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 406 |
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 `1vv7f_product` p
INNER JOIN `1vv7f_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `1vv7f_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` = 19) |
0.289
ms
|
1 |
|
|
/classes/Product.php:3603
/classes/Product.php:3459 (priceCalculation)
/classes/Product.php:5431 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 496 |
SELECT SQL_NO_CACHE pai.`id_image`, pai.`id_product_attribute`, il.`legend`
FROM `1vv7f_product_attribute_image` pai
LEFT JOIN `1vv7f_image_lang` il ON (il.`id_image` = pai.`id_image`)
INNER JOIN `1vv7f_image` i ON (i.`id_image` = pai.`id_image`)
WHERE i.`id_product` = 11 AND il.`id_lang` = 1 ORDER by i.`position` |
0.289
ms
|
4 |
Yes
|
|
/classes/Product.php:2668
/src/Adapter/Image/ImageRetriever.php:81 (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)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 577 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_cms_lang`
WHERE `id_cms` = 1 AND `id_shop` = 1 |
0.289
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:81
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:138 (__construct)
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:100 (makeCmsLinks)
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:66 (makeLinks)
/modules/ps_linklist/ps_linklist.php:291 (present)
/modules/ps_linklist/ps_linklist.php:277 (getWidgetVariables)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/b4/5e/9e/b45e9edb41c99cc854ada6c3a7cbf8c4fd389496_2.file.footer.tpl.php:29 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791819e5500_39099131)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:556 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:141 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 599 |
SELECT SQL_NO_CACHE *
FROM 1vv7f_meta m
LEFT JOIN 1vv7f_meta_lang ml ON m.id_meta = ml.id_meta
WHERE (
m.page = "contact"
OR m.page = "contact"
)
AND ml.id_lang = 1
AND ml.id_shop = 1 LIMIT 1 |
0.289
ms
|
1 |
|
|
/classes/Meta.php:181
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:192 (getMetaByPage)
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:108 (makeStaticLinks)
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:66 (makeLinks)
/modules/ps_linklist/ps_linklist.php:291 (present)
/modules/ps_linklist/ps_linklist.php:277 (getWidgetVariables)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/b4/5e/9e/b45e9edb41c99cc854ada6c3a7cbf8c4fd389496_2.file.footer.tpl.php:39 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791819e5500_39099131)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:556 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:141 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 232 |
SELECT SQL_NO_CACHE pa.`available_date` FROM `1vv7f_product` p LEFT JOIN `1vv7f_product_attribute` pa ON (pa.`id_product` = p.`id_product`) INNER JOIN 1vv7f_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1) INNER JOIN 1vv7f_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.288
ms
|
1 |
|
|
/classes/Product.php:1180
/classes/Product.php:5557 (getAvailableDate)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 252 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `1vv7f_image` i
INNER JOIN 1vv7f_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `1vv7f_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 11
ORDER BY `position` |
0.288
ms
|
2 |
Yes
|
|
/classes/Product.php:3285
/src/Adapter/Image/ImageRetriever.php:75 (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)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 531 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `1vv7f_stock_available`
WHERE (id_product = 2) AND (id_product_attribute = 12) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.288
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:267
/classes/Product.php:2527 (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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/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/child_cartzilla/e4/96/b1/e496b18b87ade5e5d8fd9ee4adff3b90b8089022_2.module.cartzillablocksviewstemplatesblocksblockhomecategory.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918143dc09_64787304)
/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/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 548 |
SELECT SQL_NO_CACHE name FROM 1vv7f_category_lang
WHERE id_shop = 1 AND id_lang = 1 AND id_category = 8 LIMIT 1 |
0.288
ms
|
1 |
|
|
/src/Adapter/Presenter/Product/ProductLazyArray.php:624
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getCategoryName)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:68 (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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/eb/de/5e/ebde5ecd27395382175f5b6bf115854ef82509c8_2.file.products-list.tpl.php:82 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791814c6ad5_81113389)
/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/child_cartzilla/14/06/4a/14064a6b847b93777f7c4ec7d24b91d83428a930_2.module.cartzillablocksviewstemplatesblocksproductstrending.tpl.php:43 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918149f3f7_83891116)
/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/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 41 |
SELECT SQL_NO_CACHE `need_identification_number`
FROM `1vv7f_country`
WHERE `id_country` = 8 LIMIT 1 |
0.287
ms
|
1 |
|
|
/classes/Country.php:406
/classes/AddressFormat.php:632 (isNeedDniByCountryId)
/classes/AddressFormat.php:613 (getFormat)
/classes/AddressFormat.php:560 (getAddressCountryFormat)
/classes/AddressFormat.php:436 (getOrderedAddressFields)
/classes/controller/FrontController.php:1701 (generateAddress)
/classes/controller/FrontController.php:522 (getTemplateVarShop)
/classes/controller/FrontController.php:585 (assignGeneralPurposeVariables)
/controllers/front/IndexController.php:38 (initContent)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 61 |
SELECT SQL_NO_CACHE l.id_category FROM 1vv7f_category_lang as l
INNER JOIN 1vv7f_category c ON (c.id_category = l.id_category)
WHERE c.active = 1
AND l.id_shop = 1 AND l.id_lang = 1
ORDER BY RAND() LIMIT 5 |
0.286
ms
|
9 |
Yes
|
|
/modules/prettyblocks/classes/HelperBuilder.php:175
/modules/prettyblocks/classes/prettyblocks/blocks/PrettyBlocksFeaturedProducts.php:50 (getRandomCategory)
/modules/prettyblocks/classes/HelperBuilder.php:155 (registerBlocks)
/modules/prettyblocks/prettyblocks.php:731 (renderBlocks)
/classes/Hook.php:1237 (hookActionRegisterBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:784 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:98 (getBlocksAvailable)
/modules/prettyblocks/classes/PrettyBlocksModel.php:243 (loadBlock)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 261 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product` a0
LEFT JOIN `1vv7f_product_lang` `a1` ON (a0.`id_product` = a1.`id_product`)
WHERE (a0.`id_product` = 7) AND (a1.`id_lang` = 1) AND (a1.`id_shop` = 1) |
0.286
ms
|
1 |
|
|
/classes/PrestaShopCollection.php:381
/classes/PrestaShopCollection.php:396 (getAll)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:737 (getFirst)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:678 (_getCollection)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:222 (formatFieldSelectorForFront)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:177 (formatForFront)
/modules/prettyblocks/classes/PrettyBlocksModel.php:424 (getFrontValue)
/modules/prettyblocks/classes/PrettyBlocksModel.php:288 (_formatStateForFront)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 501 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product` a0
LEFT JOIN `1vv7f_product_lang` `a1` ON (a0.`id_product` = a1.`id_product`)
WHERE (a0.`id_product` = 6) AND (a1.`id_lang` = 1) AND (a1.`id_shop` = 1) |
0.286
ms
|
1 |
|
|
/classes/PrestaShopCollection.php:381
/classes/PrestaShopCollection.php:396 (getAll)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:737 (getFirst)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:678 (_getCollection)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:222 (formatFieldSelectorForFront)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:177 (formatForFront)
/modules/prettyblocks/classes/PrettyBlocksModel.php:424 (getFrontValue)
/modules/prettyblocks/classes/PrettyBlocksModel.php:288 (_formatStateForFront)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 241 |
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 `1vv7f_product` p
INNER JOIN `1vv7f_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `1vv7f_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` = 11) |
0.285
ms
|
2 |
|
|
/classes/Product.php:3603
/classes/Product.php:3459 (priceCalculation)
/classes/Product.php:5431 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 473 |
SELECT SQL_NO_CACHE pai.`id_image`, pai.`id_product_attribute`, il.`legend`
FROM `1vv7f_product_attribute_image` pai
LEFT JOIN `1vv7f_image_lang` il ON (il.`id_image` = pai.`id_image`)
INNER JOIN `1vv7f_image` i ON (i.`id_image` = pai.`id_image`)
WHERE i.`id_product` = 2 AND il.`id_lang` = 1 ORDER by i.`position` |
0.285
ms
|
2 |
Yes
|
|
/classes/Product.php:2668
/src/Adapter/Image/ImageRetriever.php:81 (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)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 180 |
SELECT SQL_NO_CACHE pa.`available_date` FROM `1vv7f_product` p LEFT JOIN `1vv7f_product_attribute` pa ON (pa.`id_product` = p.`id_product`) INNER JOIN 1vv7f_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1) INNER JOIN 1vv7f_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` = 17 AND pa.`id_product` = 17 AND pa.`id_product_attribute` = 32 LIMIT 1 |
0.284
ms
|
1 |
|
|
/classes/Product.php:1180
/classes/Product.php:5557 (getAvailableDate)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 185 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `1vv7f_image` i
INNER JOIN 1vv7f_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `1vv7f_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 17
ORDER BY `position` |
0.284
ms
|
1 |
Yes
|
|
/classes/Product.php:3285
/src/Adapter/Image/ImageRetriever.php:75 (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)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 194 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `1vv7f_image` i
INNER JOIN 1vv7f_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `1vv7f_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 4
ORDER BY `position` |
0.283
ms
|
1 |
Yes
|
|
/classes/Product.php:3285
/src/Adapter/Image/ImageRetriever.php:75 (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)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 253 |
SELECT SQL_NO_CACHE pai.`id_image`, pai.`id_product_attribute`, il.`legend`
FROM `1vv7f_product_attribute_image` pai
LEFT JOIN `1vv7f_image_lang` il ON (il.`id_image` = pai.`id_image`)
INNER JOIN `1vv7f_image` i ON (i.`id_image` = pai.`id_image`)
WHERE i.`id_product` = 11 AND il.`id_lang` = 1 ORDER by i.`position` |
0.282
ms
|
4 |
Yes
|
|
/classes/Product.php:2668
/src/Adapter/Image/ImageRetriever.php:81 (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)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 446 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `1vv7f_image` i
INNER JOIN 1vv7f_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `1vv7f_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 19
ORDER BY `position` |
0.282
ms
|
1 |
Yes
|
|
/classes/Product.php:3285
/src/Adapter/Image/ImageRetriever.php:75 (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)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 537 |
SELECT SQL_NO_CACHE name FROM 1vv7f_category_lang
WHERE id_shop = 1 AND id_lang = 1 AND id_category = 8 LIMIT 1 |
0.282
ms
|
1 |
|
|
/src/Adapter/Presenter/Product/ProductLazyArray.php:624
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getCategoryName)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:68 (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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/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/child_cartzilla/e4/96/b1/e496b18b87ade5e5d8fd9ee4adff3b90b8089022_2.module.cartzillablocksviewstemplatesblocksblockhomecategory.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918143dc09_64787304)
/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/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 576 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_cms` a
LEFT JOIN `1vv7f_cms_shop` `c` ON a.`id_cms` = c.`id_cms` AND c.`id_shop` = 1
WHERE (a.`id_cms` = 1) LIMIT 1 |
0.282
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:138 (__construct)
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:100 (makeCmsLinks)
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:66 (makeLinks)
/modules/ps_linklist/ps_linklist.php:291 (present)
/modules/ps_linklist/ps_linklist.php:277 (getWidgetVariables)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/b4/5e/9e/b45e9edb41c99cc854ada6c3a7cbf8c4fd389496_2.file.footer.tpl.php:29 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791819e5500_39099131)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:556 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:141 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 514 |
SELECT SQL_NO_CACHE name FROM 1vv7f_category_lang
WHERE id_shop = 1 AND id_lang = 1 AND id_category = 8 LIMIT 1 |
0.281
ms
|
1 |
|
|
/src/Adapter/Presenter/Product/ProductLazyArray.php:624
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getCategoryName)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:68 (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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/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/child_cartzilla/eb/dd/b2/ebddb2c357462ef8687cb2d5faeb2111369291a5_2.module.cartzillablocksviewstemplatesblocksblockhomecategoryreverse.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181307fe4_90975203)
/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/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 523 |
SELECT SQL_NO_CACHE name FROM 1vv7f_category_lang
WHERE id_shop = 1 AND id_lang = 1 AND id_category = 4 LIMIT 1 |
0.281
ms
|
1 |
|
|
/src/Adapter/Presenter/Product/ProductLazyArray.php:624
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getCategoryName)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:68 (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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/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/child_cartzilla/eb/dd/b2/ebddb2c357462ef8687cb2d5faeb2111369291a5_2.module.cartzillablocksviewstemplatesblocksblockhomecategoryreverse.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181307fe4_90975203)
/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/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 223 |
SELECT SQL_NO_CACHE pai.`id_image`, pai.`id_product_attribute`, il.`legend`
FROM `1vv7f_product_attribute_image` pai
LEFT JOIN `1vv7f_image_lang` il ON (il.`id_image` = pai.`id_image`)
INNER JOIN `1vv7f_image` i ON (i.`id_image` = pai.`id_image`)
WHERE i.`id_product` = 16 AND il.`id_lang` = 1 ORDER by i.`position` |
0.281
ms
|
2 |
Yes
|
|
/classes/Product.php:2668
/src/Adapter/Image/ImageRetriever.php:81 (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)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 414 |
SELECT SQL_NO_CACHE pai.`id_image`, pai.`id_product_attribute`, il.`legend`
FROM `1vv7f_product_attribute_image` pai
LEFT JOIN `1vv7f_image_lang` il ON (il.`id_image` = pai.`id_image`)
INNER JOIN `1vv7f_image` i ON (i.`id_image` = pai.`id_image`)
WHERE i.`id_product` = 5 AND il.`id_lang` = 1 ORDER by i.`position` |
0.281
ms
|
2 |
Yes
|
|
/classes/Product.php:2668
/src/Adapter/Image/ImageRetriever.php:81 (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)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 542 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `1vv7f_stock_available`
WHERE (id_product = 18) AND (id_product_attribute = 37) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.281
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:267
/classes/Product.php:2527 (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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/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/child_cartzilla/e4/96/b1/e496b18b87ade5e5d8fd9ee4adff3b90b8089022_2.module.cartzillablocksviewstemplatesblocksblockhomecategory.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918143dc09_64787304)
/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/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 289 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_category` a
LEFT JOIN `1vv7f_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 1
LEFT JOIN `1vv7f_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.280
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:179 (__construct)
/classes/Link.php:402 (__construct)
/classes/Link.php:458 (getCategoryObject)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:67 (getCategoryLink)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/eb/dd/b2/ebddb2c357462ef8687cb2d5faeb2111369291a5_2.module.cartzillablocksviewstemplatesblocksblockhomecategoryreverse.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181307fe4_90975203)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 165 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `1vv7f_image` i
INNER JOIN 1vv7f_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `1vv7f_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 16
ORDER BY `position` |
0.280
ms
|
1 |
Yes
|
|
/classes/Product.php:3285
/src/Adapter/Image/ImageRetriever.php:75 (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)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 211 |
SELECT SQL_NO_CACHE pa.`available_date` FROM `1vv7f_product` p LEFT JOIN `1vv7f_product_attribute` pa ON (pa.`id_product` = p.`id_product`) INNER JOIN 1vv7f_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1) INNER JOIN 1vv7f_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` = 1 AND pa.`id_product` = 1 AND pa.`id_product_attribute` = 1 LIMIT 1 |
0.279
ms
|
1 |
|
|
/classes/Product.php:1180
/classes/Product.php:5557 (getAvailableDate)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 419 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `1vv7f_image` i
INNER JOIN 1vv7f_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `1vv7f_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 1
ORDER BY `position` |
0.279
ms
|
2 |
Yes
|
|
/classes/Product.php:3285
/src/Adapter/Image/ImageRetriever.php:75 (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)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 449 |
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 `1vv7f_product` p
INNER JOIN `1vv7f_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `1vv7f_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` = 18) |
0.279
ms
|
4 |
|
|
/classes/Product.php:3603
/classes/Product.php:3459 (priceCalculation)
/classes/Product.php:5431 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 262 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_manufacturer` a0
LEFT JOIN `1vv7f_manufacturer_lang` `a1` ON (a0.`id_manufacturer` = a1.`id_manufacturer`)
WHERE (a0.`id_manufacturer` = 4) AND (a1.`id_lang` = 1) |
0.278
ms
|
0 |
|
|
/classes/PrestaShopCollection.php:381
/classes/PrestaShopCollection.php:396 (getAll)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:737 (getFirst)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:678 (_getCollection)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:222 (formatFieldSelectorForFront)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:177 (formatForFront)
/modules/prettyblocks/classes/PrettyBlocksModel.php:424 (getFrontValue)
/modules/prettyblocks/classes/PrettyBlocksModel.php:288 (_formatStateForFront)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 457 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product_attribute` a
LEFT JOIN `1vv7f_product_attribute_shop` `c` ON a.`id_product_attribute` = c.`id_product_attribute` AND c.`id_shop` = 1
WHERE (a.`id_product_attribute` = 36) LIMIT 1 |
0.278
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:5623 (__construct)
/classes/Product.php:5586 (computeUnitPriceRatio)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 483 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `1vv7f_image` i
INNER JOIN 1vv7f_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `1vv7f_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 12
ORDER BY `position` |
0.278
ms
|
1 |
Yes
|
|
/classes/Product.php:3285
/src/Adapter/Image/ImageRetriever.php:75 (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)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 302 |
SELECT SQL_NO_CACHE name FROM 1vv7f_category_lang
WHERE id_shop = 1 AND id_lang = 1 AND id_category = 9 LIMIT 1 |
0.277
ms
|
1 |
|
|
/src/Adapter/Presenter/Product/ProductLazyArray.php:624
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getCategoryName)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:68 (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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/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/child_cartzilla/e4/96/b1/e496b18b87ade5e5d8fd9ee4adff3b90b8089022_2.module.cartzillablocksviewstemplatesblocksblockhomecategory.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918143dc09_64787304)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 413 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `1vv7f_image` i
INNER JOIN 1vv7f_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `1vv7f_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 5
ORDER BY `position` |
0.277
ms
|
1 |
Yes
|
|
/classes/Product.php:3285
/src/Adapter/Image/ImageRetriever.php:75 (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)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 255 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `1vv7f_image` i
INNER JOIN 1vv7f_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `1vv7f_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 14
ORDER BY `position` |
0.276
ms
|
1 |
Yes
|
|
/classes/Product.php:3285
/src/Adapter/Image/ImageRetriever.php:75 (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)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 460 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `1vv7f_image` i
INNER JOIN 1vv7f_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `1vv7f_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 18
ORDER BY `position` |
0.276
ms
|
1 |
Yes
|
|
/classes/Product.php:3285
/src/Adapter/Image/ImageRetriever.php:75 (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)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 488 |
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 `1vv7f_product` p
INNER JOIN `1vv7f_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `1vv7f_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.276
ms
|
1 |
|
|
/classes/Product.php:3603
/classes/Product.php:3459 (priceCalculation)
/classes/Product.php:5431 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 10 |
SELECT SQL_NO_CACHE domain, domain_ssl
FROM 1vv7f_shop_url
WHERE main = 1
AND id_shop = 1 LIMIT 1 |
0.276
ms
|
1 |
|
|
/classes/shop/ShopUrl.php:178
/classes/shop/ShopUrl.php:198 (cacheMainDomainForShop)
/classes/Tools.php:292 (getMainShopDomain)
/classes/Link.php:65 (getShopDomain)
/config/config.inc.php:285 (__construct)
/index.php:40 (require_once)
|
| 222 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `1vv7f_image` i
INNER JOIN 1vv7f_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `1vv7f_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 16
ORDER BY `position` |
0.276
ms
|
1 |
Yes
|
|
/classes/Product.php:3285
/src/Adapter/Image/ImageRetriever.php:75 (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)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 565 |
SELECT SQL_NO_CACHE `id_module` FROM `1vv7f_module` WHERE `name` = "ps_linklist" LIMIT 1 |
0.275
ms
|
1 |
|
|
/classes/module/Module.php:2778
/classes/module/Module.php:2266 (getModuleIdByName)
/classes/Hook.php:1243 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/b4/5e/9e/b45e9edb41c99cc854ada6c3a7cbf8c4fd389496_2.file.footer.tpl.php:29 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791819e5500_39099131)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:556 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:141 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 581 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_cms_lang`
WHERE `id_cms` = 6 AND `id_shop` = 1 |
0.274
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:81
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:138 (__construct)
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:100 (makeCmsLinks)
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:66 (makeLinks)
/modules/ps_linklist/ps_linklist.php:291 (present)
/modules/ps_linklist/ps_linklist.php:277 (getWidgetVariables)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/b4/5e/9e/b45e9edb41c99cc854ada6c3a7cbf8c4fd389496_2.file.footer.tpl.php:29 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791819e5500_39099131)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:556 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:141 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 55 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_category` a0
LEFT JOIN `1vv7f_category_lang` `a1` ON (a0.`id_category` = a1.`id_category`)
WHERE (a0.`id_category` = 4) AND (a1.`id_lang` = 1) AND (a1.`id_shop` = 1) |
0.274
ms
|
1 |
|
|
/classes/PrestaShopCollection.php:381
/classes/PrestaShopCollection.php:396 (getAll)
/modules/prettyblocks/classes/HelperBuilder.php:188 (getFirst)
/modules/cartzillablocks/classes/blocks/CartZillaHeroCategoryBlock.php:87 (getRandomCategory)
/modules/prettyblocks/classes/HelperBuilder.php:155 (registerBlocks)
/modules/cartzillablocks/cartzillablocks.php:959 (renderBlocks)
/classes/Hook.php:1237 (hookActionRegisterBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:784 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:98 (getBlocksAvailable)
/modules/prettyblocks/classes/PrettyBlocksModel.php:243 (loadBlock)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 220 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `1vv7f_image` i
INNER JOIN 1vv7f_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `1vv7f_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 6
ORDER BY `position` |
0.274
ms
|
1 |
Yes
|
|
/classes/Product.php:3285
/src/Adapter/Image/ImageRetriever.php:75 (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)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 381 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_currency` c
INNER JOIN 1vv7f_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.274
ms
|
1 |
Yes
|
|
/classes/Currency.php:687
/classes/Currency.php:669 (findAll)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/d8/99/4f/d8994f02c8612f9f0b5efe3627ca0d7ebfc76c49_2.file.header.tpl.php:88 (getCurrencies)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/d8/99/4f/d8994f02c8612f9f0b5efe3627ca0d7ebfc76c49_2.file.header.tpl.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791816ef929_48790264)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:230 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:61 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 461 |
SELECT SQL_NO_CACHE pai.`id_image`, pai.`id_product_attribute`, il.`legend`
FROM `1vv7f_product_attribute_image` pai
LEFT JOIN `1vv7f_image_lang` il ON (il.`id_image` = pai.`id_image`)
INNER JOIN `1vv7f_image` i ON (i.`id_image` = pai.`id_image`)
WHERE i.`id_product` = 18 AND il.`id_lang` = 1 ORDER by i.`position` |
0.274
ms
|
2 |
Yes
|
|
/classes/Product.php:2668
/src/Adapter/Image/ImageRetriever.php:81 (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)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 318 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product_lang`
WHERE `id_product` = 17 AND `id_shop` = 1 |
0.273
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:81
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:708 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:914 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:752 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getFlags)
/var/cache/dev/smarty/compile/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/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/child_cartzilla/e4/96/b1/e496b18b87ade5e5d8fd9ee4adff3b90b8089022_2.module.cartzillablocksviewstemplatesblocksblockhomecategory.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918143dc09_64787304)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 451 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `1vv7f_stock_available`
WHERE (id_product = 18) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.273
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:267
/classes/Product.php:4092 (getQuantityAvailableByProduct)
/classes/Product.php:5537 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 517 |
SELECT SQL_NO_CACHE name FROM 1vv7f_category_lang
WHERE id_shop = 1 AND id_lang = 1 AND id_category = 9 LIMIT 1 |
0.273
ms
|
1 |
|
|
/src/Adapter/Presenter/Product/ProductLazyArray.php:624
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getCategoryName)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:68 (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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/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/child_cartzilla/eb/dd/b2/ebddb2c357462ef8687cb2d5faeb2111369291a5_2.module.cartzillablocksviewstemplatesblocksblockhomecategoryreverse.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181307fe4_90975203)
/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/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 554 |
SELECT SQL_NO_CACHE name FROM 1vv7f_category_lang
WHERE id_shop = 1 AND id_lang = 1 AND id_category = 9 LIMIT 1 |
0.273
ms
|
1 |
|
|
/src/Adapter/Presenter/Product/ProductLazyArray.php:624
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getCategoryName)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:68 (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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/eb/de/5e/ebde5ecd27395382175f5b6bf115854ef82509c8_2.file.products-list.tpl.php:82 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791814c6ad5_81113389)
/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/child_cartzilla/14/06/4a/14064a6b847b93777f7c4ec7d24b91d83428a930_2.module.cartzillablocksviewstemplatesblocksproductstrending.tpl.php:43 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918149f3f7_83891116)
/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/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 189 |
SELECT SQL_NO_CACHE pai.`id_image`, pai.`id_product_attribute`, il.`legend`
FROM `1vv7f_product_attribute_image` pai
LEFT JOIN `1vv7f_image_lang` il ON (il.`id_image` = pai.`id_image`)
INNER JOIN `1vv7f_image` i ON (i.`id_image` = pai.`id_image`)
WHERE i.`id_product` = 3 AND il.`id_lang` = 1 ORDER by i.`position` |
0.272
ms
|
2 |
Yes
|
|
/classes/Product.php:2668
/src/Adapter/Image/ImageRetriever.php:81 (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)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 411 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `1vv7f_image` i
INNER JOIN 1vv7f_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `1vv7f_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 19
ORDER BY `position` |
0.272
ms
|
1 |
Yes
|
|
/classes/Product.php:3285
/src/Adapter/Image/ImageRetriever.php:75 (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)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 417 |
SELECT SQL_NO_CACHE pai.`id_image`, pai.`id_product_attribute`, il.`legend`
FROM `1vv7f_product_attribute_image` pai
LEFT JOIN `1vv7f_image_lang` il ON (il.`id_image` = pai.`id_image`)
INNER JOIN `1vv7f_image` i ON (i.`id_image` = pai.`id_image`)
WHERE i.`id_product` = 3 AND il.`id_lang` = 1 ORDER by i.`position` |
0.272
ms
|
2 |
Yes
|
|
/classes/Product.php:2668
/src/Adapter/Image/ImageRetriever.php:81 (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)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 420 |
SELECT SQL_NO_CACHE pai.`id_image`, pai.`id_product_attribute`, il.`legend`
FROM `1vv7f_product_attribute_image` pai
LEFT JOIN `1vv7f_image_lang` il ON (il.`id_image` = pai.`id_image`)
INNER JOIN `1vv7f_image` i ON (i.`id_image` = pai.`id_image`)
WHERE i.`id_product` = 1 AND il.`id_lang` = 1 ORDER by i.`position` |
0.272
ms
|
4 |
Yes
|
|
/classes/Product.php:2668
/src/Adapter/Image/ImageRetriever.php:81 (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)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 525 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product_lang`
WHERE `id_product` = 2 AND `id_shop` = 1 |
0.271
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:81
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:708 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:914 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:752 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getFlags)
/var/cache/dev/smarty/compile/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/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/child_cartzilla/e4/96/b1/e496b18b87ade5e5d8fd9ee4adff3b90b8089022_2.module.cartzillablocksviewstemplatesblocksblockhomecategory.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918143dc09_64787304)
/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/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 455 |
SELECT SQL_NO_CACHE pa.`available_date` FROM `1vv7f_product` p LEFT JOIN `1vv7f_product_attribute` pa ON (pa.`id_product` = p.`id_product`) INNER JOIN 1vv7f_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1) INNER JOIN 1vv7f_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` = 18 AND pa.`id_product` = 18 AND pa.`id_product_attribute` = 36 LIMIT 1 |
0.270
ms
|
1 |
|
|
/classes/Product.php:1180
/classes/Product.php:5557 (getAvailableDate)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 217 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `1vv7f_image` i
INNER JOIN 1vv7f_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `1vv7f_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 1
ORDER BY `position` |
0.269
ms
|
2 |
Yes
|
|
/classes/Product.php:3285
/src/Adapter/Image/ImageRetriever.php:75 (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)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 366 |
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `1vv7f_image` i
INNER JOIN 1vv7f_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 6
AND image_shop.`cover` = 1 LIMIT 1 |
0.269
ms
|
1 |
|
|
/classes/Product.php:3316
/var/cache/dev/smarty/compile/child_cartzilla/bd/21/55/bd21556623ed563b0ea7c7a099d166ff5e2b7556_2.module.cartzillablocksviewstemplatesblocksrelated.tpl.php:46 (getCover)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181568649_37248053)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 159 |
SELECT SQL_NO_CACHE pa.`available_date` FROM `1vv7f_product` p LEFT JOIN `1vv7f_product_attribute` pa ON (pa.`id_product` = p.`id_product`) INNER JOIN 1vv7f_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1) INNER JOIN 1vv7f_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` = 16 AND pa.`id_product` = 16 AND pa.`id_product_attribute` = 28 LIMIT 1 |
0.269
ms
|
1 |
|
|
/classes/Product.php:1180
/classes/Product.php:5557 (getAvailableDate)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 547 |
SELECT SQL_NO_CACHE name FROM 1vv7f_category_lang
WHERE id_shop = 1 AND id_lang = 1 AND id_category = 8 LIMIT 1 |
0.269
ms
|
1 |
|
|
/src/Adapter/Presenter/Product/ProductLazyArray.php:624
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getCategoryName)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:68 (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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/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/child_cartzilla/e4/96/b1/e496b18b87ade5e5d8fd9ee4adff3b90b8089022_2.module.cartzillablocksviewstemplatesblocksblockhomecategory.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918143dc09_64787304)
/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/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 589 |
SELECT SQL_NO_CACHE `id_module` FROM `1vv7f_module` WHERE `name` = "ps_customeraccountlinks" LIMIT 1 |
0.269
ms
|
1 |
|
|
/classes/module/Module.php:2778
/classes/module/Module.php:2266 (getModuleIdByName)
/classes/Hook.php:1243 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/config/smartyfront.config.inc.php:117 (coreRenderWidget)
/config/smartyfront.config.inc.php:111 ({closure})
/config/smartyfront.config.inc.php:116 (withWidget)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyWidget)
/var/cache/dev/smarty/compile/child_cartzilla/90/65/48/906548e89c8c6025457ddaeffb1980a0c743b872_2.module.ps_linklistviewstemplateshooklinkblock.tpl.php:58 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181a44c18_41814577)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/ps_linklist/ps_linklist.php:280 (fetch)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/b4/5e/9e/b45e9edb41c99cc854ada6c3a7cbf8c4fd389496_2.file.footer.tpl.php:29 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791819e5500_39099131)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:556 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:141 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 428 |
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 `1vv7f_product` p
INNER JOIN `1vv7f_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `1vv7f_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` = 2) |
0.268
ms
|
4 |
|
|
/classes/Product.php:3603
/classes/Product.php:3459 (priceCalculation)
/classes/Product.php:5431 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 294 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product_lang`
WHERE `id_product` = 4 AND `id_shop` = 1 |
0.267
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:81
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:708 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:914 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:752 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getFlags)
/var/cache/dev/smarty/compile/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/eb/dd/b2/ebddb2c357462ef8687cb2d5faeb2111369291a5_2.module.cartzillablocksviewstemplatesblocksblockhomecategoryreverse.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181307fe4_90975203)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 569 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_link_block_lang`
WHERE `id_link_block` = 1 |
0.267
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:81
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/modules/ps_linklist/src/Model/LinkBlock.php:80 (__construct)
/modules/ps_linklist/src/LegacyLinkBlockRepository.php:91 (__construct)
/modules/ps_linklist/ps_linklist.php:287 (getByIdHook)
/modules/ps_linklist/ps_linklist.php:277 (getWidgetVariables)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/b4/5e/9e/b45e9edb41c99cc854ada6c3a7cbf8c4fd389496_2.file.footer.tpl.php:29 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791819e5500_39099131)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:556 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:141 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 157 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `1vv7f_stock_available`
WHERE (id_product = 16) AND (id_product_attribute = 28) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.266
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:267
/classes/Product.php:4092 (getQuantityAvailableByProduct)
/classes/Product.php:5549 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 237 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `1vv7f_image` i
INNER JOIN 1vv7f_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `1vv7f_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 5
ORDER BY `position` |
0.266
ms
|
1 |
Yes
|
|
/classes/Product.php:3285
/src/Adapter/Image/ImageRetriever.php:75 (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)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 272 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product_lang`
WHERE `id_product` = 10 AND `id_shop` = 1 |
0.266
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:81
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:708 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:914 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:752 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getFlags)
/var/cache/dev/smarty/compile/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/eb/dd/b2/ebddb2c357462ef8687cb2d5faeb2111369291a5_2.module.cartzillablocksviewstemplatesblocksblockhomecategoryreverse.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181307fe4_90975203)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 559 |
SELECT SQL_NO_CACHE name FROM 1vv7f_category_lang
WHERE id_shop = 1 AND id_lang = 1 AND id_category = 8 LIMIT 1 |
0.266
ms
|
1 |
|
|
/src/Adapter/Presenter/Product/ProductLazyArray.php:624
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getCategoryName)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:68 (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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/eb/de/5e/ebde5ecd27395382175f5b6bf115854ef82509c8_2.file.products-list.tpl.php:82 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791814c6ad5_81113389)
/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/child_cartzilla/14/06/4a/14064a6b847b93777f7c4ec7d24b91d83428a930_2.module.cartzillablocksviewstemplatesblocksproductstrending.tpl.php:43 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918149f3f7_83891116)
/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/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 218 |
SELECT SQL_NO_CACHE pai.`id_image`, pai.`id_product_attribute`, il.`legend`
FROM `1vv7f_product_attribute_image` pai
LEFT JOIN `1vv7f_image_lang` il ON (il.`id_image` = pai.`id_image`)
INNER JOIN `1vv7f_image` i ON (i.`id_image` = pai.`id_image`)
WHERE i.`id_product` = 1 AND il.`id_lang` = 1 ORDER by i.`position` |
0.266
ms
|
4 |
Yes
|
|
/classes/Product.php:2668
/src/Adapter/Image/ImageRetriever.php:81 (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)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 440 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `1vv7f_image` i
INNER JOIN 1vv7f_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `1vv7f_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 2
ORDER BY `position` |
0.266
ms
|
1 |
Yes
|
|
/classes/Product.php:3285
/src/Adapter/Image/ImageRetriever.php:75 (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)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 58 |
SELECT SQL_NO_CACHE l.id_manufacturer FROM 1vv7f_manufacturer_lang as l
INNER JOIN 1vv7f_manufacturer m ON (m.id_manufacturer = l.id_manufacturer)
WHERE m.active = 1
AND l.id_lang = 1
ORDER BY RAND() LIMIT 5 |
0.265
ms
|
1 |
Yes
|
|
/modules/cartzillablocks/classes/blocks/CartZillaBrand.php:50
/modules/cartzillablocks/classes/blocks/CartZillaBrand.php:130 (getRandomManufacturer)
/modules/prettyblocks/classes/HelperBuilder.php:155 (registerBlocks)
/modules/cartzillablocks/cartzillablocks.php:959 (renderBlocks)
/classes/Hook.php:1237 (hookActionRegisterBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:784 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:98 (getBlocksAvailable)
/modules/prettyblocks/classes/PrettyBlocksModel.php:243 (loadBlock)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 60 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_category` a0
LEFT JOIN `1vv7f_category_lang` `a1` ON (a0.`id_category` = a1.`id_category`)
WHERE (a0.`id_category` = 3) AND (a1.`id_lang` = 1) AND (a1.`id_shop` = 1) |
0.265
ms
|
1 |
|
|
/classes/PrestaShopCollection.php:381
/classes/PrestaShopCollection.php:396 (getAll)
/modules/prettyblocks/classes/HelperBuilder.php:188 (getFirst)
/modules/cartzillablocks/classes/blocks/CartZillaProductCategoryWidget.php:91 (getRandomCategory)
/modules/prettyblocks/classes/HelperBuilder.php:155 (registerBlocks)
/modules/cartzillablocks/cartzillablocks.php:959 (renderBlocks)
/classes/Hook.php:1237 (hookActionRegisterBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:784 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:98 (getBlocksAvailable)
/modules/prettyblocks/classes/PrettyBlocksModel.php:243 (loadBlock)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 161 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product_attribute` a
LEFT JOIN `1vv7f_product_attribute_shop` `c` ON a.`id_product_attribute` = c.`id_product_attribute` AND c.`id_shop` = 1
WHERE (a.`id_product_attribute` = 28) LIMIT 1 |
0.265
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:5623 (__construct)
/classes/Product.php:5586 (computeUnitPriceRatio)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 555 |
SELECT SQL_NO_CACHE name FROM 1vv7f_category_lang
WHERE id_shop = 1 AND id_lang = 1 AND id_category = 8 LIMIT 1 |
0.265
ms
|
1 |
|
|
/src/Adapter/Presenter/Product/ProductLazyArray.php:624
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getCategoryName)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:68 (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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/eb/de/5e/ebde5ecd27395382175f5b6bf115854ef82509c8_2.file.products-list.tpl.php:82 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791814c6ad5_81113389)
/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/child_cartzilla/14/06/4a/14064a6b847b93777f7c4ec7d24b91d83428a930_2.module.cartzillablocksviewstemplatesblocksproductstrending.tpl.php:43 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918149f3f7_83891116)
/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/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 195 |
SELECT SQL_NO_CACHE pai.`id_image`, pai.`id_product_attribute`, il.`legend`
FROM `1vv7f_product_attribute_image` pai
LEFT JOIN `1vv7f_image_lang` il ON (il.`id_image` = pai.`id_image`)
INNER JOIN `1vv7f_image` i ON (i.`id_image` = pai.`id_image`)
WHERE i.`id_product` = 4 AND il.`id_lang` = 1 ORDER by i.`position` |
0.264
ms
|
2 |
Yes
|
|
/classes/Product.php:2668
/src/Adapter/Image/ImageRetriever.php:81 (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)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 249 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product_attribute` a
LEFT JOIN `1vv7f_product_attribute_shop` `c` ON a.`id_product_attribute` = c.`id_product_attribute` AND c.`id_shop` = 1
WHERE (a.`id_product_attribute` = 26) LIMIT 1 |
0.264
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:5623 (__construct)
/classes/Product.php:5586 (computeUnitPriceRatio)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 349 |
SELECT SQL_NO_CACHE name FROM 1vv7f_category_lang
WHERE id_shop = 1 AND id_lang = 1 AND id_category = 7 LIMIT 1 |
0.264
ms
|
1 |
|
|
/src/Adapter/Presenter/Product/ProductLazyArray.php:624
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getCategoryName)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:68 (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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/eb/de/5e/ebde5ecd27395382175f5b6bf115854ef82509c8_2.file.products-list.tpl.php:82 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791814c6ad5_81113389)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/14/06/4a/14064a6b847b93777f7c4ec7d24b91d83428a930_2.module.cartzillablocksviewstemplatesblocksproductstrending.tpl.php:43 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918149f3f7_83891116)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 64 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_category` a
LEFT JOIN `1vv7f_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 2) LIMIT 1 |
0.263
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:179 (__construct)
/modules/cartzillablocks/cartzillablocks.php:1144 (__construct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 240 |
SELECT SQL_NO_CACHE 1 FROM `1vv7f_specific_price` WHERE id_product = 11 LIMIT 1 |
0.262
ms
|
1 |
|
|
/classes/SpecificPrice.php:432
/classes/SpecificPrice.php:520 (couldHaveSpecificPrice)
/classes/Product.php:3569 (getSpecificPrice)
/classes/Product.php:3459 (priceCalculation)
/classes/Product.php:5431 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 568 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_link_block` a
LEFT JOIN `1vv7f_link_block_shop` `c` ON a.`id_link_block` = c.`id_link_block` AND c.`id_shop` = 1
WHERE (a.`id_link_block` = 1) LIMIT 1 |
0.262
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/modules/ps_linklist/src/Model/LinkBlock.php:80 (__construct)
/modules/ps_linklist/src/LegacyLinkBlockRepository.php:91 (__construct)
/modules/ps_linklist/ps_linklist.php:287 (getByIdHook)
/modules/ps_linklist/ps_linklist.php:277 (getWidgetVariables)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/b4/5e/9e/b45e9edb41c99cc854ada6c3a7cbf8c4fd389496_2.file.footer.tpl.php:29 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791819e5500_39099131)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:556 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:141 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 579 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_cms_lang`
WHERE `id_cms` = 2 AND `id_shop` = 1 |
0.262
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:81
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:138 (__construct)
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:100 (makeCmsLinks)
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:66 (makeLinks)
/modules/ps_linklist/ps_linklist.php:291 (present)
/modules/ps_linklist/ps_linklist.php:277 (getWidgetVariables)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/b4/5e/9e/b45e9edb41c99cc854ada6c3a7cbf8c4fd389496_2.file.footer.tpl.php:29 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791819e5500_39099131)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:556 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:141 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 206 |
SELECT SQL_NO_CACHE `reduction`
FROM `1vv7f_product_group_reduction_cache`
WHERE `id_product` = 1 AND `id_group` = 1 LIMIT 1 |
0.262
ms
|
0 |
|
|
/classes/GroupReduction.php:146
/classes/Product.php:3733 (getValueForProduct)
/classes/Product.php:3459 (priceCalculation)
/classes/Product.php:5431 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 265 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_manufacturer` a0
LEFT JOIN `1vv7f_manufacturer_lang` `a1` ON (a0.`id_manufacturer` = a1.`id_manufacturer`)
WHERE (a0.`id_manufacturer` = 6) AND (a1.`id_lang` = 1) |
0.262
ms
|
0 |
|
|
/classes/PrestaShopCollection.php:381
/classes/PrestaShopCollection.php:396 (getAll)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:737 (getFirst)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:678 (_getCollection)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:222 (formatFieldSelectorForFront)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:177 (formatForFront)
/modules/prettyblocks/classes/PrettyBlocksModel.php:424 (getFrontValue)
/modules/prettyblocks/classes/PrettyBlocksModel.php:288 (_formatStateForFront)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 600 |
SELECT SQL_NO_CACHE *
FROM 1vv7f_meta m
LEFT JOIN 1vv7f_meta_lang ml ON m.id_meta = ml.id_meta
WHERE (
m.page = "sitemap"
OR m.page = "sitemap"
)
AND ml.id_lang = 1
AND ml.id_shop = 1 LIMIT 1 |
0.261
ms
|
1 |
|
|
/classes/Meta.php:181
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:192 (getMetaByPage)
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:108 (makeStaticLinks)
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:66 (makeLinks)
/modules/ps_linklist/ps_linklist.php:291 (present)
/modules/ps_linklist/ps_linklist.php:277 (getWidgetVariables)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/b4/5e/9e/b45e9edb41c99cc854ada6c3a7cbf8c4fd389496_2.file.footer.tpl.php:39 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791819e5500_39099131)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:556 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:141 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 354 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `1vv7f_stock_available`
WHERE (id_product = 5) AND (id_product_attribute = 20) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.261
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:267
/classes/Product.php:2527 (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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/eb/de/5e/ebde5ecd27395382175f5b6bf115854ef82509c8_2.file.products-list.tpl.php:82 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791814c6ad5_81113389)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/14/06/4a/14064a6b847b93777f7c4ec7d24b91d83428a930_2.module.cartzillablocksviewstemplatesblocksproductstrending.tpl.php:43 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918149f3f7_83891116)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 213 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product_attribute` a
LEFT JOIN `1vv7f_product_attribute_shop` `c` ON a.`id_product_attribute` = c.`id_product_attribute` AND c.`id_shop` = 1
WHERE (a.`id_product_attribute` = 1) LIMIT 1 |
0.260
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:5623 (__construct)
/classes/Product.php:5586 (computeUnitPriceRatio)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 586 |
SELECT SQL_NO_CACHE *
FROM 1vv7f_meta m
LEFT JOIN 1vv7f_meta_lang ml ON m.id_meta = ml.id_meta
WHERE (
m.page = "contact"
OR m.page = "contact"
)
AND ml.id_lang = 1
AND ml.id_shop = 1 LIMIT 1 |
0.260
ms
|
1 |
|
|
/classes/Meta.php:181
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:192 (getMetaByPage)
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:108 (makeStaticLinks)
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:66 (makeLinks)
/modules/ps_linklist/ps_linklist.php:291 (present)
/modules/ps_linklist/ps_linklist.php:277 (getWidgetVariables)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/b4/5e/9e/b45e9edb41c99cc854ada6c3a7cbf8c4fd389496_2.file.footer.tpl.php:29 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791819e5500_39099131)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:556 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:141 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 57 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_category` a0
LEFT JOIN `1vv7f_category_lang` `a1` ON (a0.`id_category` = a1.`id_category`)
WHERE (a0.`id_category` = 3) AND (a1.`id_lang` = 1) AND (a1.`id_shop` = 1) |
0.260
ms
|
1 |
|
|
/classes/PrestaShopCollection.php:381
/classes/PrestaShopCollection.php:396 (getAll)
/modules/prettyblocks/classes/HelperBuilder.php:188 (getFirst)
/modules/cartzillablocks/classes/blocks/CartZillaThumbnailCategory.php:115 (getRandomCategory)
/modules/prettyblocks/classes/HelperBuilder.php:155 (registerBlocks)
/modules/cartzillablocks/cartzillablocks.php:959 (renderBlocks)
/classes/Hook.php:1237 (hookActionRegisterBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:784 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:98 (getBlocksAvailable)
/modules/prettyblocks/classes/PrettyBlocksModel.php:243 (loadBlock)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 238 |
SELECT SQL_NO_CACHE pai.`id_image`, pai.`id_product_attribute`, il.`legend`
FROM `1vv7f_product_attribute_image` pai
LEFT JOIN `1vv7f_image_lang` il ON (il.`id_image` = pai.`id_image`)
INNER JOIN `1vv7f_image` i ON (i.`id_image` = pai.`id_image`)
WHERE i.`id_product` = 5 AND il.`id_lang` = 1 ORDER by i.`position` |
0.260
ms
|
2 |
Yes
|
|
/classes/Product.php:2668
/src/Adapter/Image/ImageRetriever.php:81 (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)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 588 |
SELECT SQL_NO_CACHE *
FROM 1vv7f_meta m
LEFT JOIN 1vv7f_meta_lang ml ON m.id_meta = ml.id_meta
WHERE (
m.page = "stores"
OR m.page = "stores"
)
AND ml.id_lang = 1
AND ml.id_shop = 1 LIMIT 1 |
0.260
ms
|
1 |
|
|
/classes/Meta.php:181
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:192 (getMetaByPage)
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:108 (makeStaticLinks)
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:66 (makeLinks)
/modules/ps_linklist/ps_linklist.php:291 (present)
/modules/ps_linklist/ps_linklist.php:277 (getWidgetVariables)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/b4/5e/9e/b45e9edb41c99cc854ada6c3a7cbf8c4fd389496_2.file.footer.tpl.php:29 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791819e5500_39099131)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:556 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:141 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 62 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_category` a0
LEFT JOIN `1vv7f_category_lang` `a1` ON (a0.`id_category` = a1.`id_category`)
WHERE (a0.`id_category` = 1) AND (a1.`id_lang` = 1) AND (a1.`id_shop` = 1) |
0.259
ms
|
1 |
|
|
/classes/PrestaShopCollection.php:381
/classes/PrestaShopCollection.php:396 (getAll)
/modules/prettyblocks/classes/HelperBuilder.php:188 (getFirst)
/modules/prettyblocks/classes/prettyblocks/blocks/PrettyBlocksFeaturedProducts.php:50 (getRandomCategory)
/modules/prettyblocks/classes/HelperBuilder.php:155 (registerBlocks)
/modules/prettyblocks/prettyblocks.php:731 (renderBlocks)
/classes/Hook.php:1237 (hookActionRegisterBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:784 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:98 (getBlocksAvailable)
/modules/prettyblocks/classes/PrettyBlocksModel.php:243 (loadBlock)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 247 |
SELECT SQL_NO_CACHE pa.`available_date` FROM `1vv7f_product` p LEFT JOIN `1vv7f_product_attribute` pa ON (pa.`id_product` = p.`id_product`) INNER JOIN 1vv7f_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1) INNER JOIN 1vv7f_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` = 11 AND pa.`id_product` = 11 AND pa.`id_product_attribute` = 26 LIMIT 1 |
0.259
ms
|
1 |
|
|
/classes/Product.php:1180
/classes/Product.php:5557 (getAvailableDate)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 279 |
SELECT SQL_NO_CACHE `id_module` FROM `1vv7f_module` WHERE `name` = "productcomments" LIMIT 1 |
0.259
ms
|
1 |
|
|
/classes/module/Module.php:2778
/classes/module/Module.php:2266 (getModuleIdByName)
/classes/Hook.php:1243 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:93 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/eb/dd/b2/ebddb2c357462ef8687cb2d5faeb2111369291a5_2.module.cartzillablocksviewstemplatesblocksblockhomecategoryreverse.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181307fe4_90975203)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 182 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product_attribute` a
LEFT JOIN `1vv7f_product_attribute_shop` `c` ON a.`id_product_attribute` = c.`id_product_attribute` AND c.`id_shop` = 1
WHERE (a.`id_product_attribute` = 32) LIMIT 1 |
0.258
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:5623 (__construct)
/classes/Product.php:5586 (computeUnitPriceRatio)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 283 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product_lang`
WHERE `id_product` = 3 AND `id_shop` = 1 |
0.258
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:81
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:708 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:914 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:752 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getFlags)
/var/cache/dev/smarty/compile/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/eb/dd/b2/ebddb2c357462ef8687cb2d5faeb2111369291a5_2.module.cartzillablocksviewstemplatesblocksblockhomecategoryreverse.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181307fe4_90975203)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 453 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `1vv7f_stock_available`
WHERE (id_product = 18) AND (id_product_attribute = 36) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.258
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:267
/classes/Product.php:4092 (getQuantityAvailableByProduct)
/classes/Product.php:5549 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 536 |
SELECT SQL_NO_CACHE name FROM 1vv7f_category_lang
WHERE id_shop = 1 AND id_lang = 1 AND id_category = 8 LIMIT 1 |
0.258
ms
|
1 |
|
|
/src/Adapter/Presenter/Product/ProductLazyArray.php:624
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getCategoryName)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:68 (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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/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/child_cartzilla/e4/96/b1/e496b18b87ade5e5d8fd9ee4adff3b90b8089022_2.module.cartzillablocksviewstemplatesblocksblockhomecategory.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918143dc09_64787304)
/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/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 291 |
SELECT SQL_NO_CACHE name FROM 1vv7f_category_lang
WHERE id_shop = 1 AND id_lang = 1 AND id_category = 9 LIMIT 1 |
0.257
ms
|
1 |
|
|
/src/Adapter/Presenter/Product/ProductLazyArray.php:624
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getCategoryName)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:68 (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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/eb/dd/b2/ebddb2c357462ef8687cb2d5faeb2111369291a5_2.module.cartzillablocksviewstemplatesblocksblockhomecategoryreverse.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181307fe4_90975203)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 309 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `1vv7f_stock_available`
WHERE (id_product = 16) AND (id_product_attribute = 30) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.257
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:267
/classes/Product.php:2527 (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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/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/child_cartzilla/e4/96/b1/e496b18b87ade5e5d8fd9ee4adff3b90b8089022_2.module.cartzillablocksviewstemplatesblocksblockhomecategory.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918143dc09_64787304)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 376 |
SELECT SQL_NO_CACHE `id_module` FROM `1vv7f_module` WHERE `name` = "ps_languageselector" LIMIT 1 |
0.257
ms
|
1 |
|
|
/classes/module/Module.php:2778
/classes/module/Module.php:2266 (getModuleIdByName)
/classes/Hook.php:1243 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/d8/99/4f/d8994f02c8612f9f0b5efe3627ca0d7ebfc76c49_2.file.header.tpl.php:85 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/d8/99/4f/d8994f02c8612f9f0b5efe3627ca0d7ebfc76c49_2.file.header.tpl.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791816ef929_48790264)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:230 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:61 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 316 |
SELECT SQL_NO_CACHE name FROM 1vv7f_category_lang
WHERE id_shop = 1 AND id_lang = 1 AND id_category = 8 LIMIT 1 |
0.257
ms
|
1 |
|
|
/src/Adapter/Presenter/Product/ProductLazyArray.php:624
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getCategoryName)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:68 (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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/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/child_cartzilla/e4/96/b1/e496b18b87ade5e5d8fd9ee4adff3b90b8089022_2.module.cartzillablocksviewstemplatesblocksblockhomecategory.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918143dc09_64787304)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 383 |
SELECT SQL_NO_CACHE `id_module` FROM `1vv7f_module_shop` WHERE `id_module` = 11 AND `id_shop` = 1 LIMIT 1 |
0.256
ms
|
1 |
|
|
/classes/module/Module.php:2267
/classes/Hook.php:1243 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/d8/99/4f/d8994f02c8612f9f0b5efe3627ca0d7ebfc76c49_2.file.header.tpl.php:162 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/d8/99/4f/d8994f02c8612f9f0b5efe3627ca0d7ebfc76c49_2.file.header.tpl.php:39 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791816ef929_48790264)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:230 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:61 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 489 |
SELECT SQL_NO_CACHE `reduction`
FROM `1vv7f_product_group_reduction_cache`
WHERE `id_product` = 13 AND `id_group` = 1 LIMIT 1 |
0.256
ms
|
0 |
|
|
/classes/GroupReduction.php:146
/classes/Product.php:3733 (getValueForProduct)
/classes/Product.php:3459 (priceCalculation)
/classes/Product.php:5431 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 590 |
SELECT SQL_NO_CACHE `id_module` FROM `1vv7f_module_shop` WHERE `id_module` = 21 AND `id_shop` = 1 LIMIT 1 |
0.256
ms
|
1 |
|
|
/classes/module/Module.php:2267
/classes/Hook.php:1243 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/config/smartyfront.config.inc.php:117 (coreRenderWidget)
/config/smartyfront.config.inc.php:111 ({closure})
/config/smartyfront.config.inc.php:116 (withWidget)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyWidget)
/var/cache/dev/smarty/compile/child_cartzilla/90/65/48/906548e89c8c6025457ddaeffb1980a0c743b872_2.module.ps_linklistviewstemplateshooklinkblock.tpl.php:58 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181a44c18_41814577)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/ps_linklist/ps_linklist.php:280 (fetch)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/b4/5e/9e/b45e9edb41c99cc854ada6c3a7cbf8c4fd389496_2.file.footer.tpl.php:29 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791819e5500_39099131)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:556 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:141 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 207 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `1vv7f_stock_available`
WHERE (id_product = 1) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.256
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:267
/classes/Product.php:4092 (getQuantityAvailableByProduct)
/classes/Product.php:5537 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 234 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product_attribute` a
LEFT JOIN `1vv7f_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.256
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:5623 (__construct)
/classes/Product.php:5586 (computeUnitPriceRatio)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 552 |
SELECT SQL_NO_CACHE name FROM 1vv7f_category_lang
WHERE id_shop = 1 AND id_lang = 1 AND id_category = 8 LIMIT 1 |
0.256
ms
|
1 |
|
|
/src/Adapter/Presenter/Product/ProductLazyArray.php:624
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getCategoryName)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:68 (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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/eb/de/5e/ebde5ecd27395382175f5b6bf115854ef82509c8_2.file.products-list.tpl.php:82 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791814c6ad5_81113389)
/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/child_cartzilla/14/06/4a/14064a6b847b93777f7c4ec7d24b91d83428a930_2.module.cartzillablocksviewstemplatesblocksproductstrending.tpl.php:43 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918149f3f7_83891116)
/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/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 367 |
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `1vv7f_image` i
INNER JOIN 1vv7f_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 3
AND image_shop.`cover` = 1 LIMIT 1 |
0.255
ms
|
1 |
|
|
/classes/Product.php:3316
/var/cache/dev/smarty/compile/child_cartzilla/bd/21/55/bd21556623ed563b0ea7c7a099d166ff5e2b7556_2.module.cartzillablocksviewstemplatesblocksrelated.tpl.php:46 (getCover)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181568649_37248053)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 562 |
SELECT SQL_NO_CACHE name FROM 1vv7f_category_lang
WHERE id_shop = 1 AND id_lang = 1 AND id_category = 7 LIMIT 1 |
0.254
ms
|
1 |
|
|
/src/Adapter/Presenter/Product/ProductLazyArray.php:624
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getCategoryName)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:68 (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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/eb/de/5e/ebde5ecd27395382175f5b6bf115854ef82509c8_2.file.products-list.tpl.php:82 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791814c6ad5_81113389)
/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/child_cartzilla/14/06/4a/14064a6b847b93777f7c4ec7d24b91d83428a930_2.module.cartzillablocksviewstemplatesblocksproductstrending.tpl.php:43 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918149f3f7_83891116)
/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/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 292 |
SELECT SQL_NO_CACHE name FROM 1vv7f_category_lang
WHERE id_shop = 1 AND id_lang = 1 AND id_category = 8 LIMIT 1 |
0.253
ms
|
1 |
|
|
/src/Adapter/Presenter/Product/ProductLazyArray.php:624
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getCategoryName)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:68 (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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/eb/dd/b2/ebddb2c357462ef8687cb2d5faeb2111369291a5_2.module.cartzillablocksviewstemplatesblocksblockhomecategoryreverse.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181307fe4_90975203)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 225 |
SELECT SQL_NO_CACHE 1 FROM `1vv7f_specific_price` WHERE id_product = 5 LIMIT 1 |
0.252
ms
|
1 |
|
|
/classes/SpecificPrice.php:432
/classes/SpecificPrice.php:520 (couldHaveSpecificPrice)
/classes/Product.php:3569 (getSpecificPrice)
/classes/Product.php:3459 (priceCalculation)
/classes/Product.php:5431 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 308 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `1vv7f_stock_available`
WHERE (id_product = 16) AND (id_product_attribute = 29) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.252
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:267
/classes/Product.php:2527 (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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/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/child_cartzilla/e4/96/b1/e496b18b87ade5e5d8fd9ee4adff3b90b8089022_2.module.cartzillablocksviewstemplatesblocksblockhomecategory.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918143dc09_64787304)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 520 |
SELECT SQL_NO_CACHE name FROM 1vv7f_category_lang
WHERE id_shop = 1 AND id_lang = 1 AND id_category = 9 LIMIT 1 |
0.252
ms
|
1 |
|
|
/src/Adapter/Presenter/Product/ProductLazyArray.php:624
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getCategoryName)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:68 (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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/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/child_cartzilla/eb/dd/b2/ebddb2c357462ef8687cb2d5faeb2111369291a5_2.module.cartzillablocksviewstemplatesblocksblockhomecategoryreverse.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181307fe4_90975203)
/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/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 263 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_manufacturer` a0
LEFT JOIN `1vv7f_manufacturer_lang` `a1` ON (a0.`id_manufacturer` = a1.`id_manufacturer`)
WHERE (a0.`id_manufacturer` = 7) AND (a1.`id_lang` = 1) |
0.251
ms
|
0 |
|
|
/classes/PrestaShopCollection.php:381
/classes/PrestaShopCollection.php:396 (getAll)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:737 (getFirst)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:678 (_getCollection)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:222 (formatFieldSelectorForFront)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:177 (formatForFront)
/modules/prettyblocks/classes/PrettyBlocksModel.php:424 (getFrontValue)
/modules/prettyblocks/classes/PrettyBlocksModel.php:288 (_formatStateForFront)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 267 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_manufacturer` a0
LEFT JOIN `1vv7f_manufacturer_lang` `a1` ON (a0.`id_manufacturer` = a1.`id_manufacturer`)
WHERE (a0.`id_manufacturer` = 8) AND (a1.`id_lang` = 1) |
0.251
ms
|
0 |
|
|
/classes/PrestaShopCollection.php:381
/classes/PrestaShopCollection.php:396 (getAll)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:737 (getFirst)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:678 (_getCollection)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:222 (formatFieldSelectorForFront)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:177 (formatForFront)
/modules/prettyblocks/classes/PrettyBlocksModel.php:424 (getFrontValue)
/modules/prettyblocks/classes/PrettyBlocksModel.php:288 (_formatStateForFront)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 287 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `1vv7f_stock_available`
WHERE (id_product = 3) AND (id_product_attribute = 14) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.251
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:267
/classes/Product.php:2527 (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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/eb/dd/b2/ebddb2c357462ef8687cb2d5faeb2111369291a5_2.module.cartzillablocksviewstemplatesblocksblockhomecategoryreverse.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181307fe4_90975203)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 321 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `1vv7f_stock_available`
WHERE (id_product = 17) AND (id_product_attribute = 33) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.251
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:267
/classes/Product.php:2527 (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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/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/child_cartzilla/e4/96/b1/e496b18b87ade5e5d8fd9ee4adff3b90b8089022_2.module.cartzillablocksviewstemplatesblocksblockhomecategory.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918143dc09_64787304)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 432 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `1vv7f_stock_available`
WHERE (id_product = 2) AND (id_product_attribute = 9) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.251
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:267
/classes/Product.php:4092 (getQuantityAvailableByProduct)
/classes/Product.php:5549 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 436 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product_attribute` a
LEFT JOIN `1vv7f_product_attribute_shop` `c` ON a.`id_product_attribute` = c.`id_product_attribute` AND c.`id_shop` = 1
WHERE (a.`id_product_attribute` = 9) LIMIT 1 |
0.251
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:5623 (__construct)
/classes/Product.php:5586 (computeUnitPriceRatio)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 587 |
SELECT SQL_NO_CACHE *
FROM 1vv7f_meta m
LEFT JOIN 1vv7f_meta_lang ml ON m.id_meta = ml.id_meta
WHERE (
m.page = "sitemap"
OR m.page = "sitemap"
)
AND ml.id_lang = 1
AND ml.id_shop = 1 LIMIT 1 |
0.251
ms
|
1 |
|
|
/classes/Meta.php:181
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:192 (getMetaByPage)
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:108 (makeStaticLinks)
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:66 (makeLinks)
/modules/ps_linklist/ps_linklist.php:291 (present)
/modules/ps_linklist/ps_linklist.php:277 (getWidgetVariables)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/b4/5e/9e/b45e9edb41c99cc854ada6c3a7cbf8c4fd389496_2.file.footer.tpl.php:29 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791819e5500_39099131)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:556 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:141 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 592 |
SELECT SQL_NO_CACHE `id_module` FROM `1vv7f_module` WHERE `name` = "ps_emailsubscription" LIMIT 1 |
0.251
ms
|
1 |
|
|
/classes/module/Module.php:2778
/classes/module/Module.php:2266 (getModuleIdByName)
/classes/Hook.php:1243 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/b4/5e/9e/b45e9edb41c99cc854ada6c3a7cbf8c4fd389496_2.file.footer.tpl.php:32 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791819e5500_39099131)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:556 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:141 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 601 |
SELECT SQL_NO_CACHE *
FROM 1vv7f_meta m
LEFT JOIN 1vv7f_meta_lang ml ON m.id_meta = ml.id_meta
WHERE (
m.page = "stores"
OR m.page = "stores"
)
AND ml.id_lang = 1
AND ml.id_shop = 1 LIMIT 1 |
0.251
ms
|
1 |
|
|
/classes/Meta.php:181
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:192 (getMetaByPage)
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:108 (makeStaticLinks)
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:66 (makeLinks)
/modules/ps_linklist/ps_linklist.php:291 (present)
/modules/ps_linklist/ps_linklist.php:277 (getWidgetVariables)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/b4/5e/9e/b45e9edb41c99cc854ada6c3a7cbf8c4fd389496_2.file.footer.tpl.php:39 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791819e5500_39099131)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:556 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:141 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 199 |
SELECT SQL_NO_CACHE DISTINCT `id_product` FROM `1vv7f_specific_price` WHERE `id_product` != 0 |
0.250
ms
|
2 |
|
|
/classes/SpecificPrice.php:307
/classes/SpecificPrice.php:357 (filterOutField)
/classes/SpecificPrice.php:545 (computeExtraConditions)
/classes/Product.php:3569 (getSpecificPrice)
/classes/Product.php:3459 (priceCalculation)
/classes/Product.php:5431 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 278 |
SELECT SQL_NO_CACHE name FROM 1vv7f_category_lang
WHERE id_shop = 1 AND id_lang = 1 AND id_category = 8 LIMIT 1 |
0.250
ms
|
1 |
|
|
/src/Adapter/Presenter/Product/ProductLazyArray.php:624
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getCategoryName)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:68 (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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/eb/dd/b2/ebddb2c357462ef8687cb2d5faeb2111369291a5_2.module.cartzillablocksviewstemplatesblocksblockhomecategoryreverse.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181307fe4_90975203)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 336 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `1vv7f_stock_available`
WHERE (id_product = 1) AND (id_product_attribute = 2) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.250
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:267
/classes/Product.php:2527 (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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/eb/de/5e/ebde5ecd27395382175f5b6bf115854ef82509c8_2.file.products-list.tpl.php:82 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791814c6ad5_81113389)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/14/06/4a/14064a6b847b93777f7c4ec7d24b91d83428a930_2.module.cartzillablocksviewstemplatesblocksproductstrending.tpl.php:43 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918149f3f7_83891116)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 364 |
SELECT SQL_NO_CACHE name FROM 1vv7f_category_lang
WHERE id_shop = 1 AND id_lang = 1 AND id_category = 8 LIMIT 1 |
0.250
ms
|
1 |
|
|
/src/Adapter/Presenter/Product/ProductLazyArray.php:624
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getCategoryName)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:68 (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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/eb/de/5e/ebde5ecd27395382175f5b6bf115854ef82509c8_2.file.products-list.tpl.php:82 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791814c6ad5_81113389)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/14/06/4a/14064a6b847b93777f7c4ec7d24b91d83428a930_2.module.cartzillablocksviewstemplatesblocksproductstrending.tpl.php:43 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918149f3f7_83891116)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 369 |
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `1vv7f_image` i
INNER JOIN 1vv7f_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 7
AND image_shop.`cover` = 1 LIMIT 1 |
0.250
ms
|
1 |
|
|
/classes/Product.php:3316
/var/cache/dev/smarty/compile/child_cartzilla/bd/21/55/bd21556623ed563b0ea7c7a099d166ff5e2b7556_2.module.cartzillablocksviewstemplatesblocksrelated.tpl.php:46 (getCover)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181568649_37248053)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 505 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_manufacturer` a0
LEFT JOIN `1vv7f_manufacturer_lang` `a1` ON (a0.`id_manufacturer` = a1.`id_manufacturer`)
WHERE (a0.`id_manufacturer` = 7) AND (a1.`id_lang` = 1) |
0.250
ms
|
0 |
|
|
/classes/PrestaShopCollection.php:381
/classes/PrestaShopCollection.php:396 (getAll)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:737 (getFirst)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:678 (_getCollection)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:222 (formatFieldSelectorForFront)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:177 (formatForFront)
/modules/prettyblocks/classes/PrettyBlocksModel.php:424 (getFrontValue)
/modules/prettyblocks/classes/PrettyBlocksModel.php:288 (_formatStateForFront)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 508 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_manufacturer` a0
LEFT JOIN `1vv7f_manufacturer_lang` `a1` ON (a0.`id_manufacturer` = a1.`id_manufacturer`)
WHERE (a0.`id_manufacturer` = 3) AND (a1.`id_lang` = 1) |
0.250
ms
|
0 |
|
|
/classes/PrestaShopCollection.php:381
/classes/PrestaShopCollection.php:396 (getAll)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:737 (getFirst)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:678 (_getCollection)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:222 (formatFieldSelectorForFront)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:177 (formatForFront)
/modules/prettyblocks/classes/PrettyBlocksModel.php:424 (getFrontValue)
/modules/prettyblocks/classes/PrettyBlocksModel.php:288 (_formatStateForFront)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 571 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_link_block_lang`
WHERE `id_link_block` = 2 |
0.250
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:81
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/modules/ps_linklist/src/Model/LinkBlock.php:80 (__construct)
/modules/ps_linklist/src/LegacyLinkBlockRepository.php:91 (__construct)
/modules/ps_linklist/ps_linklist.php:287 (getByIdHook)
/modules/ps_linklist/ps_linklist.php:277 (getWidgetVariables)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/b4/5e/9e/b45e9edb41c99cc854ada6c3a7cbf8c4fd389496_2.file.footer.tpl.php:29 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791819e5500_39099131)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:556 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:141 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 264 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_manufacturer` a0
LEFT JOIN `1vv7f_manufacturer_lang` `a1` ON (a0.`id_manufacturer` = a1.`id_manufacturer`)
WHERE (a0.`id_manufacturer` = 5) AND (a1.`id_lang` = 1) |
0.250
ms
|
0 |
|
|
/classes/PrestaShopCollection.php:381
/classes/PrestaShopCollection.php:396 (getAll)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:737 (getFirst)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:678 (_getCollection)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:222 (formatFieldSelectorForFront)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:177 (formatForFront)
/modules/prettyblocks/classes/PrettyBlocksModel.php:424 (getFrontValue)
/modules/prettyblocks/classes/PrettyBlocksModel.php:288 (_formatStateForFront)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 327 |
SELECT SQL_NO_CACHE name FROM 1vv7f_category_lang
WHERE id_shop = 1 AND id_lang = 1 AND id_category = 9 LIMIT 1 |
0.249
ms
|
1 |
|
|
/src/Adapter/Presenter/Product/ProductLazyArray.php:624
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getCategoryName)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:68 (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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/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/child_cartzilla/e4/96/b1/e496b18b87ade5e5d8fd9ee4adff3b90b8089022_2.module.cartzillablocksviewstemplatesblocksblockhomecategory.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918143dc09_64787304)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 533 |
SELECT SQL_NO_CACHE name FROM 1vv7f_category_lang
WHERE id_shop = 1 AND id_lang = 1 AND id_category = 5 LIMIT 1 |
0.249
ms
|
1 |
|
|
/src/Adapter/Presenter/Product/ProductLazyArray.php:624
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getCategoryName)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:68 (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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/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/child_cartzilla/e4/96/b1/e496b18b87ade5e5d8fd9ee4adff3b90b8089022_2.module.cartzillablocksviewstemplatesblocksblockhomecategory.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918143dc09_64787304)
/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/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 209 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `1vv7f_stock_available`
WHERE (id_product = 1) AND (id_product_attribute = 1) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.248
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:267
/classes/Product.php:4092 (getQuantityAvailableByProduct)
/classes/Product.php:5549 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 176 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `1vv7f_stock_available`
WHERE (id_product = 17) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.248
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:267
/classes/Product.php:4092 (getQuantityAvailableByProduct)
/classes/Product.php:5537 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 268 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_manufacturer` a0
LEFT JOIN `1vv7f_manufacturer_lang` `a1` ON (a0.`id_manufacturer` = a1.`id_manufacturer`)
WHERE (a0.`id_manufacturer` = 2) AND (a1.`id_lang` = 1) |
0.248
ms
|
0 |
|
|
/classes/PrestaShopCollection.php:381
/classes/PrestaShopCollection.php:396 (getAll)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:737 (getFirst)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:678 (_getCollection)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:222 (formatFieldSelectorForFront)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:177 (formatForFront)
/modules/prettyblocks/classes/PrettyBlocksModel.php:424 (getFrontValue)
/modules/prettyblocks/classes/PrettyBlocksModel.php:288 (_formatStateForFront)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 389 |
SELECT SQL_NO_CACHE `id_module` FROM `1vv7f_module` WHERE `name` = "ps_mainmenu" LIMIT 1 |
0.248
ms
|
1 |
|
|
/classes/module/Module.php:2778
/classes/module/Module.php:2266 (getModuleIdByName)
/classes/Hook.php:1243 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/d8/99/4f/d8994f02c8612f9f0b5efe3627ca0d7ebfc76c49_2.file.header.tpl.php:191 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/d8/99/4f/d8994f02c8612f9f0b5efe3627ca0d7ebfc76c49_2.file.header.tpl.php:39 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791816ef929_48790264)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:230 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:61 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 584 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_cms` a
LEFT JOIN `1vv7f_cms_shop` `c` ON a.`id_cms` = c.`id_cms` AND c.`id_shop` = 1
WHERE (a.`id_cms` = 5) LIMIT 1 |
0.248
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:138 (__construct)
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:100 (makeCmsLinks)
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:66 (makeLinks)
/modules/ps_linklist/ps_linklist.php:291 (present)
/modules/ps_linklist/ps_linklist.php:277 (getWidgetVariables)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/b4/5e/9e/b45e9edb41c99cc854ada6c3a7cbf8c4fd389496_2.file.footer.tpl.php:29 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791819e5500_39099131)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:556 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:141 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 324 |
SELECT SQL_NO_CACHE name FROM 1vv7f_category_lang
WHERE id_shop = 1 AND id_lang = 1 AND id_category = 7 LIMIT 1 |
0.247
ms
|
1 |
|
|
/src/Adapter/Presenter/Product/ProductLazyArray.php:624
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getCategoryName)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:68 (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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/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/child_cartzilla/e4/96/b1/e496b18b87ade5e5d8fd9ee4adff3b90b8089022_2.module.cartzillablocksviewstemplatesblocksblockhomecategory.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918143dc09_64787304)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 551 |
SELECT SQL_NO_CACHE name FROM 1vv7f_category_lang
WHERE id_shop = 1 AND id_lang = 1 AND id_category = 5 LIMIT 1 |
0.247
ms
|
1 |
|
|
/src/Adapter/Presenter/Product/ProductLazyArray.php:624
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getCategoryName)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:68 (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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/eb/de/5e/ebde5ecd27395382175f5b6bf115854ef82509c8_2.file.products-list.tpl.php:82 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791814c6ad5_81113389)
/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/child_cartzilla/14/06/4a/14064a6b847b93777f7c4ec7d24b91d83428a930_2.module.cartzillablocksviewstemplatesblocksproductstrending.tpl.php:43 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918149f3f7_83891116)
/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/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 338 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `1vv7f_stock_available`
WHERE (id_product = 1) AND (id_product_attribute = 4) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.246
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:267
/classes/Product.php:2527 (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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/eb/de/5e/ebde5ecd27395382175f5b6bf115854ef82509c8_2.file.products-list.tpl.php:82 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791814c6ad5_81113389)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/14/06/4a/14064a6b847b93777f7c4ec7d24b91d83428a930_2.module.cartzillablocksviewstemplatesblocksproductstrending.tpl.php:43 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918149f3f7_83891116)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 356 |
SELECT SQL_NO_CACHE name FROM 1vv7f_category_lang
WHERE id_shop = 1 AND id_lang = 1 AND id_category = 9 LIMIT 1 |
0.246
ms
|
1 |
|
|
/src/Adapter/Presenter/Product/ProductLazyArray.php:624
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getCategoryName)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:68 (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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/eb/de/5e/ebde5ecd27395382175f5b6bf115854ef82509c8_2.file.products-list.tpl.php:82 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791814c6ad5_81113389)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/14/06/4a/14064a6b847b93777f7c4ec7d24b91d83428a930_2.module.cartzillablocksviewstemplatesblocksproductstrending.tpl.php:43 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918149f3f7_83891116)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 506 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_manufacturer` a0
LEFT JOIN `1vv7f_manufacturer_lang` `a1` ON (a0.`id_manufacturer` = a1.`id_manufacturer`)
WHERE (a0.`id_manufacturer` = 5) AND (a1.`id_lang` = 1) |
0.246
ms
|
0 |
|
|
/classes/PrestaShopCollection.php:381
/classes/PrestaShopCollection.php:396 (getAll)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:737 (getFirst)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:678 (_getCollection)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:222 (formatFieldSelectorForFront)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:177 (formatForFront)
/modules/prettyblocks/classes/PrettyBlocksModel.php:424 (getFrontValue)
/modules/prettyblocks/classes/PrettyBlocksModel.php:288 (_formatStateForFront)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 593 |
SELECT SQL_NO_CACHE `id_module` FROM `1vv7f_module_shop` WHERE `id_module` = 19 AND `id_shop` = 1 LIMIT 1 |
0.246
ms
|
1 |
|
|
/classes/module/Module.php:2267
/classes/Hook.php:1243 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/b4/5e/9e/b45e9edb41c99cc854ada6c3a7cbf8c4fd389496_2.file.footer.tpl.php:32 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791819e5500_39099131)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:556 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:141 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 543 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `1vv7f_stock_available`
WHERE (id_product = 18) AND (id_product_attribute = 38) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.245
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:267
/classes/Product.php:2527 (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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/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/child_cartzilla/e4/96/b1/e496b18b87ade5e5d8fd9ee4adff3b90b8089022_2.module.cartzillablocksviewstemplatesblocksblockhomecategory.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918143dc09_64787304)
/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/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 201 |
SELECT SQL_NO_CACHE 1 FROM `1vv7f_specific_price` WHERE `from` BETWEEN '2025-12-04 00:00:00' AND '2025-12-04 23:59:59' LIMIT 1 |
0.244
ms
|
1 |
|
|
/classes/SpecificPrice.php:374
/classes/SpecificPrice.php:545 (computeExtraConditions)
/classes/Product.php:3569 (getSpecificPrice)
/classes/Product.php:3459 (priceCalculation)
/classes/Product.php:5431 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 310 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `1vv7f_stock_available`
WHERE (id_product = 16) AND (id_product_attribute = 31) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.244
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:267
/classes/Product.php:2527 (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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/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/child_cartzilla/e4/96/b1/e496b18b87ade5e5d8fd9ee4adff3b90b8089022_2.module.cartzillablocksviewstemplatesblocksblockhomecategory.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918143dc09_64787304)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 312 |
SELECT SQL_NO_CACHE name FROM 1vv7f_category_lang
WHERE id_shop = 1 AND id_lang = 1 AND id_category = 7 LIMIT 1 |
0.244
ms
|
1 |
|
|
/src/Adapter/Presenter/Product/ProductLazyArray.php:624
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getCategoryName)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:68 (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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/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/child_cartzilla/e4/96/b1/e496b18b87ade5e5d8fd9ee4adff3b90b8089022_2.module.cartzillablocksviewstemplatesblocksblockhomecategory.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918143dc09_64787304)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 572 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_hook` a
WHERE (a.`id_hook` = 50) LIMIT 1 |
0.243
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:64 (__construct)
/modules/ps_linklist/ps_linklist.php:291 (present)
/modules/ps_linklist/ps_linklist.php:277 (getWidgetVariables)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/b4/5e/9e/b45e9edb41c99cc854ada6c3a7cbf8c4fd389496_2.file.footer.tpl.php:29 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791819e5500_39099131)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:556 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:141 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 339 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `1vv7f_stock_available`
WHERE (id_product = 1) AND (id_product_attribute = 5) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.243
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:267
/classes/Product.php:2527 (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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/eb/de/5e/ebde5ecd27395382175f5b6bf115854ef82509c8_2.file.products-list.tpl.php:82 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791814c6ad5_81113389)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/14/06/4a/14064a6b847b93777f7c4ec7d24b91d83428a930_2.module.cartzillablocksviewstemplatesblocksproductstrending.tpl.php:43 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918149f3f7_83891116)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 363 |
SELECT SQL_NO_CACHE name FROM 1vv7f_category_lang
WHERE id_shop = 1 AND id_lang = 1 AND id_category = 9 LIMIT 1 |
0.243
ms
|
1 |
|
|
/src/Adapter/Presenter/Product/ProductLazyArray.php:624
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getCategoryName)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:68 (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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/eb/de/5e/ebde5ecd27395382175f5b6bf115854ef82509c8_2.file.products-list.tpl.php:82 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791814c6ad5_81113389)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/14/06/4a/14064a6b847b93777f7c4ec7d24b91d83428a930_2.module.cartzillablocksviewstemplatesblocksproductstrending.tpl.php:43 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918149f3f7_83891116)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 372 |
SELECT SQL_NO_CACHE `id_module` FROM `1vv7f_module` WHERE `name` = "ps_contactinfo" LIMIT 1 |
0.243
ms
|
1 |
|
|
/classes/module/Module.php:2778
/classes/module/Module.php:2266 (getModuleIdByName)
/classes/Hook.php:1243 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/d8/99/4f/d8994f02c8612f9f0b5efe3627ca0d7ebfc76c49_2.file.header.tpl.php:79 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/d8/99/4f/d8994f02c8612f9f0b5efe3627ca0d7ebfc76c49_2.file.header.tpl.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791816ef929_48790264)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:230 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:61 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 530 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `1vv7f_stock_available`
WHERE (id_product = 2) AND (id_product_attribute = 11) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.243
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:267
/classes/Product.php:2527 (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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/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/child_cartzilla/e4/96/b1/e496b18b87ade5e5d8fd9ee4adff3b90b8089022_2.module.cartzillablocksviewstemplatesblocksblockhomecategory.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918143dc09_64787304)
/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/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 545 |
SELECT SQL_NO_CACHE name FROM 1vv7f_category_lang
WHERE id_shop = 1 AND id_lang = 1 AND id_category = 7 LIMIT 1 |
0.243
ms
|
1 |
|
|
/src/Adapter/Presenter/Product/ProductLazyArray.php:624
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getCategoryName)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:68 (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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/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/child_cartzilla/e4/96/b1/e496b18b87ade5e5d8fd9ee4adff3b90b8089022_2.module.cartzillablocksviewstemplatesblocksblockhomecategory.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918143dc09_64787304)
/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/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 198 |
SELECT SQL_NO_CACHE 1 FROM `1vv7f_specific_price` WHERE `id_product` != 0 LIMIT 1 |
0.242
ms
|
2 |
|
|
/classes/SpecificPrice.php:294
/classes/SpecificPrice.php:357 (filterOutField)
/classes/SpecificPrice.php:545 (computeExtraConditions)
/classes/Product.php:3569 (getSpecificPrice)
/classes/Product.php:3459 (priceCalculation)
/classes/Product.php:5431 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 322 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `1vv7f_stock_available`
WHERE (id_product = 17) AND (id_product_attribute = 34) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.242
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:267
/classes/Product.php:2527 (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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/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/child_cartzilla/e4/96/b1/e496b18b87ade5e5d8fd9ee4adff3b90b8089022_2.module.cartzillablocksviewstemplatesblocksblockhomecategory.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918143dc09_64787304)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 330 |
SELECT SQL_NO_CACHE name FROM 1vv7f_category_lang
WHERE id_shop = 1 AND id_lang = 1 AND id_category = 9 LIMIT 1 |
0.242
ms
|
1 |
|
|
/src/Adapter/Presenter/Product/ProductLazyArray.php:624
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getCategoryName)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:68 (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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/eb/de/5e/ebde5ecd27395382175f5b6bf115854ef82509c8_2.file.products-list.tpl.php:82 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791814c6ad5_81113389)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/14/06/4a/14064a6b847b93777f7c4ec7d24b91d83428a930_2.module.cartzillablocksviewstemplatesblocksproductstrending.tpl.php:43 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918149f3f7_83891116)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 344 |
SELECT SQL_NO_CACHE name FROM 1vv7f_category_lang
WHERE id_shop = 1 AND id_lang = 1 AND id_category = 4 LIMIT 1 |
0.242
ms
|
1 |
|
|
/src/Adapter/Presenter/Product/ProductLazyArray.php:624
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getCategoryName)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:68 (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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/eb/de/5e/ebde5ecd27395382175f5b6bf115854ef82509c8_2.file.products-list.tpl.php:82 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791814c6ad5_81113389)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/14/06/4a/14064a6b847b93777f7c4ec7d24b91d83428a930_2.module.cartzillablocksviewstemplatesblocksproductstrending.tpl.php:43 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918149f3f7_83891116)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 280 |
SELECT SQL_NO_CACHE `id_module` FROM `1vv7f_module_shop` WHERE `id_module` = 22 AND `id_shop` = 1 LIMIT 1 |
0.241
ms
|
1 |
|
|
/classes/module/Module.php:2267
/classes/Hook.php:1243 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:93 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/eb/dd/b2/ebddb2c357462ef8687cb2d5faeb2111369291a5_2.module.cartzillablocksviewstemplatesblocksblockhomecategoryreverse.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181307fe4_90975203)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 345 |
SELECT SQL_NO_CACHE name FROM 1vv7f_category_lang
WHERE id_shop = 1 AND id_lang = 1 AND id_category = 8 LIMIT 1 |
0.241
ms
|
1 |
|
|
/src/Adapter/Presenter/Product/ProductLazyArray.php:624
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getCategoryName)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:68 (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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/eb/de/5e/ebde5ecd27395382175f5b6bf115854ef82509c8_2.file.products-list.tpl.php:82 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791814c6ad5_81113389)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/14/06/4a/14064a6b847b93777f7c4ec7d24b91d83428a930_2.module.cartzillablocksviewstemplatesblocksproductstrending.tpl.php:43 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918149f3f7_83891116)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 458 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product_attribute_lang`
WHERE `id_product_attribute` = 36 |
0.241
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:81
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:5623 (__construct)
/classes/Product.php:5586 (computeUnitPriceRatio)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 578 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_cms` a
LEFT JOIN `1vv7f_cms_shop` `c` ON a.`id_cms` = c.`id_cms` AND c.`id_shop` = 1
WHERE (a.`id_cms` = 2) LIMIT 1 |
0.241
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:138 (__construct)
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:100 (makeCmsLinks)
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:66 (makeLinks)
/modules/ps_linklist/ps_linklist.php:291 (present)
/modules/ps_linklist/ps_linklist.php:277 (getWidgetVariables)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/b4/5e/9e/b45e9edb41c99cc854ada6c3a7cbf8c4fd389496_2.file.footer.tpl.php:29 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791819e5500_39099131)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:556 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:141 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 9 |
SELECT SQL_NO_CACHE id_shop
FROM `1vv7f_lang_shop`
WHERE `id_lang` = 1
AND id_shop = 1 LIMIT 1 |
0.240
ms
|
1 |
|
|
/classes/ObjectModel.php:1570
/config/config.inc.php:224 (isAssociatedToShop)
/index.php:40 (require_once)
|
| 564 |
SELECT SQL_NO_CACHE `id_module` FROM `1vv7f_module_shop` WHERE `id_module` = 20 AND `id_shop` = 1 LIMIT 1 |
0.240
ms
|
1 |
|
|
/classes/module/Module.php:2267
/classes/Hook.php:1243 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/b4/5e/9e/b45e9edb41c99cc854ada6c3a7cbf8c4fd389496_2.file.footer.tpl.php:25 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791819e5500_39099131)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:556 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:141 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 178 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `1vv7f_stock_available`
WHERE (id_product = 17) AND (id_product_attribute = 32) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.239
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:267
/classes/Product.php:4092 (getQuantityAvailableByProduct)
/classes/Product.php:5549 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 477 |
SELECT SQL_NO_CACHE 1 FROM `1vv7f_specific_price` WHERE id_product = 12 LIMIT 1 |
0.239
ms
|
1 |
|
|
/classes/SpecificPrice.php:432
/classes/SpecificPrice.php:520 (couldHaveSpecificPrice)
/classes/Product.php:3569 (getSpecificPrice)
/classes/Product.php:3459 (priceCalculation)
/classes/Product.php:5431 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 526 |
SELECT SQL_NO_CACHE cl.`link_rewrite`
FROM `1vv7f_category_lang` cl
WHERE `id_lang` = 0
AND cl.id_shop = 1
AND cl.`id_category` = 5 LIMIT 1 |
0.239
ms
|
0 |
|
|
/classes/Category.php:1396
/classes/Product.php:740 (getLinkRewrite)
/src/Adapter/Presenter/Product/ProductLazyArray.php:914 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:752 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getFlags)
/var/cache/dev/smarty/compile/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/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/child_cartzilla/e4/96/b1/e496b18b87ade5e5d8fd9ee4adff3b90b8089022_2.module.cartzillablocksviewstemplatesblocksblockhomecategory.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918143dc09_64787304)
/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/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 585 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_cms_lang`
WHERE `id_cms` = 5 AND `id_shop` = 1 |
0.239
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:81
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:138 (__construct)
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:100 (makeCmsLinks)
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:66 (makeLinks)
/modules/ps_linklist/ps_linklist.php:291 (present)
/modules/ps_linklist/ps_linklist.php:277 (getWidgetVariables)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/b4/5e/9e/b45e9edb41c99cc854ada6c3a7cbf8c4fd389496_2.file.footer.tpl.php:29 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791819e5500_39099131)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:556 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:141 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 173 |
SELECT SQL_NO_CACHE 1 FROM `1vv7f_specific_price` WHERE id_product = 17 LIMIT 1 |
0.238
ms
|
1 |
|
|
/classes/SpecificPrice.php:432
/classes/SpecificPrice.php:520 (couldHaveSpecificPrice)
/classes/Product.php:3569 (getSpecificPrice)
/classes/Product.php:3459 (priceCalculation)
/classes/Product.php:5431 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 407 |
SELECT SQL_NO_CACHE `reduction`
FROM `1vv7f_product_group_reduction_cache`
WHERE `id_product` = 19 AND `id_group` = 1 LIMIT 1 |
0.238
ms
|
0 |
|
|
/classes/GroupReduction.php:146
/classes/Product.php:3733 (getValueForProduct)
/classes/Product.php:3459 (priceCalculation)
/classes/Product.php:5431 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 228 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `1vv7f_stock_available`
WHERE (id_product = 5) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.238
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:267
/classes/Product.php:4092 (getQuantityAvailableByProduct)
/classes/Product.php:5537 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 566 |
SELECT SQL_NO_CACHE `id_module` FROM `1vv7f_module_shop` WHERE `id_module` = 1 AND `id_shop` = 1 LIMIT 1 |
0.238
ms
|
1 |
|
|
/classes/module/Module.php:2267
/classes/Hook.php:1243 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/b4/5e/9e/b45e9edb41c99cc854ada6c3a7cbf8c4fd389496_2.file.footer.tpl.php:29 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791819e5500_39099131)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:556 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:141 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 200 |
SELECT SQL_NO_CACHE 1 FROM `1vv7f_specific_price` WHERE `id_product_attribute` != 0 LIMIT 1 |
0.237
ms
|
2 |
|
|
/classes/SpecificPrice.php:294
/classes/SpecificPrice.php:365 (filterOutField)
/classes/SpecificPrice.php:545 (computeExtraConditions)
/classes/Product.php:3569 (getSpecificPrice)
/classes/Product.php:3459 (priceCalculation)
/classes/Product.php:5431 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 297 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `1vv7f_stock_available`
WHERE (id_product = 4) AND (id_product_attribute = 17) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.237
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:267
/classes/Product.php:2527 (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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/eb/dd/b2/ebddb2c357462ef8687cb2d5faeb2111369291a5_2.module.cartzillablocksviewstemplatesblocksblockhomecategoryreverse.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181307fe4_90975203)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 298 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `1vv7f_stock_available`
WHERE (id_product = 4) AND (id_product_attribute = 18) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.237
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:267
/classes/Product.php:2527 (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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/eb/dd/b2/ebddb2c357462ef8687cb2d5faeb2111369291a5_2.module.cartzillablocksviewstemplatesblocksblockhomecategoryreverse.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181307fe4_90975203)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 7 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_shop_group` a
WHERE (a.`id_shop_group` = 1) LIMIT 1 |
0.236
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/shop/Shop.php:562 (__construct)
/config/config.inc.php:179 (getGroup)
/index.php:40 (require_once)
|
| 487 |
SELECT SQL_NO_CACHE 1 FROM `1vv7f_specific_price` WHERE id_product = 13 LIMIT 1 |
0.236
ms
|
1 |
|
|
/classes/SpecificPrice.php:432
/classes/SpecificPrice.php:520 (couldHaveSpecificPrice)
/classes/Product.php:3569 (getSpecificPrice)
/classes/Product.php:3459 (priceCalculation)
/classes/Product.php:5431 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 511 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_manufacturer` a0
LEFT JOIN `1vv7f_manufacturer_lang` `a1` ON (a0.`id_manufacturer` = a1.`id_manufacturer`)
WHERE (a0.`id_manufacturer` = 1) AND (a1.`id_lang` = 1) |
0.236
ms
|
0 |
|
|
/classes/PrestaShopCollection.php:381
/classes/PrestaShopCollection.php:396 (getAll)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:737 (getFirst)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:678 (_getCollection)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:222 (formatFieldSelectorForFront)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:177 (formatForFront)
/modules/prettyblocks/classes/PrettyBlocksModel.php:424 (getFrontValue)
/modules/prettyblocks/classes/PrettyBlocksModel.php:288 (_formatStateForFront)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 580 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_cms` a
LEFT JOIN `1vv7f_cms_shop` `c` ON a.`id_cms` = c.`id_cms` AND c.`id_shop` = 1
WHERE (a.`id_cms` = 6) LIMIT 1 |
0.236
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:138 (__construct)
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:100 (makeCmsLinks)
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:66 (makeLinks)
/modules/ps_linklist/ps_linklist.php:291 (present)
/modules/ps_linklist/ps_linklist.php:277 (getWidgetVariables)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/b4/5e/9e/b45e9edb41c99cc854ada6c3a7cbf8c4fd389496_2.file.footer.tpl.php:29 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791819e5500_39099131)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:556 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:141 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 202 |
SELECT SQL_NO_CACHE 1 FROM `1vv7f_specific_price` WHERE `to` BETWEEN '2025-12-04 00:00:00' AND '2025-12-04 23:59:59' LIMIT 1 |
0.236
ms
|
1 |
|
|
/classes/SpecificPrice.php:378
/classes/SpecificPrice.php:545 (computeExtraConditions)
/classes/Product.php:3569 (getSpecificPrice)
/classes/Product.php:3459 (priceCalculation)
/classes/Product.php:5431 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 340 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `1vv7f_stock_available`
WHERE (id_product = 1) AND (id_product_attribute = 6) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.236
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:267
/classes/Product.php:2527 (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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/eb/de/5e/ebde5ecd27395382175f5b6bf115854ef82509c8_2.file.products-list.tpl.php:82 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791814c6ad5_81113389)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/14/06/4a/14064a6b847b93777f7c4ec7d24b91d83428a930_2.module.cartzillablocksviewstemplatesblocksproductstrending.tpl.php:43 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918149f3f7_83891116)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 266 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_manufacturer` a0
LEFT JOIN `1vv7f_manufacturer_lang` `a1` ON (a0.`id_manufacturer` = a1.`id_manufacturer`)
WHERE (a0.`id_manufacturer` = 3) AND (a1.`id_lang` = 1) |
0.234
ms
|
0 |
|
|
/classes/PrestaShopCollection.php:381
/classes/PrestaShopCollection.php:396 (getAll)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:737 (getFirst)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:678 (_getCollection)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:222 (formatFieldSelectorForFront)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:177 (formatForFront)
/modules/prettyblocks/classes/PrettyBlocksModel.php:424 (getFrontValue)
/modules/prettyblocks/classes/PrettyBlocksModel.php:288 (_formatStateForFront)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 299 |
SELECT SQL_NO_CACHE name FROM 1vv7f_category_lang
WHERE id_shop = 1 AND id_lang = 1 AND id_category = 9 LIMIT 1 |
0.234
ms
|
1 |
|
|
/src/Adapter/Presenter/Product/ProductLazyArray.php:624
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getCategoryName)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:68 (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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/eb/dd/b2/ebddb2c357462ef8687cb2d5faeb2111369291a5_2.module.cartzillablocksviewstemplatesblocksblockhomecategoryreverse.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181307fe4_90975203)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 398 |
SELECT SQL_NO_CACHE 1 FROM `1vv7f_specific_price` WHERE id_product = 7 LIMIT 1 |
0.234
ms
|
1 |
|
|
/classes/SpecificPrice.php:432
/classes/SpecificPrice.php:520 (couldHaveSpecificPrice)
/classes/Product.php:3569 (getSpecificPrice)
/classes/Product.php:3459 (priceCalculation)
/classes/Product.php:5431 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 362 |
SELECT SQL_NO_CACHE name FROM 1vv7f_category_lang
WHERE id_shop = 1 AND id_lang = 1 AND id_category = 8 LIMIT 1 |
0.233
ms
|
1 |
|
|
/src/Adapter/Presenter/Product/ProductLazyArray.php:624
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getCategoryName)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:68 (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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/eb/de/5e/ebde5ecd27395382175f5b6bf115854ef82509c8_2.file.products-list.tpl.php:82 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791814c6ad5_81113389)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/14/06/4a/14064a6b847b93777f7c4ec7d24b91d83428a930_2.module.cartzillablocksviewstemplatesblocksproductstrending.tpl.php:43 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918149f3f7_83891116)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 425 |
SELECT SQL_NO_CACHE 1 FROM `1vv7f_specific_price` WHERE id_product = 2 LIMIT 1 |
0.233
ms
|
1 |
|
|
/classes/SpecificPrice.php:432
/classes/SpecificPrice.php:520 (couldHaveSpecificPrice)
/classes/Product.php:3569 (getSpecificPrice)
/classes/Product.php:3459 (priceCalculation)
/classes/Product.php:5431 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 175 |
SELECT SQL_NO_CACHE `reduction`
FROM `1vv7f_product_group_reduction_cache`
WHERE `id_product` = 17 AND `id_group` = 1 LIMIT 1 |
0.232
ms
|
0 |
|
|
/classes/GroupReduction.php:146
/classes/Product.php:3733 (getValueForProduct)
/classes/Product.php:3459 (priceCalculation)
/classes/Product.php:5431 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 197 |
SELECT SQL_NO_CACHE 1 FROM `1vv7f_specific_price` WHERE id_product = 1 LIMIT 1 |
0.232
ms
|
1 |
|
|
/classes/SpecificPrice.php:432
/classes/SpecificPrice.php:520 (couldHaveSpecificPrice)
/classes/Product.php:3569 (getSpecificPrice)
/classes/Product.php:3459 (priceCalculation)
/classes/Product.php:5431 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 480 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `1vv7f_stock_available`
WHERE (id_product = 12) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.232
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:267
/classes/Product.php:4092 (getQuantityAvailableByProduct)
/classes/Product.php:5537 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 230 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `1vv7f_stock_available`
WHERE (id_product = 5) AND (id_product_attribute = 19) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.231
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:267
/classes/Product.php:4092 (getQuantityAvailableByProduct)
/classes/Product.php:5549 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 509 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_manufacturer` a0
LEFT JOIN `1vv7f_manufacturer_lang` `a1` ON (a0.`id_manufacturer` = a1.`id_manufacturer`)
WHERE (a0.`id_manufacturer` = 8) AND (a1.`id_lang` = 1) |
0.231
ms
|
0 |
|
|
/classes/PrestaShopCollection.php:381
/classes/PrestaShopCollection.php:396 (getAll)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:737 (getFirst)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:678 (_getCollection)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:222 (formatFieldSelectorForFront)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:177 (formatForFront)
/modules/prettyblocks/classes/PrettyBlocksModel.php:424 (getFrontValue)
/modules/prettyblocks/classes/PrettyBlocksModel.php:288 (_formatStateForFront)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 582 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_cms` a
LEFT JOIN `1vv7f_cms_shop` `c` ON a.`id_cms` = c.`id_cms` AND c.`id_shop` = 1
WHERE (a.`id_cms` = 4) LIMIT 1 |
0.231
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:73
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:138 (__construct)
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:100 (makeCmsLinks)
/modules/ps_linklist/src/Presenter/LinkBlockPresenter.php:66 (makeLinks)
/modules/ps_linklist/ps_linklist.php:291 (present)
/modules/ps_linklist/ps_linklist.php:277 (getWidgetVariables)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/b4/5e/9e/b45e9edb41c99cc854ada6c3a7cbf8c4fd389496_2.file.footer.tpl.php:29 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791819e5500_39099131)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:556 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:141 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 245 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `1vv7f_stock_available`
WHERE (id_product = 11) AND (id_product_attribute = 26) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.230
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:267
/classes/Product.php:4092 (getQuantityAvailableByProduct)
/classes/Product.php:5549 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 305 |
SELECT SQL_NO_CACHE cl.`link_rewrite`
FROM `1vv7f_category_lang` cl
WHERE `id_lang` = 0
AND cl.id_shop = 1
AND cl.`id_category` = 7 LIMIT 1 |
0.229
ms
|
0 |
|
|
/classes/Category.php:1396
/classes/Product.php:740 (getLinkRewrite)
/src/Adapter/Presenter/Product/ProductLazyArray.php:914 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:752 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getFlags)
/var/cache/dev/smarty/compile/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/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/child_cartzilla/e4/96/b1/e496b18b87ade5e5d8fd9ee4adff3b90b8089022_2.module.cartzillablocksviewstemplatesblocksblockhomecategory.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918143dc09_64787304)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 290 |
SELECT SQL_NO_CACHE name FROM 1vv7f_category_lang
WHERE id_shop = 1 AND id_lang = 1 AND id_category = 9 LIMIT 1 |
0.229
ms
|
1 |
|
|
/src/Adapter/Presenter/Product/ProductLazyArray.php:624
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getCategoryName)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:68 (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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/eb/dd/b2/ebddb2c357462ef8687cb2d5faeb2111369291a5_2.module.cartzillablocksviewstemplatesblocksblockhomecategoryreverse.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181307fe4_90975203)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 333 |
SELECT SQL_NO_CACHE cl.`link_rewrite`
FROM `1vv7f_category_lang` cl
WHERE `id_lang` = 0
AND cl.id_shop = 1
AND cl.`id_category` = 4 LIMIT 1 |
0.229
ms
|
0 |
|
|
/classes/Category.php:1396
/classes/Product.php:740 (getLinkRewrite)
/src/Adapter/Presenter/Product/ProductLazyArray.php:914 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:752 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getFlags)
/var/cache/dev/smarty/compile/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/eb/de/5e/ebde5ecd27395382175f5b6bf115854ef82509c8_2.file.products-list.tpl.php:82 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791814c6ad5_81113389)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/14/06/4a/14064a6b847b93777f7c4ec7d24b91d83428a930_2.module.cartzillablocksviewstemplatesblocksproductstrending.tpl.php:43 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918149f3f7_83891116)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 448 |
SELECT SQL_NO_CACHE 1 FROM `1vv7f_specific_price` WHERE id_product = 18 LIMIT 1 |
0.229
ms
|
1 |
|
|
/classes/SpecificPrice.php:432
/classes/SpecificPrice.php:520 (couldHaveSpecificPrice)
/classes/Product.php:3569 (getSpecificPrice)
/classes/Product.php:3459 (priceCalculation)
/classes/Product.php:5431 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 544 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `1vv7f_stock_available`
WHERE (id_product = 18) AND (id_product_attribute = 39) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.229
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:267
/classes/Product.php:2527 (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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/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/child_cartzilla/e4/96/b1/e496b18b87ade5e5d8fd9ee4adff3b90b8089022_2.module.cartzillablocksviewstemplatesblocksblockhomecategory.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918143dc09_64787304)
/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/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 355 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `1vv7f_stock_available`
WHERE (id_product = 5) AND (id_product_attribute = 21) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.228
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:267
/classes/Product.php:2527 (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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/eb/de/5e/ebde5ecd27395382175f5b6bf115854ef82509c8_2.file.products-list.tpl.php:82 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791814c6ad5_81113389)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/14/06/4a/14064a6b847b93777f7c4ec7d24b91d83428a930_2.module.cartzillablocksviewstemplatesblocksproductstrending.tpl.php:43 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918149f3f7_83891116)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 384 |
SELECT SQL_NO_CACHE `id_module` FROM `1vv7f_module` WHERE `name` = "ps_customersignin" LIMIT 1 |
0.228
ms
|
1 |
|
|
/classes/module/Module.php:2778
/classes/module/Module.php:2266 (getModuleIdByName)
/classes/Hook.php:1243 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/d8/99/4f/d8994f02c8612f9f0b5efe3627ca0d7ebfc76c49_2.file.header.tpl.php:176 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/d8/99/4f/d8994f02c8612f9f0b5efe3627ca0d7ebfc76c49_2.file.header.tpl.php:39 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791816ef929_48790264)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:230 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:61 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 341 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `1vv7f_stock_available`
WHERE (id_product = 1) AND (id_product_attribute = 7) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.227
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:267
/classes/Product.php:2527 (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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/eb/de/5e/ebde5ecd27395382175f5b6bf115854ef82509c8_2.file.products-list.tpl.php:82 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791814c6ad5_81113389)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/14/06/4a/14064a6b847b93777f7c4ec7d24b91d83428a930_2.module.cartzillablocksviewstemplatesblocksproductstrending.tpl.php:43 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918149f3f7_83891116)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 342 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `1vv7f_stock_available`
WHERE (id_product = 1) AND (id_product_attribute = 8) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.226
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:267
/classes/Product.php:2527 (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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/eb/de/5e/ebde5ecd27395382175f5b6bf115854ef82509c8_2.file.products-list.tpl.php:82 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791814c6ad5_81113389)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/14/06/4a/14064a6b847b93777f7c4ec7d24b91d83428a930_2.module.cartzillablocksviewstemplatesblocksproductstrending.tpl.php:43 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918149f3f7_83891116)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 401 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `1vv7f_stock_available`
WHERE (id_product = 7) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.226
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:267
/classes/Product.php:4092 (getQuantityAvailableByProduct)
/classes/Product.php:5537 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 405 |
SELECT SQL_NO_CACHE 1 FROM `1vv7f_specific_price` WHERE id_product = 19 LIMIT 1 |
0.226
ms
|
1 |
|
|
/classes/SpecificPrice.php:432
/classes/SpecificPrice.php:520 (couldHaveSpecificPrice)
/classes/Product.php:3569 (getSpecificPrice)
/classes/Product.php:3459 (priceCalculation)
/classes/Product.php:5431 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 430 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `1vv7f_stock_available`
WHERE (id_product = 2) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.226
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:267
/classes/Product.php:4092 (getQuantityAvailableByProduct)
/classes/Product.php:5537 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 507 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_manufacturer` a0
LEFT JOIN `1vv7f_manufacturer_lang` `a1` ON (a0.`id_manufacturer` = a1.`id_manufacturer`)
WHERE (a0.`id_manufacturer` = 6) AND (a1.`id_lang` = 1) |
0.226
ms
|
0 |
|
|
/classes/PrestaShopCollection.php:381
/classes/PrestaShopCollection.php:396 (getAll)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:737 (getFirst)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:678 (_getCollection)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:222 (formatFieldSelectorForFront)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:177 (formatForFront)
/modules/prettyblocks/classes/PrettyBlocksModel.php:424 (getFrontValue)
/modules/prettyblocks/classes/PrettyBlocksModel.php:288 (_formatStateForFront)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 323 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `1vv7f_stock_available`
WHERE (id_product = 17) AND (id_product_attribute = 35) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.225
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:267
/classes/Product.php:2527 (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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/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/child_cartzilla/e4/96/b1/e496b18b87ade5e5d8fd9ee4adff3b90b8089022_2.module.cartzillablocksviewstemplatesblocksblockhomecategory.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918143dc09_64787304)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 337 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `1vv7f_stock_available`
WHERE (id_product = 1) AND (id_product_attribute = 3) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.225
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:267
/classes/Product.php:2527 (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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/eb/de/5e/ebde5ecd27395382175f5b6bf115854ef82509c8_2.file.products-list.tpl.php:82 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791814c6ad5_81113389)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/14/06/4a/14064a6b847b93777f7c4ec7d24b91d83428a930_2.module.cartzillablocksviewstemplatesblocksproductstrending.tpl.php:43 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918149f3f7_83891116)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 288 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `1vv7f_stock_available`
WHERE (id_product = 3) AND (id_product_attribute = 15) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.224
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:267
/classes/Product.php:2527 (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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/eb/dd/b2/ebddb2c357462ef8687cb2d5faeb2111369291a5_2.module.cartzillablocksviewstemplatesblocksblockhomecategoryreverse.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181307fe4_90975203)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 235 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product_attribute_lang`
WHERE `id_product_attribute` = 19 |
0.223
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:81
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:5623 (__construct)
/classes/Product.php:5586 (computeUnitPriceRatio)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 243 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `1vv7f_stock_available`
WHERE (id_product = 11) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.223
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:267
/classes/Product.php:4092 (getQuantityAvailableByProduct)
/classes/Product.php:5537 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 269 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_manufacturer` a0
LEFT JOIN `1vv7f_manufacturer_lang` `a1` ON (a0.`id_manufacturer` = a1.`id_manufacturer`)
WHERE (a0.`id_manufacturer` = 1) AND (a1.`id_lang` = 1) |
0.223
ms
|
0 |
|
|
/classes/PrestaShopCollection.php:381
/classes/PrestaShopCollection.php:396 (getAll)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:737 (getFirst)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:678 (_getCollection)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:222 (formatFieldSelectorForFront)
/modules/prettyblocks/classes/prettyblocks/core/FieldCore.php:177 (formatForFront)
/modules/prettyblocks/classes/PrettyBlocksModel.php:424 (getFrontValue)
/modules/prettyblocks/classes/PrettyBlocksModel.php:288 (_formatStateForFront)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 361 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `1vv7f_stock_available`
WHERE (id_product = 11) AND (id_product_attribute = 27) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.223
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:267
/classes/Product.php:2527 (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/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/eb/de/5e/ebde5ecd27395382175f5b6bf115854ef82509c8_2.file.products-list.tpl.php:82 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791814c6ad5_81113389)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/14/06/4a/14064a6b847b93777f7c4ec7d24b91d83428a930_2.module.cartzillablocksviewstemplatesblocksproductstrending.tpl.php:43 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918149f3f7_83891116)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 400 |
SELECT SQL_NO_CACHE `reduction`
FROM `1vv7f_product_group_reduction_cache`
WHERE `id_product` = 7 AND `id_group` = 1 LIMIT 1 |
0.223
ms
|
0 |
|
|
/classes/GroupReduction.php:146
/classes/Product.php:3733 (getValueForProduct)
/classes/Product.php:3459 (priceCalculation)
/classes/Product.php:5431 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 479 |
SELECT SQL_NO_CACHE `reduction`
FROM `1vv7f_product_group_reduction_cache`
WHERE `id_product` = 12 AND `id_group` = 1 LIMIT 1 |
0.223
ms
|
0 |
|
|
/classes/GroupReduction.php:146
/classes/Product.php:3733 (getValueForProduct)
/classes/Product.php:3459 (priceCalculation)
/classes/Product.php:5431 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 183 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product_attribute_lang`
WHERE `id_product_attribute` = 32 |
0.221
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:81
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:5623 (__construct)
/classes/Product.php:5586 (computeUnitPriceRatio)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 284 |
SELECT SQL_NO_CACHE cl.`link_rewrite`
FROM `1vv7f_category_lang` cl
WHERE `id_lang` = 0
AND cl.id_shop = 1
AND cl.`id_category` = 9 LIMIT 1 |
0.221
ms
|
0 |
|
|
/classes/Category.php:1396
/classes/Product.php:740 (getLinkRewrite)
/src/Adapter/Presenter/Product/ProductLazyArray.php:914 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:752 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getFlags)
/var/cache/dev/smarty/compile/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/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/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/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/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/eb/dd/b2/ebddb2c357462ef8687cb2d5faeb2111369291a5_2.module.cartzillablocksviewstemplatesblocksblockhomecategoryreverse.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181307fe4_90975203)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 385 |
SELECT SQL_NO_CACHE `id_module` FROM `1vv7f_module_shop` WHERE `id_module` = 8 AND `id_shop` = 1 LIMIT 1 |
0.220
ms
|
1 |
|
|
/classes/module/Module.php:2267
/classes/Hook.php:1243 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/d8/99/4f/d8994f02c8612f9f0b5efe3627ca0d7ebfc76c49_2.file.header.tpl.php:176 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/d8/99/4f/d8994f02c8612f9f0b5efe3627ca0d7ebfc76c49_2.file.header.tpl.php:39 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791816ef929_48790264)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:230 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:61 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 408 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `1vv7f_stock_available`
WHERE (id_product = 19) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.220
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:267
/classes/Product.php:4092 (getQuantityAvailableByProduct)
/classes/Product.php:5537 (getQuantity)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 386 |
SELECT SQL_NO_CACHE `id_module` FROM `1vv7f_module` WHERE `name` = "ps_shoppingcart" LIMIT 1 |
0.218
ms
|
1 |
|
|
/classes/module/Module.php:2778
/classes/module/Module.php:2266 (getModuleIdByName)
/classes/Hook.php:1243 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/d8/99/4f/d8994f02c8612f9f0b5efe3627ca0d7ebfc76c49_2.file.header.tpl.php:176 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/d8/99/4f/d8994f02c8612f9f0b5efe3627ca0d7ebfc76c49_2.file.header.tpl.php:39 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791816ef929_48790264)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:230 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:61 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 242 |
SELECT SQL_NO_CACHE `reduction`
FROM `1vv7f_product_group_reduction_cache`
WHERE `id_product` = 11 AND `id_group` = 1 LIMIT 1 |
0.218
ms
|
0 |
|
|
/classes/GroupReduction.php:146
/classes/Product.php:3733 (getValueForProduct)
/classes/Product.php:3459 (priceCalculation)
/classes/Product.php:5431 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 437 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product_attribute_lang`
WHERE `id_product_attribute` = 9 |
0.217
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:81
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:5623 (__construct)
/classes/Product.php:5586 (computeUnitPriceRatio)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 164 |
SELECT SQL_NO_CACHE cl.`link_rewrite`
FROM `1vv7f_category_lang` cl
WHERE `id_lang` = 1
AND cl.id_shop = 1
AND cl.`id_category` = 7 LIMIT 1 |
0.217
ms
|
1 |
|
|
/classes/Category.php:1396
/classes/Product.php:740 (getLinkRewrite)
/src/Adapter/Image/ImageRetriever.php:68 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:941 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:137 (fillImages)
/src/Adapter/Presenter/Product/ProductPresenter.php:100 (__construct)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 450 |
SELECT SQL_NO_CACHE `reduction`
FROM `1vv7f_product_group_reduction_cache`
WHERE `id_product` = 18 AND `id_group` = 1 LIMIT 1 |
0.217
ms
|
0 |
|
|
/classes/GroupReduction.php:146
/classes/Product.php:3733 (getValueForProduct)
/classes/Product.php:3459 (priceCalculation)
/classes/Product.php:5431 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 273 |
SELECT SQL_NO_CACHE cl.`link_rewrite`
FROM `1vv7f_category_lang` cl
WHERE `id_lang` = 0
AND cl.id_shop = 1
AND cl.`id_category` = 8 LIMIT 1 |
0.216
ms
|
0 |
|
|
/classes/Category.php:1396
/classes/Product.php:740 (getLinkRewrite)
/src/Adapter/Presenter/Product/ProductLazyArray.php:914 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:752 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:264 (getFlags)
/var/cache/dev/smarty/compile/child_cartzilla/9f/2a/78/9f2a7879dcbb5f631f9a48b386ebffcad2115ffc_2.file.product-flags.tpl.php:24 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181359ac5_66884036)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzilla/a5/ec/bf/a5ecbf6241d772b112462ee0424329777380c4bf_2.file.product.tpl.php:27 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791813453f2_62422392)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/90/6f/21/906f218a4f9c1ef70e246f1bbb2d3c064a9a0d11_2.module.cartzillablocksviewstemplatesblocks_content_block.tpl.php:94 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181321805_62931736)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/eb/dd/b2/ebddb2c357462ef8687cb2d5faeb2111369291a5_2.module.cartzillablocksviewstemplatesblocksblockhomecategoryreverse.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69179181307fe4_90975203)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzilla/7e/17/75/7e1775c6b6587be7705f5612fead85b3c3d78d62_2.module.prettyblocksviewstemplatesfrontzone.tpl.php:46 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791812d7dc2_26939339)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/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:2417 (fetch)
/modules/prettyblocks/prettyblocks.php:680 (fetch)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 214 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product_attribute_lang`
WHERE `id_product_attribute` = 1 |
0.215
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:81
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:5623 (__construct)
/classes/Product.php:5586 (computeUnitPriceRatio)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 250 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product_attribute_lang`
WHERE `id_product_attribute` = 26 |
0.215
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:81
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:5623 (__construct)
/classes/Product.php:5586 (computeUnitPriceRatio)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 382 |
SELECT SQL_NO_CACHE `id_module` FROM `1vv7f_module` WHERE `name` = "ps_searchbar" LIMIT 1 |
0.215
ms
|
1 |
|
|
/classes/module/Module.php:2778
/classes/module/Module.php:2266 (getModuleIdByName)
/classes/Hook.php:1243 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/d8/99/4f/d8994f02c8612f9f0b5efe3627ca0d7ebfc76c49_2.file.header.tpl.php:162 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/d8/99/4f/d8994f02c8612f9f0b5efe3627ca0d7ebfc76c49_2.file.header.tpl.php:39 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791816ef929_48790264)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:230 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:61 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 162 |
SELECT SQL_NO_CACHE *
FROM `1vv7f_product_attribute_lang`
WHERE `id_product_attribute` = 28 |
0.214
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:81
/classes/ObjectModel.php:217 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:5623 (__construct)
/classes/Product.php:5586 (computeUnitPriceRatio)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 374 |
SELECT SQL_NO_CACHE `need_identification_number`
FROM `1vv7f_country`
WHERE `id_country` = 8 LIMIT 1 |
0.214
ms
|
1 |
|
|
/classes/Country.php:406
/classes/AddressFormat.php:632 (isNeedDniByCountryId)
/classes/AddressFormat.php:613 (getFormat)
/classes/AddressFormat.php:560 (getAddressCountryFormat)
/classes/AddressFormat.php:436 (getOrderedAddressFields)
/modules/ps_contactinfo/ps_contactinfo.php:91 (generateAddress)
/modules/ps_contactinfo/ps_contactinfo.php:83 (getWidgetVariables)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/d8/99/4f/d8994f02c8612f9f0b5efe3627ca0d7ebfc76c49_2.file.header.tpl.php:79 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/d8/99/4f/d8994f02c8612f9f0b5efe3627ca0d7ebfc76c49_2.file.header.tpl.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791816ef929_48790264)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:230 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:61 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 426 |
SELECT SQL_NO_CACHE `priority`, `id_specific_price_priority`
FROM `1vv7f_specific_price_priority`
WHERE `id_product` = 2
ORDER BY `id_specific_price_priority` DESC LIMIT 1 |
0.214
ms
|
0 |
|
|
/classes/SpecificPrice.php:253
/classes/SpecificPrice.php:236 (getPriority)
/classes/SpecificPrice.php:562 (_getScoreQuery)
/classes/Product.php:3569 (getSpecificPrice)
/classes/Product.php:3459 (priceCalculation)
/classes/Product.php:5431 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 373 |
SELECT SQL_NO_CACHE `id_module` FROM `1vv7f_module_shop` WHERE `id_module` = 5 AND `id_shop` = 1 LIMIT 1 |
0.213
ms
|
1 |
|
|
/classes/module/Module.php:2267
/classes/Hook.php:1243 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/d8/99/4f/d8994f02c8612f9f0b5efe3627ca0d7ebfc76c49_2.file.header.tpl.php:79 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/d8/99/4f/d8994f02c8612f9f0b5efe3627ca0d7ebfc76c49_2.file.header.tpl.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791816ef929_48790264)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:230 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:61 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 379 |
SELECT SQL_NO_CACHE `id_module` FROM `1vv7f_module_shop` WHERE `id_module` = 7 AND `id_shop` = 1 LIMIT 1 |
0.212
ms
|
1 |
|
|
/classes/module/Module.php:2267
/classes/Hook.php:1243 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/d8/99/4f/d8994f02c8612f9f0b5efe3627ca0d7ebfc76c49_2.file.header.tpl.php:85 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/d8/99/4f/d8994f02c8612f9f0b5efe3627ca0d7ebfc76c49_2.file.header.tpl.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791816ef929_48790264)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:230 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:61 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 227 |
SELECT SQL_NO_CACHE `reduction`
FROM `1vv7f_product_group_reduction_cache`
WHERE `id_product` = 5 AND `id_group` = 1 LIMIT 1 |
0.211
ms
|
0 |
|
|
/classes/GroupReduction.php:146
/classes/Product.php:3733 (getValueForProduct)
/classes/Product.php:3459 (priceCalculation)
/classes/Product.php:5431 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 377 |
SELECT SQL_NO_CACHE `id_module` FROM `1vv7f_module_shop` WHERE `id_module` = 6 AND `id_shop` = 1 LIMIT 1 |
0.210
ms
|
1 |
|
|
/classes/module/Module.php:2267
/classes/Hook.php:1243 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/d8/99/4f/d8994f02c8612f9f0b5efe3627ca0d7ebfc76c49_2.file.header.tpl.php:85 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/d8/99/4f/d8994f02c8612f9f0b5efe3627ca0d7ebfc76c49_2.file.header.tpl.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791816ef929_48790264)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:230 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:61 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 439 |
SELECT SQL_NO_CACHE cl.`link_rewrite`
FROM `1vv7f_category_lang` cl
WHERE `id_lang` = 1
AND cl.id_shop = 1
AND cl.`id_category` = 5 LIMIT 1 |
0.210
ms
|
1 |
|
|
/classes/Category.php:1396
/classes/Product.php:740 (getLinkRewrite)
/src/Adapter/Image/ImageRetriever.php:68 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:941 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:137 (fillImages)
/src/Adapter/Presenter/Product/ProductPresenter.php:100 (__construct)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 378 |
SELECT SQL_NO_CACHE `id_module` FROM `1vv7f_module` WHERE `name` = "ps_currencyselector" LIMIT 1 |
0.207
ms
|
1 |
|
|
/classes/module/Module.php:2778
/classes/module/Module.php:2266 (getModuleIdByName)
/classes/Hook.php:1243 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/d8/99/4f/d8994f02c8612f9f0b5efe3627ca0d7ebfc76c49_2.file.header.tpl.php:85 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/d8/99/4f/d8994f02c8612f9f0b5efe3627ca0d7ebfc76c49_2.file.header.tpl.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791816ef929_48790264)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:230 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:61 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 203 |
SELECT SQL_NO_CACHE `priority`, `id_specific_price_priority`
FROM `1vv7f_specific_price_priority`
WHERE `id_product` = 1
ORDER BY `id_specific_price_priority` DESC LIMIT 1 |
0.207
ms
|
0 |
|
|
/classes/SpecificPrice.php:253
/classes/SpecificPrice.php:236 (getPriority)
/classes/SpecificPrice.php:562 (_getScoreQuery)
/classes/Product.php:3569 (getSpecificPrice)
/classes/Product.php:3459 (priceCalculation)
/classes/Product.php:5431 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 216 |
SELECT SQL_NO_CACHE cl.`link_rewrite`
FROM `1vv7f_category_lang` cl
WHERE `id_lang` = 1
AND cl.id_shop = 1
AND cl.`id_category` = 4 LIMIT 1 |
0.207
ms
|
1 |
|
|
/classes/Category.php:1396
/classes/Product.php:740 (getLinkRewrite)
/src/Adapter/Image/ImageRetriever.php:68 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:941 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:137 (fillImages)
/src/Adapter/Presenter/Product/ProductPresenter.php:100 (__construct)
/modules/cartzillablocks/cartzillablocks.php:1205 (present)
/modules/cartzillablocks/cartzillablocks.php:700 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingCzFeaturedProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:40 (exec)
/tools/profiling/Controller.php:65 (initContent)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 429 |
SELECT SQL_NO_CACHE `reduction`
FROM `1vv7f_product_group_reduction_cache`
WHERE `id_product` = 2 AND `id_group` = 1 LIMIT 1 |
0.205
ms
|
0 |
|
|
/classes/GroupReduction.php:146
/classes/Product.php:3733 (getValueForProduct)
/classes/Product.php:3459 (priceCalculation)
/classes/Product.php:5431 (getPriceStatic)
/classes/ProductAssembler.php:191 (getProductProperties)
/modules/cartzillablocks/cartzillablocks.php:1207 (assembleProduct)
/modules/cartzillablocks/cartzillablocks.php:1008 (getProducts)
/classes/Hook.php:1237 (hookbeforeRenderingblockCategoryProducts)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:454 (coreCallHook)
/classes/Hook.php:1128 (callHookOn)
/modules/prettyblocks/classes/PrettyBlocksModel.php:293 (exec)
/modules/prettyblocks/classes/PrettyBlocksModel.php:174 (mergeStateWithFields)
/modules/prettyblocks/prettyblocks.php:671 (getInstanceByZone)
/modules/prettyblocks/prettyblocks.php:580 (renderZone)
/classes/Hook.php:1248 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:71 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php: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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:61 (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/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:126 (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:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:521 (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/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:122 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 390 |
SELECT SQL_NO_CACHE `id_module` FROM `1vv7f_module_shop` WHERE `id_module` = 10 AND `id_shop` = 1 LIMIT 1 |
0.203
ms
|
1 |
|
|
/classes/module/Module.php:2267
/classes/Hook.php:1243 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/d8/99/4f/d8994f02c8612f9f0b5efe3627ca0d7ebfc76c49_2.file.header.tpl.php:191 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/d8/99/4f/d8994f02c8612f9f0b5efe3627ca0d7ebfc76c49_2.file.header.tpl.php:39 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791816ef929_48790264)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:230 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:61 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|
| 387 |
SELECT SQL_NO_CACHE `id_module` FROM `1vv7f_module_shop` WHERE `id_module` = 9 AND `id_shop` = 1 LIMIT 1 |
0.203
ms
|
1 |
|
|
/classes/module/Module.php:2267
/classes/Hook.php:1243 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:213 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/d8/99/4f/d8994f02c8612f9f0b5efe3627ca0d7ebfc76c49_2.file.header.tpl.php:176 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/d8/99/4f/d8994f02c8612f9f0b5efe3627ca0d7ebfc76c49_2.file.header.tpl.php:39 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791816ef929_48790264)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:230 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/49/7d/15/497d1518cc050c5e37da22cdb573e3c665bc9a60_2.file.layout-default.tpl.php:61 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815d4d19_28045610)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/66/64/f5/6664f54a565c70c5005ef23de53107268bbc21ec_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815bbc51_33538016)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/42/7b/68/427b68db2a73f9499fde4c4651d70d530a83ebe0_2.file.page-light.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_691791815ab507_08427622)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:115 (_subTemplateRender)
/var/cache/dev/smarty/compile/child_cartzillalayouts_layout_default_tpl/3e/ba/88/3eba8847b24a7cad1fd5945df25e7d5ecb7bdec3_2.file.index.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6917918159b8f2_26961259)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:40 (fetch)
/classes/controller/FrontController.php:725 (fetch)
/classes/controller/FrontController.php:709 (smartyOutputContent)
/tools/profiling/Controller.php:111 (display)
/tools/profiling/Controller.php:88 (displayProfiling)
/classes/Dispatcher.php:484 (run)
/index.php:78 (dispatch)
|