60 |
SELECT SQL_NO_CACHE p.id_product, sa.out_of_stock FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM ps22_product p LEFT JOIN ps22_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN ps22_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN ps22_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN ps22_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN ps22_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN ps22_category_product cp ON (p.id_product = cp.id_product) INNER JOIN ps22_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN ps22_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN ps22_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value=48)) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND c.nleft>=98 AND c.nright<=99 GROUP BY p.id_product) p LEFT JOIN ps22_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN ps22_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN ps22_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) GROUP BY p.id_product ORDER BY IFNULL(p.quantity, 0) <= 0, IFNULL(p.quantity, 0) <= 0 AND FIELD(sa.out_of_stock, 1) DESC, p.date_add DESC, p.id_product DESC |
17.305
ms
|
580032 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Filters/Products.php:87 (execute)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:187 (getProductByFilters)
/classes/controller/ProductListingFrontController.php:357 (runQuery)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
13 |
SELECT SQL_NO_CACHE h.`name` as hook, m.`id_module`, h.`id_hook`, m.`name` as module
FROM `ps22_module` m
INNER JOIN ps22_module_shop module_shop
ON (module_shop.id_module = m.id_module AND module_shop.id_shop = 1 AND module_shop.enable_device & 1)
INNER JOIN `ps22_hook_module` `hm` ON hm.`id_module` = m.`id_module`
INNER JOIN `ps22_hook` `h` ON hm.`id_hook` = h.`id_hook`
LEFT JOIN `ps22_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` |
12.373
ms
|
1875 |
Yes
|
Yes
|
/classes/Hook.php:1267
/classes/Hook.php:735 (getAllHookRegistrations)
/classes/Hook.php:842 (getHookModuleExecList)
/classes/Dispatcher.php:606 (exec)
/classes/Dispatcher.php:243 (loadRoutes)
/classes/Dispatcher.php:201 (__construct)
/index.php:28 (getInstance)
|
560 |
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_keywords`, 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("2024-11-08 00:00:00",
INTERVAL 10 DAY)) > 0 AS new, product_shop.price AS orderprice
FROM `ps22_category_product` cp
LEFT JOIN `ps22_product` p
ON p.`id_product` = cp.`id_product`
INNER JOIN ps22_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1) LEFT JOIN `ps22_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 ps22_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 `ps22_category_lang` cl
ON (product_shop.`id_category_default` = cl.`id_category`
AND cl.`id_lang` = 1 AND cl.id_shop = 1 )
LEFT JOIN `ps22_product_lang` pl
ON (p.`id_product` = pl.`id_product`
AND pl.`id_lang` = 1 AND pl.id_shop = 1 )
LEFT JOIN `ps22_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 `ps22_image_lang` il
ON (image_shop.`id_image` = il.`id_image`
AND il.`id_lang` = 1)
LEFT JOIN `ps22_manufacturer` m
ON m.`id_manufacturer` = p.`id_manufacturer`
WHERE product_shop.`id_shop` = 1
AND p.id_product IN(1,2) AND product_shop.`active` = 1 AND product_shop.`visibility` IN ("both", "catalog") GROUP BY p.id_product ORDER BY p.id_product=1 DESC, p.id_product=2 DESC |
6.324
ms
|
2 |
Yes
|
Yes
|
/modules/ets_megamenu/ets_megamenu.php:1298
/modules/ets_megamenu/ets_megamenu.php:1358 (getProducts)
/modules/ets_megamenu/ets_megamenu.php:1212 (displayProducts)
/modules/ets_megamenu/ets_megamenu.php:1169 (convertBlockProperties)
/classes/Hook.php:1077 (hookDisplayBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classic/f3/d5/9e/f3d59e42c90c7462916be2ef540caa369d2ac214_2.file.menu-html.tpl.php:89 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135404d5d2_33533514)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1634 (display)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (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 `ps22_configuration` c
LEFT JOIN `ps22_configuration_lang` cl ON (c.`id_configuration` = cl.`id_configuration`) |
5.345
ms
|
1350 |
|
|
/classes/Configuration.php:180
/classes/Configuration.php:229 (loadConfiguration)
/classes/Configuration.php:302 (get)
/classes/shop/Shop.php:398 (getMultiShopValues)
/config/config.inc.php:118 (initialize)
/index.php:27 (require)
|
56 |
SELECT SQL_NO_CACHE v.*, vl.*, IF(lifvlv.`url_name` IS NULL OR lifvlv.`url_name` = "", NULL, lifvlv.`url_name`) AS url_name, IF(lifvlv.`meta_title` IS NULL OR lifvlv.`meta_title` = "", NULL, lifvlv.`meta_title`) AS meta_title FROM `ps22_feature_value` v LEFT JOIN `ps22_feature_value_lang` vl ON (v.`id_feature_value` = vl.`id_feature_value` AND vl.`id_lang` = 1) LEFT JOIN `ps22_layered_indexable_feature_value_lang_value` lifvlv ON (v.`id_feature_value` = lifvlv.`id_feature_value` AND lifvlv.`id_lang` = 1) WHERE v.`id_feature` = 8 ORDER BY vl.`value` ASC |
5.106
ms
|
9 |
Yes
|
|
/modules/ps_facetedsearch/src/Filters/DataAccessor.php:204
/modules/ps_facetedsearch/src/Filters/Converter.php:402 (getFeatureValues)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:163 (createFacetedSearchFiltersFromQuery)
/classes/controller/ProductListingFrontController.php:357 (runQuery)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
0 |
SELECT SQL_NO_CACHE s.id_shop, CONCAT(su.physical_uri, su.virtual_uri) AS uri, su.domain, su.main
FROM ps22_shop_url su
LEFT JOIN ps22_shop s ON (s.id_shop = su.id_shop)
WHERE (su.domain = 'www.abimedia.fr' OR su.domain_ssl = 'www.abimedia.fr')
AND s.active = 1
AND s.deleted = 0
ORDER BY LENGTH(CONCAT(su.physical_uri, su.virtual_uri)) DESC |
4.515
ms
|
1 |
Yes
|
|
/classes/shop/Shop.php:1364
/classes/shop/Shop.php:355 (findShopByHost)
/config/config.inc.php:118 (initialize)
/index.php:27 (require)
|
33 |
SELECT SQL_NO_CACHE * FROM `ps22_hook_module_exceptions`
WHERE `id_shop` IN (1) |
4.262
ms
|
1 |
|
|
/classes/module/Module.php:2041
/classes/Hook.php:929 (getExceptionsStatic)
/classes/controller/FrontController.php:1004 (exec)
/tools/profiling/Controller.php:48 (setMedia)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
27 |
SELECT SQL_NO_CACHE *
FROM `ps22_group_lang`
WHERE `id_group` = 1 |
4.004
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:79
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Group.php:81 (__construct)
/classes/Group.php:397 (__construct)
/classes/Cart.php:249 (getCurrent)
/classes/Cart.php:222 (setTaxCalculationMethod)
/classes/controller/FrontController.php:467 (__construct)
/controllers/front/listing/CategoryController.php:81 (init)
/tools/profiling/Controller.php:41 (init)
/classes/Dispatcher.php:510 (run)
/index.php:28 (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 `ps22_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 2216 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `ps22_cart_product` cp JOIN `ps22_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `ps22_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` = 2216 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
3.767
ms
|
0 |
|
|
/classes/Cart.php:1430
/classes/Product.php:4361 (getProductQuantity)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
601 |
SELECT SQL_NO_CACHE *
FROM `ps22_category` a
LEFT JOIN `ps22_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 1
LEFT JOIN `ps22_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 210) AND (b.`id_shop` = 1) LIMIT 1 |
3.737
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:164 (__construct)
/classes/Link.php:402 (__construct)
/classes/Link.php:458 (getCategoryObject)
/var/cache/prod/smarty/compile/classic/1c/9a/17/1c9a178d33d1c64d16da67eee7b233868cc8c77c_2.file.categories-tree.tpl.php:33 (getCategoryLink)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1354073306_20529102)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1502 (display)
/modules/ets_megamenu/ets_megamenu.php:1204 (displayCategories)
/modules/ets_megamenu/ets_megamenu.php:1169 (convertBlockProperties)
/classes/Hook.php:1077 (hookDisplayBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classic/f3/d5/9e/f3d59e42c90c7462916be2ef540caa369d2ac214_2.file.menu-html.tpl.php:89 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135404d5d2_33533514)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1634 (display)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
6 |
SELECT SQL_NO_CACHE *
FROM `ps22_country` a
LEFT JOIN `ps22_country_lang` `b` ON a.`id_country` = b.`id_country` AND b.`id_lang` = 1
LEFT JOIN `ps22_country_shop` `c` ON a.`id_country` = c.`id_country` AND c.`id_shop` = 1
WHERE (a.`id_country` = 8) LIMIT 1 |
3.712
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/config/config.inc.php:147 (__construct)
/index.php:27 (require)
|
639 |
SELECT SQL_NO_CACHE pa.`id_product`, a.`color`, pac.`id_product_attribute`, 0 qty, a.`id_attribute`, al.`name`, IF(color = "", a.id_attribute, color) group_by
FROM `ps22_product_attribute` pa
INNER JOIN ps22_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
JOIN `ps22_product_attribute_combination` pac ON (pac.`id_product_attribute` = product_attribute_shop.`id_product_attribute`)
JOIN `ps22_attribute` a ON (a.`id_attribute` = pac.`id_attribute`)
JOIN `ps22_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 1)
JOIN `ps22_attribute_group` ag ON (a.id_attribute_group = ag.`id_attribute_group`)
WHERE pa.`id_product` IN (2160) AND ag.`is_color_group` = 1
GROUP BY pa.`id_product`, a.`id_attribute`, `group_by`
ORDER BY a.`position` ASC; |
3.678
ms
|
1 |
Yes
|
Yes
|
/classes/Product.php:4524
/src/Adapter/Product/ProductColorsRetriever.php:43 (getAttributesColorList)
/src/Adapter/Presenter/Product/ProductLazyArray.php:528 (getColoredVariants)
/src/Adapter/Presenter/AbstractLazyArray.php:269 (getMainVariants)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:276 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e13543ab4e7_88104059)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/0a/12/f6/0a12f6898800da3c62fd09546f560e1520e267e7_2.file.productlist.tpl.php:39 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135437ca61_98950484)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/ed/4f/4f/ed4f4f89038a00a905571edb55b9e4496246c67a_2.file.products.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135436a901_04420740)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:121 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:239 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:84 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
500 |
SELECT SQL_NO_CACHE 1 FROM ps22_cart_product cp INNER JOIN ps22_product p
ON (p.id_product = cp.id_product) INNER JOIN ps22_product_shop ps
ON (ps.id_shop = cp.id_shop AND ps.id_product = p.id_product) WHERE cp.id_cart=0 LIMIT 1 |
3.554
ms
|
1 |
|
|
/classes/Cart.php:4255
/classes/Cart.php:4230 (hasProducts)
/classes/Cart.php:2145 (isVirtualCart)
/src/Adapter/Presenter/Cart/CartLazyArray.php:185 (getOrderTotal)
/src/Adapter/Presenter/AbstractLazyArray.php:269 (getTotals)
/src/Adapter/Presenter/AbstractLazyArray.php:129 (offsetGet)
:undefined (jsonSerialize)
/classes/Smarty/SmartyLazyRegister.php:81 (json_encode)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3b/1d/e0/3b1de0ff6828d2529eff307ec21c5eab2621847a_2.file.javascript.tpl.php:65 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353d6c2c5_39818576)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/c7/98/28/c798286748943b52aab5079b6cd7c9e62f0e5130_2.file.head.tpl.php:432 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/c7/98/28/c798286748943b52aab5079b6cd7c9e62f0e5130_2.file.head.tpl.php:59 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353cdf295_84868053)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:149 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:46 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
12 |
SELECT SQL_NO_CACHE lower(name) as name
FROM `ps22_hook` h
WHERE (h.active = 1) |
3.520
ms
|
1135 |
|
|
/classes/Hook.php:1366
/classes/Hook.php:811 (getHookStatusByName)
/classes/Dispatcher.php:606 (exec)
/classes/Dispatcher.php:243 (loadRoutes)
/classes/Dispatcher.php:201 (__construct)
/index.php:28 (getInstance)
|
400 |
SELECT SQL_NO_CACHE name, value, pf.id_feature, f.position, fvl.id_feature_value
FROM ps22_feature_product pf
LEFT JOIN ps22_feature_lang fl ON (fl.id_feature = pf.id_feature AND fl.id_lang = 1)
LEFT JOIN ps22_feature_value_lang fvl ON (fvl.id_feature_value = pf.id_feature_value AND fvl.id_lang = 1)
LEFT JOIN ps22_feature f ON (f.id_feature = pf.id_feature AND fl.id_lang = 1)
INNER JOIN ps22_feature_shop feature_shop
ON (feature_shop.id_feature = f.id_feature AND feature_shop.id_shop = 1)
WHERE pf.id_product = 2150
ORDER BY f.position ASC |
3.249
ms
|
1 |
Yes
|
|
/classes/Product.php:6021
/classes/Product.php:5824 (getFrontFeaturesStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
72 |
SELECT SQL_NO_CACHE `id_hook`, `name`
FROM `ps22_hook`
UNION
SELECT `id_hook`, ha.`alias` as name
FROM `ps22_hook_alias` ha
INNER JOIN `ps22_hook` h ON ha.name = h.name |
3.217
ms
|
0 |
|
|
/classes/Hook.php:1326
/classes/Hook.php:225 (getAllHookIds)
/classes/tax/TaxManagerFactory.php:67 (getIdByName)
/classes/tax/TaxManagerFactory.php:46 (execHookTaxManagerFactory)
/classes/Product.php:3925 (getManager)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
32 |
SELECT SQL_NO_CACHE `id_hook`, `name` FROM `ps22_hook` |
3.135
ms
|
1135 |
|
|
/classes/Hook.php:1326
/classes/Hook.php:225 (getAllHookIds)
/classes/Hook.php:851 (getIdByName)
/classes/controller/FrontController.php:1004 (exec)
/tools/profiling/Controller.php:48 (setMedia)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
15 |
SELECT SQL_NO_CACHE m.page, ml.url_rewrite, ml.id_lang
FROM `ps22_meta` m
LEFT JOIN `ps22_meta_lang` ml ON (m.id_meta = ml.id_meta AND ml.id_shop = 1 )
ORDER BY LENGTH(ml.url_rewrite) DESC |
3.109
ms
|
52 |
Yes
|
|
/classes/Dispatcher.php:654
/classes/Dispatcher.php:243 (loadRoutes)
/classes/Dispatcher.php:201 (__construct)
/index.php:28 (getInstance)
|
412 |
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 `ps22_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 2145 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `ps22_cart_product` cp JOIN `ps22_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `ps22_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` = 2145 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
3.056
ms
|
0 |
|
|
/classes/Cart.php:1430
/classes/Product.php:4361 (getProductQuantity)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
44 |
SELECT SQL_NO_CACHE *
FROM `ps22_category` a0
LEFT JOIN `ps22_category_lang` `a1` ON (a0.`id_category` = a1.`id_category`)
WHERE (a0.`nleft` < 98) AND (a0.`nright` > 99) AND (a1.`id_lang` = 1) AND (a1.`id_shop` = 1)
ORDER BY a0.`nleft` asc |
3.042
ms
|
69 |
Yes
|
|
/classes/PrestaShopCollection.php:383
/classes/PrestaShopCollection.php:440 (getAll)
/controllers/front/listing/CategoryController.php:246 (rewind)
/classes/controller/FrontController.php:1876 (getBreadcrumbLinks)
/classes/controller/FrontController.php:568 (getBreadcrumb)
/classes/controller/FrontController.php:625 (assignGeneralPurposeVariables)
/controllers/front/listing/CategoryController.php:127 (initContent)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
73 |
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 `ps22_hook_module` hm
STRAIGHT_JOIN `ps22_hook` h ON (h.id_hook = hm.id_hook AND hm.id_shop = 1)
STRAIGHT_JOIN `ps22_module` as m ON (m.id_module = hm.id_module)
ORDER BY hm.position |
2.977
ms
|
671 |
|
|
/classes/Hook.php:456
/classes/Hook.php:493 (getHookModuleList)
/classes/tax/TaxManagerFactory.php:67 (getModulesFromHook)
/classes/tax/TaxManagerFactory.php:46 (execHookTaxManagerFactory)
/classes/Product.php:3925 (getManager)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
413 |
SELECT SQL_NO_CACHE name, value, pf.id_feature, f.position, fvl.id_feature_value
FROM ps22_feature_product pf
LEFT JOIN ps22_feature_lang fl ON (fl.id_feature = pf.id_feature AND fl.id_lang = 1)
LEFT JOIN ps22_feature_value_lang fvl ON (fvl.id_feature_value = pf.id_feature_value AND fvl.id_lang = 1)
LEFT JOIN ps22_feature f ON (f.id_feature = pf.id_feature AND fl.id_lang = 1)
INNER JOIN ps22_feature_shop feature_shop
ON (feature_shop.id_feature = f.id_feature AND feature_shop.id_shop = 1)
WHERE pf.id_product = 2145
ORDER BY f.position ASC |
2.967
ms
|
1 |
Yes
|
|
/classes/Product.php:6021
/classes/Product.php:5824 (getFrontFeaturesStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
644 |
SELECT SQL_NO_CACHE pa.`id_product`, a.`color`, pac.`id_product_attribute`, 0 qty, a.`id_attribute`, al.`name`, IF(color = "", a.id_attribute, color) group_by
FROM `ps22_product_attribute` pa
INNER JOIN ps22_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
JOIN `ps22_product_attribute_combination` pac ON (pac.`id_product_attribute` = product_attribute_shop.`id_product_attribute`)
JOIN `ps22_attribute` a ON (a.`id_attribute` = pac.`id_attribute`)
JOIN `ps22_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 1)
JOIN `ps22_attribute_group` ag ON (a.id_attribute_group = ag.`id_attribute_group`)
WHERE pa.`id_product` IN (2144) AND ag.`is_color_group` = 1
GROUP BY pa.`id_product`, a.`id_attribute`, `group_by`
ORDER BY a.`position` ASC; |
2.930
ms
|
1 |
Yes
|
Yes
|
/classes/Product.php:4524
/src/Adapter/Product/ProductColorsRetriever.php:43 (getAttributesColorList)
/src/Adapter/Presenter/Product/ProductLazyArray.php:528 (getColoredVariants)
/src/Adapter/Presenter/AbstractLazyArray.php:269 (getMainVariants)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:276 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e13543ab4e7_88104059)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/0a/12/f6/0a12f6898800da3c62fd09546f560e1520e267e7_2.file.productlist.tpl.php:39 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135437ca61_98950484)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/ed/4f/4f/ed4f4f89038a00a905571edb55b9e4496246c67a_2.file.products.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135436a901_04420740)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:121 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:239 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:84 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
399 |
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 `ps22_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 2150 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `ps22_cart_product` cp JOIN `ps22_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `ps22_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` = 2150 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
2.895
ms
|
0 |
|
|
/classes/Cart.php:1430
/classes/Product.php:4361 (getProductQuantity)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
642 |
SELECT SQL_NO_CACHE pa.`id_product`, a.`color`, pac.`id_product_attribute`, 0 qty, a.`id_attribute`, al.`name`, IF(color = "", a.id_attribute, color) group_by
FROM `ps22_product_attribute` pa
INNER JOIN ps22_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
JOIN `ps22_product_attribute_combination` pac ON (pac.`id_product_attribute` = product_attribute_shop.`id_product_attribute`)
JOIN `ps22_attribute` a ON (a.`id_attribute` = pac.`id_attribute`)
JOIN `ps22_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 1)
JOIN `ps22_attribute_group` ag ON (a.id_attribute_group = ag.`id_attribute_group`)
WHERE pa.`id_product` IN (2150) AND ag.`is_color_group` = 1
GROUP BY pa.`id_product`, a.`id_attribute`, `group_by`
ORDER BY a.`position` ASC; |
2.894
ms
|
1 |
Yes
|
Yes
|
/classes/Product.php:4524
/src/Adapter/Product/ProductColorsRetriever.php:43 (getAttributesColorList)
/src/Adapter/Presenter/Product/ProductLazyArray.php:528 (getColoredVariants)
/src/Adapter/Presenter/AbstractLazyArray.php:269 (getMainVariants)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:276 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e13543ab4e7_88104059)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/0a/12/f6/0a12f6898800da3c62fd09546f560e1520e267e7_2.file.productlist.tpl.php:39 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135437ca61_98950484)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/ed/4f/4f/ed4f4f89038a00a905571edb55b9e4496246c67a_2.file.products.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135436a901_04420740)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:121 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:239 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:84 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
62 |
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2024-11-08 00:00:00',
INTERVAL 10 DAY
)
) > 0) as new
FROM ps22_product p
LEFT JOIN ps22_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 1
LEFT JOIN ps22_stock_available sa ON sa.id_product = p.id_product
AND sa.id_product_attribute = 0
AND sa.id_shop = 1 LEFT JOIN ps22_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product IN (2292,2289,2287,2281,2267,2265,2264,2263,2262,2239,2234,2218,2216,2215,2213,2198,2196,2194,2188,2187,2172,2170,2168,2160,2157,2152,2150,2145,2144,2143) |
2.892
ms
|
30 |
|
|
/classes/ProductAssembler.php:95
/classes/ProductAssembler.php:203 (addMissingProductFieldsForMultipleProducts)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
5 |
SELECT SQL_NO_CACHE l.*, ls.`id_shop`
FROM `ps22_lang` l
LEFT JOIN `ps22_lang_shop` ls ON (l.id_lang = ls.id_lang) |
2.882
ms
|
1 |
|
|
/classes/Language.php:1080
/config/config.inc.php:144 (loadLanguages)
/index.php:27 (require)
|
54 |
SELECT SQL_NO_CACHE ag.id_attribute_group, agl.public_name as attribute_group_name, is_color_group, IF(liaglv.`url_name` IS NULL OR liaglv.`url_name` = "", NULL, liaglv.`url_name`) AS url_name, IF(liaglv.`meta_title` IS NULL OR liaglv.`meta_title` = "", NULL, liaglv.`meta_title`) AS meta_title, IFNULL(liag.indexable, TRUE) AS indexable FROM `ps22_attribute_group` ag INNER JOIN ps22_attribute_group_shop attribute_group_shop
ON (attribute_group_shop.id_attribute_group = ag.id_attribute_group AND attribute_group_shop.id_shop = 1) LEFT JOIN `ps22_attribute_group_lang` agl ON (ag.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 1) LEFT JOIN `ps22_layered_indexable_attribute_group` liag ON (ag.`id_attribute_group` = liag.`id_attribute_group`) LEFT JOIN `ps22_layered_indexable_attribute_group_lang_value` AS liaglv ON (ag.`id_attribute_group` = liaglv.`id_attribute_group` AND agl.`id_lang` = 1) GROUP BY ag.id_attribute_group ORDER BY ag.`position` ASC |
2.870
ms
|
5 |
Yes
|
Yes
|
/modules/ps_facetedsearch/src/Filters/DataAccessor.php:137
/modules/ps_facetedsearch/src/Filters/Converter.php:413 (getAttributesGroups)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:163 (createFacetedSearchFiltersFromQuery)
/classes/controller/ProductListingFrontController.php:357 (runQuery)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
55 |
SELECT SQL_NO_CACHE DISTINCT f.id_feature, f.*, fl.*, IF(liflv.`url_name` IS NULL OR liflv.`url_name` = "", NULL, liflv.`url_name`) AS url_name, IF(liflv.`meta_title` IS NULL OR liflv.`meta_title` = "", NULL, liflv.`meta_title`) AS meta_title, lif.indexable FROM `ps22_feature` f INNER JOIN ps22_feature_shop feature_shop
ON (feature_shop.id_feature = f.id_feature AND feature_shop.id_shop = 1) LEFT JOIN `ps22_feature_lang` fl ON (f.`id_feature` = fl.`id_feature` AND fl.`id_lang` = 1) LEFT JOIN `ps22_layered_indexable_feature` lif ON (f.`id_feature` = lif.`id_feature`) LEFT JOIN `ps22_layered_indexable_feature_lang_value` liflv ON (f.`id_feature` = liflv.`id_feature` AND liflv.`id_lang` = 1) ORDER BY f.`position` ASC |
2.846
ms
|
12 |
Yes
|
|
/modules/ps_facetedsearch/src/Filters/DataAccessor.php:171
/modules/ps_facetedsearch/src/Filters/Converter.php:388 (getFeatures)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:163 (createFacetedSearchFiltersFromQuery)
/classes/controller/ProductListingFrontController.php:357 (runQuery)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
96 |
SELECT SQL_NO_CACHE COALESCE(SUM(first_level_quantity) + SUM(pack_quantity), 0) as deep_quantity,
COALESCE(SUM(first_level_quantity), 0) as quantity
FROM (SELECT SUM(cp.`quantity`) as first_level_quantity, 0 as pack_quantity
FROM `ps22_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 2289 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `ps22_cart_product` cp JOIN `ps22_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `ps22_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` = 2289 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
2.821
ms
|
0 |
|
|
/classes/Cart.php:1430
/classes/Product.php:4361 (getProductQuantity)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
195 |
SELECT SQL_NO_CACHE name, value, pf.id_feature, f.position, fvl.id_feature_value
FROM ps22_feature_product pf
LEFT JOIN ps22_feature_lang fl ON (fl.id_feature = pf.id_feature AND fl.id_lang = 1)
LEFT JOIN ps22_feature_value_lang fvl ON (fvl.id_feature_value = pf.id_feature_value AND fvl.id_lang = 1)
LEFT JOIN ps22_feature f ON (f.id_feature = pf.id_feature AND fl.id_lang = 1)
INNER JOIN ps22_feature_shop feature_shop
ON (feature_shop.id_feature = f.id_feature AND feature_shop.id_shop = 1)
WHERE pf.id_product = 2239
ORDER BY f.position ASC |
2.777
ms
|
1 |
Yes
|
|
/classes/Product.php:6021
/classes/Product.php:5824 (getFrontFeaturesStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
631 |
SELECT SQL_NO_CACHE pa.`id_product`, a.`color`, pac.`id_product_attribute`, 0 qty, a.`id_attribute`, al.`name`, IF(color = "", a.id_attribute, color) group_by
FROM `ps22_product_attribute` pa
INNER JOIN ps22_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
JOIN `ps22_product_attribute_combination` pac ON (pac.`id_product_attribute` = product_attribute_shop.`id_product_attribute`)
JOIN `ps22_attribute` a ON (a.`id_attribute` = pac.`id_attribute`)
JOIN `ps22_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 1)
JOIN `ps22_attribute_group` ag ON (a.id_attribute_group = ag.`id_attribute_group`)
WHERE pa.`id_product` IN (2198) AND ag.`is_color_group` = 1
GROUP BY pa.`id_product`, a.`id_attribute`, `group_by`
ORDER BY a.`position` ASC; |
2.725
ms
|
1 |
Yes
|
Yes
|
/classes/Product.php:4524
/src/Adapter/Product/ProductColorsRetriever.php:43 (getAttributesColorList)
/src/Adapter/Presenter/Product/ProductLazyArray.php:528 (getColoredVariants)
/src/Adapter/Presenter/AbstractLazyArray.php:269 (getMainVariants)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:276 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e13543ab4e7_88104059)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/0a/12/f6/0a12f6898800da3c62fd09546f560e1520e267e7_2.file.productlist.tpl.php:39 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135437ca61_98950484)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/ed/4f/4f/ed4f4f89038a00a905571edb55b9e4496246c67a_2.file.products.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135436a901_04420740)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:121 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:239 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:84 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
518 |
SELECT SQL_NO_CACHE m.*,ml.title,ml.link,ml.bubble_text
FROM ps22_ets_mm_menu m
LEFT JOIN ps22_ets_mm_menu_lang ml
ON m.id_menu=ml.id_menu AND ml.id_lang=1
WHERE 1 AND m.enabled=1
ORDER BY m.sort_order asc,ml.title asc |
2.665
ms
|
64 |
Yes
|
|
/modules/ets_megamenu/ets_megamenu.php:934
/modules/ets_megamenu/ets_megamenu.php:1632 (getMenus)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
219 |
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 `ps22_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 2218 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `ps22_cart_product` cp JOIN `ps22_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `ps22_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` = 2218 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
2.633
ms
|
0 |
|
|
/classes/Cart.php:1430
/classes/Product.php:4361 (getProductQuantity)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
232 |
SELECT SQL_NO_CACHE name, value, pf.id_feature, f.position, fvl.id_feature_value
FROM ps22_feature_product pf
LEFT JOIN ps22_feature_lang fl ON (fl.id_feature = pf.id_feature AND fl.id_lang = 1)
LEFT JOIN ps22_feature_value_lang fvl ON (fvl.id_feature_value = pf.id_feature_value AND fvl.id_lang = 1)
LEFT JOIN ps22_feature f ON (f.id_feature = pf.id_feature AND fl.id_lang = 1)
INNER JOIN ps22_feature_shop feature_shop
ON (feature_shop.id_feature = f.id_feature AND feature_shop.id_shop = 1)
WHERE pf.id_product = 2216
ORDER BY f.position ASC |
2.527
ms
|
1 |
Yes
|
|
/classes/Product.php:6021
/classes/Product.php:5824 (getFrontFeaturesStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
199 |
SELECT SQL_NO_CACHE *
FROM `ps22_product` a
LEFT JOIN `ps22_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `ps22_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 2234) AND (b.`id_shop` = 1) LIMIT 1 |
2.488
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:725 (__construct)
/classes/Link.php:113 (__construct)
/classes/Link.php:189 (getProductObject)
/classes/Product.php:5660 (getProductLink)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
547 |
SELECT SQL_NO_CACHE b.*,bl.title,bl.title_link,bl.content,bl.image_link
FROM ps22_ets_mm_block b
LEFT JOIN ps22_ets_mm_block_lang bl
ON b.id_block=bl.id_block AND bl.id_lang=1
WHERE 1 AND b.id_column=31
ORDER BY b.sort_order asc,bl.title asc |
2.471
ms
|
900 |
Yes
|
|
/modules/ets_megamenu/ets_megamenu.php:965
/modules/ets_megamenu/ets_megamenu.php:955 (getBlocks)
/modules/ets_megamenu/ets_megamenu.php:940 (getColumns)
/modules/ets_megamenu/ets_megamenu.php:1632 (getMenus)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
643 |
SELECT SQL_NO_CACHE pa.`id_product`, a.`color`, pac.`id_product_attribute`, 0 qty, a.`id_attribute`, al.`name`, IF(color = "", a.id_attribute, color) group_by
FROM `ps22_product_attribute` pa
INNER JOIN ps22_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
JOIN `ps22_product_attribute_combination` pac ON (pac.`id_product_attribute` = product_attribute_shop.`id_product_attribute`)
JOIN `ps22_attribute` a ON (a.`id_attribute` = pac.`id_attribute`)
JOIN `ps22_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 1)
JOIN `ps22_attribute_group` ag ON (a.id_attribute_group = ag.`id_attribute_group`)
WHERE pa.`id_product` IN (2145) AND ag.`is_color_group` = 1
GROUP BY pa.`id_product`, a.`id_attribute`, `group_by`
ORDER BY a.`position` ASC; |
2.460
ms
|
1 |
Yes
|
Yes
|
/classes/Product.php:4524
/src/Adapter/Product/ProductColorsRetriever.php:43 (getAttributesColorList)
/src/Adapter/Presenter/Product/ProductLazyArray.php:528 (getColoredVariants)
/src/Adapter/Presenter/AbstractLazyArray.php:269 (getMainVariants)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:276 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e13543ab4e7_88104059)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/0a/12/f6/0a12f6898800da3c62fd09546f560e1520e267e7_2.file.productlist.tpl.php:39 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135437ca61_98950484)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/ed/4f/4f/ed4f4f89038a00a905571edb55b9e4496246c67a_2.file.products.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135436a901_04420740)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:121 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:239 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:84 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
637 |
SELECT SQL_NO_CACHE pa.`id_product`, a.`color`, pac.`id_product_attribute`, 0 qty, a.`id_attribute`, al.`name`, IF(color = "", a.id_attribute, color) group_by
FROM `ps22_product_attribute` pa
INNER JOIN ps22_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
JOIN `ps22_product_attribute_combination` pac ON (pac.`id_product_attribute` = product_attribute_shop.`id_product_attribute`)
JOIN `ps22_attribute` a ON (a.`id_attribute` = pac.`id_attribute`)
JOIN `ps22_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 1)
JOIN `ps22_attribute_group` ag ON (a.id_attribute_group = ag.`id_attribute_group`)
WHERE pa.`id_product` IN (2170) AND ag.`is_color_group` = 1
GROUP BY pa.`id_product`, a.`id_attribute`, `group_by`
ORDER BY a.`position` ASC; |
2.447
ms
|
1 |
Yes
|
Yes
|
/classes/Product.php:4524
/src/Adapter/Product/ProductColorsRetriever.php:43 (getAttributesColorList)
/src/Adapter/Presenter/Product/ProductLazyArray.php:528 (getColoredVariants)
/src/Adapter/Presenter/AbstractLazyArray.php:269 (getMainVariants)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:276 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e13543ab4e7_88104059)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/0a/12/f6/0a12f6898800da3c62fd09546f560e1520e267e7_2.file.productlist.tpl.php:39 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135437ca61_98950484)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/ed/4f/4f/ed4f4f89038a00a905571edb55b9e4496246c67a_2.file.products.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135436a901_04420740)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:121 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:239 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:84 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
633 |
SELECT SQL_NO_CACHE pa.`id_product`, a.`color`, pac.`id_product_attribute`, 0 qty, a.`id_attribute`, al.`name`, IF(color = "", a.id_attribute, color) group_by
FROM `ps22_product_attribute` pa
INNER JOIN ps22_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
JOIN `ps22_product_attribute_combination` pac ON (pac.`id_product_attribute` = product_attribute_shop.`id_product_attribute`)
JOIN `ps22_attribute` a ON (a.`id_attribute` = pac.`id_attribute`)
JOIN `ps22_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 1)
JOIN `ps22_attribute_group` ag ON (a.id_attribute_group = ag.`id_attribute_group`)
WHERE pa.`id_product` IN (2194) AND ag.`is_color_group` = 1
GROUP BY pa.`id_product`, a.`id_attribute`, `group_by`
ORDER BY a.`position` ASC; |
2.446
ms
|
1 |
Yes
|
Yes
|
/classes/Product.php:4524
/src/Adapter/Product/ProductColorsRetriever.php:43 (getAttributesColorList)
/src/Adapter/Presenter/Product/ProductLazyArray.php:528 (getColoredVariants)
/src/Adapter/Presenter/AbstractLazyArray.php:269 (getMainVariants)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:276 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e13543ab4e7_88104059)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/0a/12/f6/0a12f6898800da3c62fd09546f560e1520e267e7_2.file.productlist.tpl.php:39 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135437ca61_98950484)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/ed/4f/4f/ed4f4f89038a00a905571edb55b9e4496246c67a_2.file.products.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135436a901_04420740)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:121 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:239 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:84 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
97 |
SELECT SQL_NO_CACHE name, value, pf.id_feature, f.position, fvl.id_feature_value
FROM ps22_feature_product pf
LEFT JOIN ps22_feature_lang fl ON (fl.id_feature = pf.id_feature AND fl.id_lang = 1)
LEFT JOIN ps22_feature_value_lang fvl ON (fvl.id_feature_value = pf.id_feature_value AND fvl.id_lang = 1)
LEFT JOIN ps22_feature f ON (f.id_feature = pf.id_feature AND fl.id_lang = 1)
INNER JOIN ps22_feature_shop feature_shop
ON (feature_shop.id_feature = f.id_feature AND feature_shop.id_shop = 1)
WHERE pf.id_product = 2289
ORDER BY f.position ASC |
2.444
ms
|
1 |
Yes
|
|
/classes/Product.php:6021
/classes/Product.php:5824 (getFrontFeaturesStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
645 |
SELECT SQL_NO_CACHE pa.`id_product`, a.`color`, pac.`id_product_attribute`, 0 qty, a.`id_attribute`, al.`name`, IF(color = "", a.id_attribute, color) group_by
FROM `ps22_product_attribute` pa
INNER JOIN ps22_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
JOIN `ps22_product_attribute_combination` pac ON (pac.`id_product_attribute` = product_attribute_shop.`id_product_attribute`)
JOIN `ps22_attribute` a ON (a.`id_attribute` = pac.`id_attribute`)
JOIN `ps22_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 1)
JOIN `ps22_attribute_group` ag ON (a.id_attribute_group = ag.`id_attribute_group`)
WHERE pa.`id_product` IN (2143) AND ag.`is_color_group` = 1
GROUP BY pa.`id_product`, a.`id_attribute`, `group_by`
ORDER BY a.`position` ASC; |
2.414
ms
|
1 |
Yes
|
Yes
|
/classes/Product.php:4524
/src/Adapter/Product/ProductColorsRetriever.php:43 (getAttributesColorList)
/src/Adapter/Presenter/Product/ProductLazyArray.php:528 (getColoredVariants)
/src/Adapter/Presenter/AbstractLazyArray.php:269 (getMainVariants)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:276 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e13543ab4e7_88104059)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/0a/12/f6/0a12f6898800da3c62fd09546f560e1520e267e7_2.file.productlist.tpl.php:39 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135437ca61_98950484)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/ed/4f/4f/ed4f4f89038a00a905571edb55b9e4496246c67a_2.file.products.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135436a901_04420740)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:121 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:239 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:84 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
207 |
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 `ps22_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 2234 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `ps22_cart_product` cp JOIN `ps22_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `ps22_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` = 2234 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
2.390
ms
|
0 |
|
|
/classes/Cart.php:1430
/classes/Product.php:4361 (getProductQuantity)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
541 |
SELECT SQL_NO_CACHE b.*,bl.title,bl.title_link,bl.content,bl.image_link
FROM ps22_ets_mm_block b
LEFT JOIN ps22_ets_mm_block_lang bl
ON b.id_block=bl.id_block AND bl.id_lang=1
WHERE 1 AND b.id_column=32
ORDER BY b.sort_order asc,bl.title asc |
2.381
ms
|
900 |
Yes
|
|
/modules/ets_megamenu/ets_megamenu.php:965
/modules/ets_megamenu/ets_megamenu.php:955 (getBlocks)
/modules/ets_megamenu/ets_megamenu.php:940 (getColumns)
/modules/ets_megamenu/ets_megamenu.php:1632 (getMenus)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
133 |
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 `ps22_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 2267 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `ps22_cart_product` cp JOIN `ps22_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `ps22_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` = 2267 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
2.376
ms
|
0 |
|
|
/classes/Cart.php:1430
/classes/Product.php:4361 (getProductQuantity)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
604 |
SELECT SQL_NO_CACHE c.id_cms as value,CONCAT('mm_cms_',c.id_cms) as id, cl.meta_title as label
FROM ps22_cms c
LEFT JOIN ps22_cms_lang cl ON c.id_cms=cl.id_cms AND cl.id_lang=1
WHERE c.active=1 AND c.id_cms IN(52)
ORDER BY cl.meta_title asc |
2.341
ms
|
1 |
Yes
|
|
/modules/ets_megamenu/ets_megamenu.php:996
/modules/ets_megamenu/ets_megamenu.php:1193 (getCMSs)
/modules/ets_megamenu/ets_megamenu.php:1169 (convertBlockProperties)
/classes/Hook.php:1077 (hookDisplayBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classic/f3/d5/9e/f3d59e42c90c7462916be2ef540caa369d2ac214_2.file.menu-html.tpl.php:89 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135404d5d2_33533514)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1634 (display)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
640 |
SELECT SQL_NO_CACHE pa.`id_product`, a.`color`, pac.`id_product_attribute`, 0 qty, a.`id_attribute`, al.`name`, IF(color = "", a.id_attribute, color) group_by
FROM `ps22_product_attribute` pa
INNER JOIN ps22_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
JOIN `ps22_product_attribute_combination` pac ON (pac.`id_product_attribute` = product_attribute_shop.`id_product_attribute`)
JOIN `ps22_attribute` a ON (a.`id_attribute` = pac.`id_attribute`)
JOIN `ps22_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 1)
JOIN `ps22_attribute_group` ag ON (a.id_attribute_group = ag.`id_attribute_group`)
WHERE pa.`id_product` IN (2157) AND ag.`is_color_group` = 1
GROUP BY pa.`id_product`, a.`id_attribute`, `group_by`
ORDER BY a.`position` ASC; |
2.341
ms
|
1 |
Yes
|
Yes
|
/classes/Product.php:4524
/src/Adapter/Product/ProductColorsRetriever.php:43 (getAttributesColorList)
/src/Adapter/Presenter/Product/ProductLazyArray.php:528 (getColoredVariants)
/src/Adapter/Presenter/AbstractLazyArray.php:269 (getMainVariants)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:276 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e13543ab4e7_88104059)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/0a/12/f6/0a12f6898800da3c62fd09546f560e1520e267e7_2.file.productlist.tpl.php:39 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135437ca61_98950484)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/ed/4f/4f/ed4f4f89038a00a905571edb55b9e4496246c67a_2.file.products.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135436a901_04420740)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:121 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:239 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:84 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
43 |
SELECT SQL_NO_CACHE id_required_field, object_name, field_name
FROM ps22_required_field |
2.324
ms
|
1 |
|
|
/classes/ObjectModel.php:1592
/classes/ObjectModel.php:1624 (getFieldsRequiredDatabase)
/classes/ObjectModel.php:1555 (cacheFieldsRequiredDatabase)
/classes/controller/FrontController.php:567 (validateFieldsRequiredDatabase)
/classes/controller/FrontController.php:625 (assignGeneralPurposeVariables)
/controllers/front/listing/CategoryController.php:127 (initContent)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
602 |
SELECT SQL_NO_CACHE *
FROM `ps22_category` a
LEFT JOIN `ps22_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 1
LEFT JOIN `ps22_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 225) AND (b.`id_shop` = 1) LIMIT 1 |
2.268
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:164 (__construct)
/classes/Link.php:402 (__construct)
/classes/Link.php:458 (getCategoryObject)
/var/cache/prod/smarty/compile/classic/1c/9a/17/1c9a178d33d1c64d16da67eee7b233868cc8c77c_2.file.categories-tree.tpl.php:33 (getCategoryLink)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1354073306_20529102)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1502 (display)
/modules/ets_megamenu/ets_megamenu.php:1204 (displayCategories)
/modules/ets_megamenu/ets_megamenu.php:1169 (convertBlockProperties)
/classes/Hook.php:1077 (hookDisplayBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classic/f3/d5/9e/f3d59e42c90c7462916be2ef540caa369d2ac214_2.file.menu-html.tpl.php:89 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135404d5d2_33533514)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1634 (display)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
34 |
SELECT SQL_NO_CACHE m.`id_module`, m.`name`, ms.`id_module`as `mshop`
FROM `ps22_module` m
LEFT JOIN `ps22_module_shop` ms
ON m.`id_module` = ms.`id_module`
AND ms.`id_shop` = 1 |
2.265
ms
|
125 |
|
|
/classes/module/Module.php:346
/modules/ps_emailsubscription/ps_emailsubscription.php:96 (__construct)
:undefined (__construct)
/src/Core/Foundation/IoC/Container.php:123 (newInstance)
/src/Core/Foundation/IoC/Container.php:153 (makeInstanceFromClassName)
/src/Core/Foundation/IoC/Container.php:166 (doMake)
/src/Adapter/ServiceLocator.php:70 (make)
/classes/module/Module.php:1258 (get)
/tools/profiling/Module.php:35 (coreLoadModule)
/classes/module/Module.php:1237 (coreLoadModule)
/classes/Hook.php:966 (getInstanceByName)
/classes/controller/FrontController.php:1004 (exec)
/tools/profiling/Controller.php:48 (setMedia)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
622 |
SELECT SQL_NO_CACHE pa.`id_product`, a.`color`, pac.`id_product_attribute`, 0 qty, a.`id_attribute`, al.`name`, IF(color = "", a.id_attribute, color) group_by
FROM `ps22_product_attribute` pa
INNER JOIN ps22_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
JOIN `ps22_product_attribute_combination` pac ON (pac.`id_product_attribute` = product_attribute_shop.`id_product_attribute`)
JOIN `ps22_attribute` a ON (a.`id_attribute` = pac.`id_attribute`)
JOIN `ps22_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 1)
JOIN `ps22_attribute_group` ag ON (a.id_attribute_group = ag.`id_attribute_group`)
WHERE pa.`id_product` IN (2264) AND ag.`is_color_group` = 1
GROUP BY pa.`id_product`, a.`id_attribute`, `group_by`
ORDER BY a.`position` ASC; |
2.227
ms
|
1 |
Yes
|
Yes
|
/classes/Product.php:4524
/src/Adapter/Product/ProductColorsRetriever.php:43 (getAttributesColorList)
/src/Adapter/Presenter/Product/ProductLazyArray.php:528 (getColoredVariants)
/src/Adapter/Presenter/AbstractLazyArray.php:269 (getMainVariants)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:276 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e13543ab4e7_88104059)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/0a/12/f6/0a12f6898800da3c62fd09546f560e1520e267e7_2.file.productlist.tpl.php:39 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135437ca61_98950484)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/ed/4f/4f/ed4f4f89038a00a905571edb55b9e4496246c67a_2.file.products.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135436a901_04420740)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:121 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:239 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:84 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
520 |
SELECT SQL_NO_CACHE b.*,bl.title,bl.title_link,bl.content,bl.image_link
FROM ps22_ets_mm_block b
LEFT JOIN ps22_ets_mm_block_lang bl
ON b.id_block=bl.id_block AND bl.id_lang=1
WHERE 1 AND b.id_column=21
ORDER BY b.sort_order asc,bl.title asc |
2.224
ms
|
900 |
Yes
|
|
/modules/ets_megamenu/ets_megamenu.php:965
/modules/ets_megamenu/ets_megamenu.php:955 (getBlocks)
/modules/ets_megamenu/ets_megamenu.php:940 (getColumns)
/modules/ets_megamenu/ets_megamenu.php:1632 (getMenus)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
208 |
SELECT SQL_NO_CACHE name, value, pf.id_feature, f.position, fvl.id_feature_value
FROM ps22_feature_product pf
LEFT JOIN ps22_feature_lang fl ON (fl.id_feature = pf.id_feature AND fl.id_lang = 1)
LEFT JOIN ps22_feature_value_lang fvl ON (fvl.id_feature_value = pf.id_feature_value AND fvl.id_lang = 1)
LEFT JOIN ps22_feature f ON (f.id_feature = pf.id_feature AND fl.id_lang = 1)
INNER JOIN ps22_feature_shop feature_shop
ON (feature_shop.id_feature = f.id_feature AND feature_shop.id_shop = 1)
WHERE pf.id_product = 2234
ORDER BY f.position ASC |
2.219
ms
|
1 |
Yes
|
|
/classes/Product.php:6021
/classes/Product.php:5824 (getFrontFeaturesStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
638 |
SELECT SQL_NO_CACHE pa.`id_product`, a.`color`, pac.`id_product_attribute`, 0 qty, a.`id_attribute`, al.`name`, IF(color = "", a.id_attribute, color) group_by
FROM `ps22_product_attribute` pa
INNER JOIN ps22_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
JOIN `ps22_product_attribute_combination` pac ON (pac.`id_product_attribute` = product_attribute_shop.`id_product_attribute`)
JOIN `ps22_attribute` a ON (a.`id_attribute` = pac.`id_attribute`)
JOIN `ps22_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 1)
JOIN `ps22_attribute_group` ag ON (a.id_attribute_group = ag.`id_attribute_group`)
WHERE pa.`id_product` IN (2168) AND ag.`is_color_group` = 1
GROUP BY pa.`id_product`, a.`id_attribute`, `group_by`
ORDER BY a.`position` ASC; |
2.151
ms
|
1 |
Yes
|
Yes
|
/classes/Product.php:4524
/src/Adapter/Product/ProductColorsRetriever.php:43 (getAttributesColorList)
/src/Adapter/Presenter/Product/ProductLazyArray.php:528 (getColoredVariants)
/src/Adapter/Presenter/AbstractLazyArray.php:269 (getMainVariants)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:276 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e13543ab4e7_88104059)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/0a/12/f6/0a12f6898800da3c62fd09546f560e1520e267e7_2.file.productlist.tpl.php:39 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135437ca61_98950484)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/ed/4f/4f/ed4f4f89038a00a905571edb55b9e4496246c67a_2.file.products.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135436a901_04420740)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:121 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:239 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:84 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
635 |
SELECT SQL_NO_CACHE pa.`id_product`, a.`color`, pac.`id_product_attribute`, 0 qty, a.`id_attribute`, al.`name`, IF(color = "", a.id_attribute, color) group_by
FROM `ps22_product_attribute` pa
INNER JOIN ps22_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
JOIN `ps22_product_attribute_combination` pac ON (pac.`id_product_attribute` = product_attribute_shop.`id_product_attribute`)
JOIN `ps22_attribute` a ON (a.`id_attribute` = pac.`id_attribute`)
JOIN `ps22_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 1)
JOIN `ps22_attribute_group` ag ON (a.id_attribute_group = ag.`id_attribute_group`)
WHERE pa.`id_product` IN (2187) AND ag.`is_color_group` = 1
GROUP BY pa.`id_product`, a.`id_attribute`, `group_by`
ORDER BY a.`position` ASC; |
2.146
ms
|
1 |
Yes
|
Yes
|
/classes/Product.php:4524
/src/Adapter/Product/ProductColorsRetriever.php:43 (getAttributesColorList)
/src/Adapter/Presenter/Product/ProductLazyArray.php:528 (getColoredVariants)
/src/Adapter/Presenter/AbstractLazyArray.php:269 (getMainVariants)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:276 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e13543ab4e7_88104059)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/0a/12/f6/0a12f6898800da3c62fd09546f560e1520e267e7_2.file.productlist.tpl.php:39 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135437ca61_98950484)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/ed/4f/4f/ed4f4f89038a00a905571edb55b9e4496246c67a_2.file.products.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135436a901_04420740)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:121 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:239 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:84 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
634 |
SELECT SQL_NO_CACHE pa.`id_product`, a.`color`, pac.`id_product_attribute`, 0 qty, a.`id_attribute`, al.`name`, IF(color = "", a.id_attribute, color) group_by
FROM `ps22_product_attribute` pa
INNER JOIN ps22_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
JOIN `ps22_product_attribute_combination` pac ON (pac.`id_product_attribute` = product_attribute_shop.`id_product_attribute`)
JOIN `ps22_attribute` a ON (a.`id_attribute` = pac.`id_attribute`)
JOIN `ps22_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 1)
JOIN `ps22_attribute_group` ag ON (a.id_attribute_group = ag.`id_attribute_group`)
WHERE pa.`id_product` IN (2188) AND ag.`is_color_group` = 1
GROUP BY pa.`id_product`, a.`id_attribute`, `group_by`
ORDER BY a.`position` ASC; |
2.145
ms
|
1 |
Yes
|
Yes
|
/classes/Product.php:4524
/src/Adapter/Product/ProductColorsRetriever.php:43 (getAttributesColorList)
/src/Adapter/Presenter/Product/ProductLazyArray.php:528 (getColoredVariants)
/src/Adapter/Presenter/AbstractLazyArray.php:269 (getMainVariants)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:276 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e13543ab4e7_88104059)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/0a/12/f6/0a12f6898800da3c62fd09546f560e1520e267e7_2.file.productlist.tpl.php:39 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135437ca61_98950484)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/ed/4f/4f/ed4f4f89038a00a905571edb55b9e4496246c67a_2.file.products.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135436a901_04420740)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:121 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:239 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:84 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
228 |
SELECT SQL_NO_CACHE COUNT(*) FROM `ps22_pack` WHERE id_product_pack = 2216 LIMIT 1 |
2.104
ms
|
1 |
|
|
/classes/Pack.php:89
/classes/Product.php:4344 (isPack)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
211 |
SELECT SQL_NO_CACHE *
FROM `ps22_product` a
LEFT JOIN `ps22_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `ps22_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 2218) AND (b.`id_shop` = 1) LIMIT 1 |
2.060
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:725 (__construct)
/classes/Link.php:113 (__construct)
/classes/Link.php:189 (getProductObject)
/classes/Product.php:5660 (getProductLink)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
632 |
SELECT SQL_NO_CACHE pa.`id_product`, a.`color`, pac.`id_product_attribute`, 0 qty, a.`id_attribute`, al.`name`, IF(color = "", a.id_attribute, color) group_by
FROM `ps22_product_attribute` pa
INNER JOIN ps22_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
JOIN `ps22_product_attribute_combination` pac ON (pac.`id_product_attribute` = product_attribute_shop.`id_product_attribute`)
JOIN `ps22_attribute` a ON (a.`id_attribute` = pac.`id_attribute`)
JOIN `ps22_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 1)
JOIN `ps22_attribute_group` ag ON (a.id_attribute_group = ag.`id_attribute_group`)
WHERE pa.`id_product` IN (2196) AND ag.`is_color_group` = 1
GROUP BY pa.`id_product`, a.`id_attribute`, `group_by`
ORDER BY a.`position` ASC; |
2.032
ms
|
1 |
Yes
|
Yes
|
/classes/Product.php:4524
/src/Adapter/Product/ProductColorsRetriever.php:43 (getAttributesColorList)
/src/Adapter/Presenter/Product/ProductLazyArray.php:528 (getColoredVariants)
/src/Adapter/Presenter/AbstractLazyArray.php:269 (getMainVariants)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:276 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e13543ab4e7_88104059)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/0a/12/f6/0a12f6898800da3c62fd09546f560e1520e267e7_2.file.productlist.tpl.php:39 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135437ca61_98950484)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/ed/4f/4f/ed4f4f89038a00a905571edb55b9e4496246c67a_2.file.products.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135436a901_04420740)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:121 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:239 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:84 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
424 |
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 `ps22_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 2144 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `ps22_cart_product` cp JOIN `ps22_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `ps22_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` = 2144 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
2.016
ms
|
0 |
|
|
/classes/Cart.php:1430
/classes/Product.php:4361 (getProductQuantity)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
404 |
SELECT SQL_NO_CACHE `name`
FROM `ps22_manufacturer`
WHERE `id_manufacturer` = 25
AND `active` = 1 LIMIT 1 |
2.003
ms
|
1 |
|
|
/classes/Manufacturer.php:316
/classes/Product.php:5669 (getNameById)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
545 |
SELECT SQL_NO_CACHE *
FROM `ps22_category` a
LEFT JOIN `ps22_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 1
LEFT JOIN `ps22_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 195) AND (b.`id_shop` = 1) LIMIT 1 |
1.994
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:164 (__construct)
/classes/Link.php:402 (__construct)
/classes/Link.php:458 (getCategoryObject)
/modules/ets_megamenu/ets_megamenu.php:1229 (getCategoryLink)
/modules/ets_megamenu/ets_megamenu.php:941 (getMenuLink)
/modules/ets_megamenu/ets_megamenu.php:1632 (getMenus)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
83 |
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 `ps22_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 2292 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `ps22_cart_product` cp JOIN `ps22_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `ps22_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` = 2292 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
1.993
ms
|
0 |
|
|
/classes/Cart.php:1430
/classes/Product.php:4361 (getProductQuantity)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
542 |
SELECT SQL_NO_CACHE b.*,bl.title,bl.title_link,bl.content,bl.image_link
FROM ps22_ets_mm_block b
LEFT JOIN ps22_ets_mm_block_lang bl
ON b.id_block=bl.id_block AND bl.id_lang=1
WHERE 1 AND b.id_column=36
ORDER BY b.sort_order asc,bl.title asc |
1.980
ms
|
900 |
Yes
|
|
/modules/ets_megamenu/ets_megamenu.php:965
/modules/ets_megamenu/ets_megamenu.php:955 (getBlocks)
/modules/ets_megamenu/ets_megamenu.php:940 (getColumns)
/modules/ets_megamenu/ets_megamenu.php:1632 (getMenus)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
627 |
SELECT SQL_NO_CACHE pa.`id_product`, a.`color`, pac.`id_product_attribute`, 0 qty, a.`id_attribute`, al.`name`, IF(color = "", a.id_attribute, color) group_by
FROM `ps22_product_attribute` pa
INNER JOIN ps22_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
JOIN `ps22_product_attribute_combination` pac ON (pac.`id_product_attribute` = product_attribute_shop.`id_product_attribute`)
JOIN `ps22_attribute` a ON (a.`id_attribute` = pac.`id_attribute`)
JOIN `ps22_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 1)
JOIN `ps22_attribute_group` ag ON (a.id_attribute_group = ag.`id_attribute_group`)
WHERE pa.`id_product` IN (2218) AND ag.`is_color_group` = 1
GROUP BY pa.`id_product`, a.`id_attribute`, `group_by`
ORDER BY a.`position` ASC; |
1.977
ms
|
1 |
Yes
|
Yes
|
/classes/Product.php:4524
/src/Adapter/Product/ProductColorsRetriever.php:43 (getAttributesColorList)
/src/Adapter/Presenter/Product/ProductLazyArray.php:528 (getColoredVariants)
/src/Adapter/Presenter/AbstractLazyArray.php:269 (getMainVariants)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:276 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e13543ab4e7_88104059)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/0a/12/f6/0a12f6898800da3c62fd09546f560e1520e267e7_2.file.productlist.tpl.php:39 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135437ca61_98950484)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/ed/4f/4f/ed4f4f89038a00a905571edb55b9e4496246c67a_2.file.products.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135436a901_04420740)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:121 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:239 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:84 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
35 |
SELECT SQL_NO_CACHE name, alias FROM `ps22_hook_alias` |
1.972
ms
|
88 |
|
|
/classes/Hook.php:339
/classes/Hook.php:154 (getCanonicalHookNames)
/classes/Hook.php:363 (normalizeHookName)
/classes/Hook.php:386 (getAllKnownNames)
/classes/Hook.php:974 (isHookCallableOn)
/classes/controller/FrontController.php:1004 (exec)
/tools/profiling/Controller.php:48 (setMedia)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
88 |
SELECT SQL_NO_CACHE *
FROM `ps22_product` a
LEFT JOIN `ps22_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `ps22_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 2289) AND (b.`id_shop` = 1) LIMIT 1 |
1.969
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:725 (__construct)
/classes/Link.php:113 (__construct)
/classes/Link.php:189 (getProductObject)
/classes/Product.php:5660 (getProductLink)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
628 |
SELECT SQL_NO_CACHE pa.`id_product`, a.`color`, pac.`id_product_attribute`, 0 qty, a.`id_attribute`, al.`name`, IF(color = "", a.id_attribute, color) group_by
FROM `ps22_product_attribute` pa
INNER JOIN ps22_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
JOIN `ps22_product_attribute_combination` pac ON (pac.`id_product_attribute` = product_attribute_shop.`id_product_attribute`)
JOIN `ps22_attribute` a ON (a.`id_attribute` = pac.`id_attribute`)
JOIN `ps22_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 1)
JOIN `ps22_attribute_group` ag ON (a.id_attribute_group = ag.`id_attribute_group`)
WHERE pa.`id_product` IN (2216) AND ag.`is_color_group` = 1
GROUP BY pa.`id_product`, a.`id_attribute`, `group_by`
ORDER BY a.`position` ASC; |
1.965
ms
|
1 |
Yes
|
Yes
|
/classes/Product.php:4524
/src/Adapter/Product/ProductColorsRetriever.php:43 (getAttributesColorList)
/src/Adapter/Presenter/Product/ProductLazyArray.php:528 (getColoredVariants)
/src/Adapter/Presenter/AbstractLazyArray.php:269 (getMainVariants)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:276 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e13543ab4e7_88104059)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/0a/12/f6/0a12f6898800da3c62fd09546f560e1520e267e7_2.file.productlist.tpl.php:39 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135437ca61_98950484)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/ed/4f/4f/ed4f4f89038a00a905571edb55b9e4496246c67a_2.file.products.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135436a901_04420740)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:121 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:239 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:84 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
209 |
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps22_image` i
INNER JOIN ps22_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 2218
AND image_shop.`cover` = 1 LIMIT 1 |
1.959
ms
|
2 |
|
|
/classes/Product.php:3570
/classes/Product.php:5643 (getCover)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
416 |
SELECT SQL_NO_CACHE *
FROM `ps22_product` a
LEFT JOIN `ps22_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `ps22_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 2144) AND (b.`id_shop` = 1) LIMIT 1 |
1.940
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:725 (__construct)
/classes/Link.php:113 (__construct)
/classes/Link.php:189 (getProductObject)
/classes/Product.php:5660 (getProductLink)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
636 |
SELECT SQL_NO_CACHE pa.`id_product`, a.`color`, pac.`id_product_attribute`, 0 qty, a.`id_attribute`, al.`name`, IF(color = "", a.id_attribute, color) group_by
FROM `ps22_product_attribute` pa
INNER JOIN ps22_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
JOIN `ps22_product_attribute_combination` pac ON (pac.`id_product_attribute` = product_attribute_shop.`id_product_attribute`)
JOIN `ps22_attribute` a ON (a.`id_attribute` = pac.`id_attribute`)
JOIN `ps22_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 1)
JOIN `ps22_attribute_group` ag ON (a.id_attribute_group = ag.`id_attribute_group`)
WHERE pa.`id_product` IN (2172) AND ag.`is_color_group` = 1
GROUP BY pa.`id_product`, a.`id_attribute`, `group_by`
ORDER BY a.`position` ASC; |
1.934
ms
|
1 |
Yes
|
Yes
|
/classes/Product.php:4524
/src/Adapter/Product/ProductColorsRetriever.php:43 (getAttributesColorList)
/src/Adapter/Presenter/Product/ProductLazyArray.php:528 (getColoredVariants)
/src/Adapter/Presenter/AbstractLazyArray.php:269 (getMainVariants)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:276 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e13543ab4e7_88104059)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/0a/12/f6/0a12f6898800da3c62fd09546f560e1520e267e7_2.file.productlist.tpl.php:39 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135437ca61_98950484)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/ed/4f/4f/ed4f4f89038a00a905571edb55b9e4496246c67a_2.file.products.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135436a901_04420740)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:121 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:239 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:84 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
223 |
SELECT SQL_NO_CACHE *
FROM `ps22_product` a
LEFT JOIN `ps22_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `ps22_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 2216) AND (b.`id_shop` = 1) LIMIT 1 |
1.929
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:725 (__construct)
/classes/Link.php:113 (__construct)
/classes/Link.php:189 (getProductObject)
/classes/Product.php:5660 (getProductLink)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
641 |
SELECT SQL_NO_CACHE pa.`id_product`, a.`color`, pac.`id_product_attribute`, 0 qty, a.`id_attribute`, al.`name`, IF(color = "", a.id_attribute, color) group_by
FROM `ps22_product_attribute` pa
INNER JOIN ps22_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
JOIN `ps22_product_attribute_combination` pac ON (pac.`id_product_attribute` = product_attribute_shop.`id_product_attribute`)
JOIN `ps22_attribute` a ON (a.`id_attribute` = pac.`id_attribute`)
JOIN `ps22_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 1)
JOIN `ps22_attribute_group` ag ON (a.id_attribute_group = ag.`id_attribute_group`)
WHERE pa.`id_product` IN (2152) AND ag.`is_color_group` = 1
GROUP BY pa.`id_product`, a.`id_attribute`, `group_by`
ORDER BY a.`position` ASC; |
1.918
ms
|
1 |
Yes
|
Yes
|
/classes/Product.php:4524
/src/Adapter/Product/ProductColorsRetriever.php:43 (getAttributesColorList)
/src/Adapter/Presenter/Product/ProductLazyArray.php:528 (getColoredVariants)
/src/Adapter/Presenter/AbstractLazyArray.php:269 (getMainVariants)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:276 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e13543ab4e7_88104059)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/0a/12/f6/0a12f6898800da3c62fd09546f560e1520e267e7_2.file.productlist.tpl.php:39 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135437ca61_98950484)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/ed/4f/4f/ed4f4f89038a00a905571edb55b9e4496246c67a_2.file.products.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135436a901_04420740)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:121 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:239 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:84 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (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 `ps22_product` p
INNER JOIN `ps22_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps22_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` = 2145) |
1.915
ms
|
1 |
|
|
/classes/Product.php:3860
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
100 |
SELECT SQL_NO_CACHE *
FROM `ps22_product` a
LEFT JOIN `ps22_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `ps22_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 2287) AND (b.`id_shop` = 1) LIMIT 1 |
1.906
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:725 (__construct)
/classes/Link.php:113 (__construct)
/classes/Link.php:189 (getProductObject)
/classes/Product.php:5660 (getProductLink)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
48 |
SELECT SQL_NO_CACHE c.id_cms as value,CONCAT('mm_cms_',c.id_cms) as id, cl.meta_title as label
FROM ps22_cms c
LEFT JOIN ps22_cms_lang cl ON c.id_cms=cl.id_cms AND cl.id_lang=1
WHERE c.active=1
ORDER BY cl.meta_title asc |
1.897
ms
|
12 |
Yes
|
|
/modules/ets_megamenu/ets_megamenu.php:996
/modules/ets_megamenu/ets_megamenu.php:150 (getCMSs)
:undefined (__construct)
/src/Core/Foundation/IoC/Container.php:123 (newInstance)
/src/Core/Foundation/IoC/Container.php:153 (makeInstanceFromClassName)
/src/Core/Foundation/IoC/Container.php:166 (doMake)
/src/Adapter/ServiceLocator.php:70 (make)
/classes/module/Module.php:1258 (get)
/tools/profiling/Module.php:35 (coreLoadModule)
/classes/module/Module.php:1237 (coreLoadModule)
/classes/Hook.php:966 (getInstanceByName)
/classes/controller/FrontController.php:633 (exec)
/controllers/front/listing/CategoryController.php:127 (initContent)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
196 |
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps22_image` i
INNER JOIN ps22_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 2234
AND image_shop.`cover` = 1 LIMIT 1 |
1.892
ms
|
1 |
|
|
/classes/Product.php:3570
/classes/Product.php:5643 (getCover)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
227 |
SELECT SQL_NO_CACHE `reduction`
FROM `ps22_product_group_reduction_cache`
WHERE `id_product` = 2216 AND `id_group` = 1 LIMIT 1 |
1.881
ms
|
0 |
|
|
/classes/GroupReduction.php:156
/classes/Product.php:3990 (getValueForProduct)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
259 |
SELECT SQL_NO_CACHE *
FROM `ps22_product` a
LEFT JOIN `ps22_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `ps22_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 2198) AND (b.`id_shop` = 1) LIMIT 1 |
1.874
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:725 (__construct)
/classes/Link.php:113 (__construct)
/classes/Link.php:189 (getProductObject)
/classes/Product.php:5660 (getProductLink)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
220 |
SELECT SQL_NO_CACHE name, value, pf.id_feature, f.position, fvl.id_feature_value
FROM ps22_feature_product pf
LEFT JOIN ps22_feature_lang fl ON (fl.id_feature = pf.id_feature AND fl.id_lang = 1)
LEFT JOIN ps22_feature_value_lang fvl ON (fvl.id_feature_value = pf.id_feature_value AND fvl.id_lang = 1)
LEFT JOIN ps22_feature f ON (f.id_feature = pf.id_feature AND fl.id_lang = 1)
INNER JOIN ps22_feature_shop feature_shop
ON (feature_shop.id_feature = f.id_feature AND feature_shop.id_shop = 1)
WHERE pf.id_product = 2218
ORDER BY f.position ASC |
1.861
ms
|
1 |
Yes
|
|
/classes/Product.php:6021
/classes/Product.php:5824 (getFrontFeaturesStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
243 |
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 `ps22_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 2215 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `ps22_cart_product` cp JOIN `ps22_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `ps22_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` = 2215 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
1.860
ms
|
0 |
|
|
/classes/Cart.php:1430
/classes/Product.php:4361 (getProductQuantity)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
425 |
SELECT SQL_NO_CACHE name, value, pf.id_feature, f.position, fvl.id_feature_value
FROM ps22_feature_product pf
LEFT JOIN ps22_feature_lang fl ON (fl.id_feature = pf.id_feature AND fl.id_lang = 1)
LEFT JOIN ps22_feature_value_lang fvl ON (fvl.id_feature_value = pf.id_feature_value AND fvl.id_lang = 1)
LEFT JOIN ps22_feature f ON (f.id_feature = pf.id_feature AND fl.id_lang = 1)
INNER JOIN ps22_feature_shop feature_shop
ON (feature_shop.id_feature = f.id_feature AND feature_shop.id_shop = 1)
WHERE pf.id_product = 2144
ORDER BY f.position ASC |
1.847
ms
|
1 |
Yes
|
|
/classes/Product.php:6021
/classes/Product.php:5824 (getFrontFeaturesStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
403 |
SELECT SQL_NO_CACHE *
FROM `ps22_product` a
LEFT JOIN `ps22_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `ps22_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 2145) AND (b.`id_shop` = 1) LIMIT 1 |
1.829
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:725 (__construct)
/classes/Link.php:113 (__construct)
/classes/Link.php:189 (getProductObject)
/classes/Product.php:5660 (getProductLink)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
108 |
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 `ps22_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 2287 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `ps22_cart_product` cp JOIN `ps22_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `ps22_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` = 2287 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
1.829
ms
|
0 |
|
|
/classes/Cart.php:1430
/classes/Product.php:4361 (getProductQuantity)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
543 |
SELECT SQL_NO_CACHE b.*,bl.title,bl.title_link,bl.content,bl.image_link
FROM ps22_ets_mm_block b
LEFT JOIN ps22_ets_mm_block_lang bl
ON b.id_block=bl.id_block AND bl.id_lang=1
WHERE 1 AND b.id_column=37
ORDER BY b.sort_order asc,bl.title asc |
1.828
ms
|
900 |
Yes
|
|
/modules/ets_megamenu/ets_megamenu.php:965
/modules/ets_megamenu/ets_megamenu.php:955 (getBlocks)
/modules/ets_megamenu/ets_megamenu.php:940 (getColumns)
/modules/ets_megamenu/ets_megamenu.php:1632 (getMenus)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
544 |
SELECT SQL_NO_CACHE b.*,bl.title,bl.title_link,bl.content,bl.image_link
FROM ps22_ets_mm_block b
LEFT JOIN ps22_ets_mm_block_lang bl
ON b.id_block=bl.id_block AND bl.id_lang=1
WHERE 1 AND b.id_column=38
ORDER BY b.sort_order asc,bl.title asc |
1.814
ms
|
900 |
Yes
|
|
/modules/ets_megamenu/ets_megamenu.php:965
/modules/ets_megamenu/ets_megamenu.php:955 (getBlocks)
/modules/ets_megamenu/ets_megamenu.php:940 (getColumns)
/modules/ets_megamenu/ets_megamenu.php:1632 (getMenus)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
21 |
SELECT SQL_NO_CACHE *
FROM `ps22_currency` a
LEFT JOIN `ps22_currency_lang` `b` ON a.`id_currency` = b.`id_currency` AND b.`id_lang` = 1
LEFT JOIN `ps22_currency_shop` `c` ON a.`id_currency` = c.`id_currency` AND c.`id_shop` = 1
WHERE (a.`id_currency` = 1) LIMIT 1 |
1.803
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (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:102 (getCurrencyByIsoCodeAndLocale)
/src/Core/Data/Layer/AbstractDataLayer.php:91 (doRead)
/src/Core/Data/Layer/AbstractDataLayer.php:150 (read)
/src/Core/Data/Layer/AbstractDataLayer.php:95 (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:207 (getAllInstalledCurrencies)
/src/Core/Localization/Locale/Repository.php:150 (getPriceSpecifications)
/classes/controller/Controller.php:209 (getLocale)
/classes/controller/FrontController.php:284 (init)
/controllers/front/listing/CategoryController.php:81 (init)
/tools/profiling/Controller.php:41 (init)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
630 |
SELECT SQL_NO_CACHE pa.`id_product`, a.`color`, pac.`id_product_attribute`, 0 qty, a.`id_attribute`, al.`name`, IF(color = "", a.id_attribute, color) group_by
FROM `ps22_product_attribute` pa
INNER JOIN ps22_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
JOIN `ps22_product_attribute_combination` pac ON (pac.`id_product_attribute` = product_attribute_shop.`id_product_attribute`)
JOIN `ps22_attribute` a ON (a.`id_attribute` = pac.`id_attribute`)
JOIN `ps22_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 1)
JOIN `ps22_attribute_group` ag ON (a.id_attribute_group = ag.`id_attribute_group`)
WHERE pa.`id_product` IN (2213) AND ag.`is_color_group` = 1
GROUP BY pa.`id_product`, a.`id_attribute`, `group_by`
ORDER BY a.`position` ASC; |
1.772
ms
|
1 |
Yes
|
Yes
|
/classes/Product.php:4524
/src/Adapter/Product/ProductColorsRetriever.php:43 (getAttributesColorList)
/src/Adapter/Presenter/Product/ProductLazyArray.php:528 (getColoredVariants)
/src/Adapter/Presenter/AbstractLazyArray.php:269 (getMainVariants)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:276 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e13543ab4e7_88104059)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/0a/12/f6/0a12f6898800da3c62fd09546f560e1520e267e7_2.file.productlist.tpl.php:39 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135437ca61_98950484)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/ed/4f/4f/ed4f4f89038a00a905571edb55b9e4496246c67a_2.file.products.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135436a901_04420740)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:121 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:239 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:84 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
31 |
SELECT SQL_NO_CACHE c.*, cl.`id_lang`, cl.`name`, cl.`description`, cl.`additional_description`, cl.`link_rewrite`, cl.`meta_title`, cl.`meta_keywords`, cl.`meta_description`
FROM `ps22_category` c
INNER JOIN ps22_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
LEFT JOIN `ps22_category_lang` cl ON (c.`id_category` = cl.`id_category` AND `id_lang` = 1 AND cl.id_shop = 1 )
LEFT JOIN `ps22_category_group` cg ON (cg.`id_category` = c.`id_category`)
WHERE `id_parent` = 206
AND `active` = 1
AND cg.`id_group` =1
GROUP BY c.`id_category`
ORDER BY `level_depth` ASC, category_shop.`position` ASC |
1.769
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:924
/controllers/front/listing/CategoryController.php:230 (getSubCategories)
/controllers/front/listing/CategoryController.php:118 (getTemplateVarSubCategories)
/tools/profiling/Controller.php:41 (init)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
652 |
SELECT SQL_NO_CACHE lb.`id_link_block`
FROM ps22_link_block lb
INNER JOIN ps22_link_block_shop lbs ON lbs.`id_link_block` = lb.`id_link_block`
WHERE lb. `id_hook` = 41 AND lbs.`id_shop` = 1
ORDER by lbs.`position` |
1.759
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:1088 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1019 (coreRenderWidget)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/7c/b9/fe/7cb9fe82eae491bdccb39f150924de614ad1fd8a_2.file.footer.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/prod/smarty/compile/classiclayouts_layout_left_column_tpl/7c/b9/fe/7cb9fe82eae491bdccb39f150924de614ad1fd8a_2.file.footer.tpl.php:39 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e13546aa2f4_73458832)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:348 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:117 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
109 |
SELECT SQL_NO_CACHE name, value, pf.id_feature, f.position, fvl.id_feature_value
FROM ps22_feature_product pf
LEFT JOIN ps22_feature_lang fl ON (fl.id_feature = pf.id_feature AND fl.id_lang = 1)
LEFT JOIN ps22_feature_value_lang fvl ON (fvl.id_feature_value = pf.id_feature_value AND fvl.id_lang = 1)
LEFT JOIN ps22_feature f ON (f.id_feature = pf.id_feature AND fl.id_lang = 1)
INNER JOIN ps22_feature_shop feature_shop
ON (feature_shop.id_feature = f.id_feature AND feature_shop.id_shop = 1)
WHERE pf.id_product = 2287
ORDER BY f.position ASC |
1.752
ms
|
1 |
Yes
|
|
/classes/Product.php:6021
/classes/Product.php:5824 (getFrontFeaturesStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
84 |
SELECT SQL_NO_CACHE name, value, pf.id_feature, f.position, fvl.id_feature_value
FROM ps22_feature_product pf
LEFT JOIN ps22_feature_lang fl ON (fl.id_feature = pf.id_feature AND fl.id_lang = 1)
LEFT JOIN ps22_feature_value_lang fvl ON (fvl.id_feature_value = pf.id_feature_value AND fvl.id_lang = 1)
LEFT JOIN ps22_feature f ON (f.id_feature = pf.id_feature AND fl.id_lang = 1)
INNER JOIN ps22_feature_shop feature_shop
ON (feature_shop.id_feature = f.id_feature AND feature_shop.id_shop = 1)
WHERE pf.id_product = 2292
ORDER BY f.position ASC |
1.741
ms
|
1 |
Yes
|
|
/classes/Product.php:6021
/classes/Product.php:5824 (getFrontFeaturesStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
658 |
SELECT SQL_NO_CACHE *
FROM ps22_meta m
LEFT JOIN ps22_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 |
1.734
ms
|
2 |
|
|
/classes/Meta.php:193
/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:1088 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1019 (coreRenderWidget)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/7c/b9/fe/7cb9fe82eae491bdccb39f150924de614ad1fd8a_2.file.footer.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/prod/smarty/compile/classiclayouts_layout_left_column_tpl/7c/b9/fe/7cb9fe82eae491bdccb39f150924de614ad1fd8a_2.file.footer.tpl.php:39 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e13546aa2f4_73458832)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:348 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:117 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
121 |
SELECT SQL_NO_CACHE name, value, pf.id_feature, f.position, fvl.id_feature_value
FROM ps22_feature_product pf
LEFT JOIN ps22_feature_lang fl ON (fl.id_feature = pf.id_feature AND fl.id_lang = 1)
LEFT JOIN ps22_feature_value_lang fvl ON (fvl.id_feature_value = pf.id_feature_value AND fvl.id_lang = 1)
LEFT JOIN ps22_feature f ON (f.id_feature = pf.id_feature AND fl.id_lang = 1)
INNER JOIN ps22_feature_shop feature_shop
ON (feature_shop.id_feature = f.id_feature AND feature_shop.id_shop = 1)
WHERE pf.id_product = 2281
ORDER BY f.position ASC |
1.709
ms
|
1 |
Yes
|
|
/classes/Product.php:6021
/classes/Product.php:5824 (getFrontFeaturesStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
428 |
SELECT SQL_NO_CACHE *
FROM `ps22_product` a
LEFT JOIN `ps22_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `ps22_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 2143) AND (b.`id_shop` = 1) LIMIT 1 |
1.695
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:725 (__construct)
/classes/Link.php:113 (__construct)
/classes/Link.php:189 (getProductObject)
/classes/Product.php:5660 (getProductLink)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
503 |
SELECT SQL_NO_CACHE `need_identification_number`
FROM `ps22_country`
WHERE `id_country` = 8 LIMIT 1 |
1.684
ms
|
1 |
|
|
/classes/Country.php:405
/classes/AddressFormat.php:634 (isNeedDniByCountryId)
/classes/AddressFormat.php:615 (getFormat)
/classes/AddressFormat.php:562 (getAddressCountryFormat)
/classes/AddressFormat.php:438 (getOrderedAddressFields)
/modules/ps_contactinfo/ps_contactinfo.php:98 (generateAddress)
/modules/ps_contactinfo/ps_contactinfo.php:83 (getWidgetVariables)
/classes/Hook.php:1088 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1019 (coreRenderWidget)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:77 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:31 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
562 |
SELECT SQL_NO_CACHE *
FROM `ps22_category` a
LEFT JOIN `ps22_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 1
LEFT JOIN `ps22_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 240) AND (b.`id_shop` = 1) LIMIT 1 |
1.682
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:164 (__construct)
/classes/Link.php:402 (__construct)
/classes/Link.php:458 (getCategoryObject)
/var/cache/prod/smarty/compile/classic/1c/9a/17/1c9a178d33d1c64d16da67eee7b233868cc8c77c_2.file.categories-tree.tpl.php:33 (getCategoryLink)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1354073306_20529102)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1502 (display)
/modules/ets_megamenu/ets_megamenu.php:1204 (displayCategories)
/modules/ets_megamenu/ets_megamenu.php:1169 (convertBlockProperties)
/classes/Hook.php:1077 (hookDisplayBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classic/f3/d5/9e/f3d59e42c90c7462916be2ef540caa369d2ac214_2.file.menu-html.tpl.php:89 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135404d5d2_33533514)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1634 (display)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
526 |
SELECT SQL_NO_CACHE b.*,bl.title,bl.title_link,bl.content,bl.image_link
FROM ps22_ets_mm_block b
LEFT JOIN ps22_ets_mm_block_lang bl
ON b.id_block=bl.id_block AND bl.id_lang=1
WHERE 1 AND b.id_column=14
ORDER BY b.sort_order asc,bl.title asc |
1.680
ms
|
900 |
Yes
|
|
/modules/ets_megamenu/ets_megamenu.php:965
/modules/ets_megamenu/ets_megamenu.php:955 (getBlocks)
/modules/ets_megamenu/ets_megamenu.php:940 (getColumns)
/modules/ets_megamenu/ets_megamenu.php:1632 (getMenus)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
626 |
SELECT SQL_NO_CACHE pa.`id_product`, a.`color`, pac.`id_product_attribute`, 0 qty, a.`id_attribute`, al.`name`, IF(color = "", a.id_attribute, color) group_by
FROM `ps22_product_attribute` pa
INNER JOIN ps22_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
JOIN `ps22_product_attribute_combination` pac ON (pac.`id_product_attribute` = product_attribute_shop.`id_product_attribute`)
JOIN `ps22_attribute` a ON (a.`id_attribute` = pac.`id_attribute`)
JOIN `ps22_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 1)
JOIN `ps22_attribute_group` ag ON (a.id_attribute_group = ag.`id_attribute_group`)
WHERE pa.`id_product` IN (2234) AND ag.`is_color_group` = 1
GROUP BY pa.`id_product`, a.`id_attribute`, `group_by`
ORDER BY a.`position` ASC; |
1.663
ms
|
1 |
Yes
|
Yes
|
/classes/Product.php:4524
/src/Adapter/Product/ProductColorsRetriever.php:43 (getAttributesColorList)
/src/Adapter/Presenter/Product/ProductLazyArray.php:528 (getColoredVariants)
/src/Adapter/Presenter/AbstractLazyArray.php:269 (getMainVariants)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:276 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e13543ab4e7_88104059)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/0a/12/f6/0a12f6898800da3c62fd09546f560e1520e267e7_2.file.productlist.tpl.php:39 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135437ca61_98950484)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/ed/4f/4f/ed4f4f89038a00a905571edb55b9e4496246c67a_2.file.products.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135436a901_04420740)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:121 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:239 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:84 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
53 |
SELECT SQL_NO_CACHE type, id_value, filter_show_limit, filter_type FROM ps22_layered_category
WHERE controller = 'category'
AND id_category = 206
AND id_shop = 1
GROUP BY `type`, id_value ORDER BY position ASC |
1.654
ms
|
12 |
Yes
|
Yes
|
/modules/ps_facetedsearch/src/Filters/Provider.php:61
/modules/ps_facetedsearch/src/Filters/Converter.php:263 (getFiltersForQuery)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:163 (createFacetedSearchFiltersFromQuery)
/classes/controller/ProductListingFrontController.php:357 (runQuery)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
508 |
SELECT SQL_NO_CACHE COUNT(DISTINCT c.id_currency) FROM `ps22_currency` c
LEFT JOIN ps22_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 |
1.649
ms
|
1 |
|
|
/classes/Currency.php:1136
/classes/Currency.php:1153 (countActiveCurrencies)
/modules/ps_currencyselector/ps_currencyselector.php:123 (isMultiCurrencyActivated)
/classes/Hook.php:1088 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1019 (coreRenderWidget)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:81 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:31 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
583 |
SELECT SQL_NO_CACHE *
FROM `ps22_category` a
LEFT JOIN `ps22_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 1
LEFT JOIN `ps22_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 32) AND (b.`id_shop` = 1) LIMIT 1 |
1.641
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:164 (__construct)
/classes/Link.php:402 (__construct)
/classes/Link.php:458 (getCategoryObject)
/var/cache/prod/smarty/compile/classic/1c/9a/17/1c9a178d33d1c64d16da67eee7b233868cc8c77c_2.file.categories-tree.tpl.php:33 (getCategoryLink)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1354073306_20529102)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1502 (display)
/modules/ets_megamenu/ets_megamenu.php:1204 (displayCategories)
/modules/ets_megamenu/ets_megamenu.php:1169 (convertBlockProperties)
/classes/Hook.php:1077 (hookDisplayBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classic/f3/d5/9e/f3d59e42c90c7462916be2ef540caa369d2ac214_2.file.menu-html.tpl.php:89 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135404d5d2_33533514)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1634 (display)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
524 |
SELECT SQL_NO_CACHE *
FROM `ps22_category` a
LEFT JOIN `ps22_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 1
LEFT JOIN `ps22_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 192) AND (b.`id_shop` = 1) LIMIT 1 |
1.630
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:164 (__construct)
/classes/Link.php:402 (__construct)
/classes/Link.php:458 (getCategoryObject)
/modules/ets_megamenu/ets_megamenu.php:1229 (getCategoryLink)
/modules/ets_megamenu/ets_megamenu.php:941 (getMenuLink)
/modules/ets_megamenu/ets_megamenu.php:1632 (getMenus)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
14 |
SELECT SQL_NO_CACHE `name`, `alias` FROM `ps22_hook_alias` |
1.621
ms
|
88 |
|
|
/classes/Hook.php:287
/classes/Hook.php:318 (getAllHookAliases)
/classes/Hook.php:746 (getHookAliasesFor)
/classes/Hook.php:842 (getHookModuleExecList)
/classes/Dispatcher.php:606 (exec)
/classes/Dispatcher.php:243 (loadRoutes)
/classes/Dispatcher.php:201 (__construct)
/index.php:28 (getInstance)
|
558 |
SELECT SQL_NO_CACHE c.*, cl.name,cl.link_rewrite
FROM ps22_category c
LEFT JOIN ps22_category_lang cl ON c.id_category=cl.id_category AND cl.id_lang=1
WHERE c.id_category IN(197)
ORDER BY cl.name ASC |
1.604
ms
|
1 |
Yes
|
|
/modules/ets_megamenu/ets_megamenu.php:1514
/modules/ets_megamenu/ets_megamenu.php:1204 (getCategoryById)
/modules/ets_megamenu/ets_megamenu.php:1169 (convertBlockProperties)
/classes/Hook.php:1077 (hookDisplayBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classic/f3/d5/9e/f3d59e42c90c7462916be2ef540caa369d2ac214_2.file.menu-html.tpl.php:89 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135404d5d2_33533514)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1634 (display)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
532 |
SELECT SQL_NO_CACHE b.*,bl.title,bl.title_link,bl.content,bl.image_link
FROM ps22_ets_mm_block b
LEFT JOIN ps22_ets_mm_block_lang bl
ON b.id_block=bl.id_block AND bl.id_lang=1
WHERE 1 AND b.id_column=27
ORDER BY b.sort_order asc,bl.title asc |
1.600
ms
|
900 |
Yes
|
|
/modules/ets_megamenu/ets_megamenu.php:965
/modules/ets_megamenu/ets_megamenu.php:955 (getBlocks)
/modules/ets_megamenu/ets_megamenu.php:940 (getColumns)
/modules/ets_megamenu/ets_megamenu.php:1632 (getMenus)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
268 |
SELECT SQL_NO_CACHE name, value, pf.id_feature, f.position, fvl.id_feature_value
FROM ps22_feature_product pf
LEFT JOIN ps22_feature_lang fl ON (fl.id_feature = pf.id_feature AND fl.id_lang = 1)
LEFT JOIN ps22_feature_value_lang fvl ON (fvl.id_feature_value = pf.id_feature_value AND fvl.id_lang = 1)
LEFT JOIN ps22_feature f ON (f.id_feature = pf.id_feature AND fl.id_lang = 1)
INNER JOIN ps22_feature_shop feature_shop
ON (feature_shop.id_feature = f.id_feature AND feature_shop.id_shop = 1)
WHERE pf.id_product = 2198
ORDER BY f.position ASC |
1.599
ms
|
1 |
Yes
|
|
/classes/Product.php:6021
/classes/Product.php:5824 (getFrontFeaturesStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
47 |
SELECT SQL_NO_CACHE id_manufacturer as value,CONCAT('mm_manufacturer_',id_manufacturer) as id, name as label
FROM ps22_manufacturer
WHERE active=1
ORDER BY name asc |
1.587
ms
|
61 |
Yes
|
|
/modules/ets_megamenu/ets_megamenu.php:986
/modules/ets_megamenu/ets_megamenu.php:133 (getManufacturers)
:undefined (__construct)
/src/Core/Foundation/IoC/Container.php:123 (newInstance)
/src/Core/Foundation/IoC/Container.php:153 (makeInstanceFromClassName)
/src/Core/Foundation/IoC/Container.php:166 (doMake)
/src/Adapter/ServiceLocator.php:70 (make)
/classes/module/Module.php:1258 (get)
/tools/profiling/Module.php:35 (coreLoadModule)
/classes/module/Module.php:1237 (coreLoadModule)
/classes/Hook.php:966 (getInstanceByName)
/classes/controller/FrontController.php:633 (exec)
/controllers/front/listing/CategoryController.php:127 (initContent)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
255 |
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 `ps22_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 2213 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `ps22_cart_product` cp JOIN `ps22_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `ps22_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` = 2213 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
1.585
ms
|
0 |
|
|
/classes/Cart.php:1430
/classes/Product.php:4361 (getProductQuantity)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
279 |
SELECT SQL_NO_CACHE COALESCE(SUM(first_level_quantity) + SUM(pack_quantity), 0) as deep_quantity,
COALESCE(SUM(first_level_quantity), 0) as quantity
FROM (SELECT SUM(cp.`quantity`) as first_level_quantity, 0 as pack_quantity
FROM `ps22_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 2196 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `ps22_cart_product` cp JOIN `ps22_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `ps22_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` = 2196 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
1.576
ms
|
0 |
|
|
/classes/Cart.php:1430
/classes/Product.php:4361 (getProductQuantity)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
146 |
SELECT SQL_NO_CACHE name, value, pf.id_feature, f.position, fvl.id_feature_value
FROM ps22_feature_product pf
LEFT JOIN ps22_feature_lang fl ON (fl.id_feature = pf.id_feature AND fl.id_lang = 1)
LEFT JOIN ps22_feature_value_lang fvl ON (fvl.id_feature_value = pf.id_feature_value AND fvl.id_lang = 1)
LEFT JOIN ps22_feature f ON (f.id_feature = pf.id_feature AND fl.id_lang = 1)
INNER JOIN ps22_feature_shop feature_shop
ON (feature_shop.id_feature = f.id_feature AND feature_shop.id_shop = 1)
WHERE pf.id_product = 2265
ORDER BY f.position ASC |
1.575
ms
|
1 |
Yes
|
|
/classes/Product.php:6021
/classes/Product.php:5824 (getFrontFeaturesStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
436 |
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 `ps22_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 2143 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `ps22_cart_product` cp JOIN `ps22_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `ps22_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` = 2143 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
1.570
ms
|
0 |
|
|
/classes/Cart.php:1430
/classes/Product.php:4361 (getProductQuantity)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
629 |
SELECT SQL_NO_CACHE pa.`id_product`, a.`color`, pac.`id_product_attribute`, 0 qty, a.`id_attribute`, al.`name`, IF(color = "", a.id_attribute, color) group_by
FROM `ps22_product_attribute` pa
INNER JOIN ps22_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
JOIN `ps22_product_attribute_combination` pac ON (pac.`id_product_attribute` = product_attribute_shop.`id_product_attribute`)
JOIN `ps22_attribute` a ON (a.`id_attribute` = pac.`id_attribute`)
JOIN `ps22_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 1)
JOIN `ps22_attribute_group` ag ON (a.id_attribute_group = ag.`id_attribute_group`)
WHERE pa.`id_product` IN (2215) AND ag.`is_color_group` = 1
GROUP BY pa.`id_product`, a.`id_attribute`, `group_by`
ORDER BY a.`position` ASC; |
1.561
ms
|
1 |
Yes
|
Yes
|
/classes/Product.php:4524
/src/Adapter/Product/ProductColorsRetriever.php:43 (getAttributesColorList)
/src/Adapter/Presenter/Product/ProductLazyArray.php:528 (getColoredVariants)
/src/Adapter/Presenter/AbstractLazyArray.php:269 (getMainVariants)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:276 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e13543ab4e7_88104059)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/0a/12/f6/0a12f6898800da3c62fd09546f560e1520e267e7_2.file.productlist.tpl.php:39 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135437ca61_98950484)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/ed/4f/4f/ed4f4f89038a00a905571edb55b9e4496246c67a_2.file.products.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135436a901_04420740)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:121 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:239 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:84 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
525 |
SELECT SQL_NO_CACHE *
FROM ps22_ets_mm_column
WHERE 1 AND id_menu=8
ORDER BY sort_order asc |
1.553
ms
|
27 |
Yes
|
|
/modules/ets_megamenu/ets_megamenu.php:950
/modules/ets_megamenu/ets_megamenu.php:940 (getColumns)
/modules/ets_megamenu/ets_megamenu.php:1632 (getMenus)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
16 |
SELECT SQL_NO_CACHE *
FROM `ps22_category` a
LEFT JOIN `ps22_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 1
LEFT JOIN `ps22_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 206) AND (b.`id_shop` = 1) LIMIT 1 |
1.529
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:164 (__construct)
/controllers/front/listing/CategoryController.php:78 (__construct)
/tools/profiling/Controller.php:41 (init)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
303 |
SELECT SQL_NO_CACHE COALESCE(SUM(first_level_quantity) + SUM(pack_quantity), 0) as deep_quantity,
COALESCE(SUM(first_level_quantity), 0) as quantity
FROM (SELECT SUM(cp.`quantity`) as first_level_quantity, 0 as pack_quantity
FROM `ps22_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 2188 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `ps22_cart_product` cp JOIN `ps22_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `ps22_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` = 2188 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
1.516
ms
|
0 |
|
|
/classes/Cart.php:1430
/classes/Product.php:4361 (getProductQuantity)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
256 |
SELECT SQL_NO_CACHE name, value, pf.id_feature, f.position, fvl.id_feature_value
FROM ps22_feature_product pf
LEFT JOIN ps22_feature_lang fl ON (fl.id_feature = pf.id_feature AND fl.id_lang = 1)
LEFT JOIN ps22_feature_value_lang fvl ON (fvl.id_feature_value = pf.id_feature_value AND fvl.id_lang = 1)
LEFT JOIN ps22_feature f ON (f.id_feature = pf.id_feature AND fl.id_lang = 1)
INNER JOIN ps22_feature_shop feature_shop
ON (feature_shop.id_feature = f.id_feature AND feature_shop.id_shop = 1)
WHERE pf.id_product = 2213
ORDER BY f.position ASC |
1.515
ms
|
1 |
Yes
|
|
/classes/Product.php:6021
/classes/Product.php:5824 (getFrontFeaturesStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
586 |
SELECT SQL_NO_CACHE c.*, cl.name,cl.link_rewrite
FROM ps22_category c
LEFT JOIN ps22_category_lang cl ON c.id_category=cl.id_category AND cl.id_lang=1
WHERE c.id_category IN(209,210,211,212,213,214,215,216,217,218,220,222,223,224,225,226,206,254)
ORDER BY cl.name ASC |
1.514
ms
|
18 |
Yes
|
|
/modules/ets_megamenu/ets_megamenu.php:1514
/modules/ets_megamenu/ets_megamenu.php:1204 (getCategoryById)
/modules/ets_megamenu/ets_megamenu.php:1169 (convertBlockProperties)
/classes/Hook.php:1077 (hookDisplayBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classic/f3/d5/9e/f3d59e42c90c7462916be2ef540caa369d2ac214_2.file.menu-html.tpl.php:89 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135404d5d2_33533514)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1634 (display)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
235 |
SELECT SQL_NO_CACHE *
FROM `ps22_product` a
LEFT JOIN `ps22_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `ps22_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 2215) AND (b.`id_shop` = 1) LIMIT 1 |
1.506
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:725 (__construct)
/classes/Link.php:113 (__construct)
/classes/Link.php:189 (getProductObject)
/classes/Product.php:5660 (getProductLink)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
607 |
SELECT SQL_NO_CACHE *
FROM `ps22_category` a
LEFT JOIN `ps22_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 1
LEFT JOIN `ps22_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 198) AND (b.`id_shop` = 1) LIMIT 1 |
1.501
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:164 (__construct)
/classes/Link.php:402 (__construct)
/classes/Link.php:458 (getCategoryObject)
/var/cache/prod/smarty/compile/classic/1c/9a/17/1c9a178d33d1c64d16da67eee7b233868cc8c77c_2.file.categories-tree.tpl.php:33 (getCategoryLink)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1354073306_20529102)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1502 (display)
/modules/ets_megamenu/ets_megamenu.php:1204 (displayCategories)
/modules/ets_megamenu/ets_megamenu.php:1169 (convertBlockProperties)
/classes/Hook.php:1077 (hookDisplayBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classic/f3/d5/9e/f3d59e42c90c7462916be2ef540caa369d2ac214_2.file.menu-html.tpl.php:89 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135404d5d2_33533514)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1634 (display)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
623 |
SELECT SQL_NO_CACHE pa.`id_product`, a.`color`, pac.`id_product_attribute`, 0 qty, a.`id_attribute`, al.`name`, IF(color = "", a.id_attribute, color) group_by
FROM `ps22_product_attribute` pa
INNER JOIN ps22_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
JOIN `ps22_product_attribute_combination` pac ON (pac.`id_product_attribute` = product_attribute_shop.`id_product_attribute`)
JOIN `ps22_attribute` a ON (a.`id_attribute` = pac.`id_attribute`)
JOIN `ps22_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 1)
JOIN `ps22_attribute_group` ag ON (a.id_attribute_group = ag.`id_attribute_group`)
WHERE pa.`id_product` IN (2263) AND ag.`is_color_group` = 1
GROUP BY pa.`id_product`, a.`id_attribute`, `group_by`
ORDER BY a.`position` ASC; |
1.494
ms
|
1 |
Yes
|
Yes
|
/classes/Product.php:4524
/src/Adapter/Product/ProductColorsRetriever.php:43 (getAttributesColorList)
/src/Adapter/Presenter/Product/ProductLazyArray.php:528 (getColoredVariants)
/src/Adapter/Presenter/AbstractLazyArray.php:269 (getMainVariants)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:276 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e13543ab4e7_88104059)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/0a/12/f6/0a12f6898800da3c62fd09546f560e1520e267e7_2.file.productlist.tpl.php:39 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135437ca61_98950484)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/ed/4f/4f/ed4f4f89038a00a905571edb55b9e4496246c67a_2.file.products.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135436a901_04420740)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:121 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:239 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:84 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
170 |
SELECT SQL_NO_CACHE name, value, pf.id_feature, f.position, fvl.id_feature_value
FROM ps22_feature_product pf
LEFT JOIN ps22_feature_lang fl ON (fl.id_feature = pf.id_feature AND fl.id_lang = 1)
LEFT JOIN ps22_feature_value_lang fvl ON (fvl.id_feature_value = pf.id_feature_value AND fvl.id_lang = 1)
LEFT JOIN ps22_feature f ON (f.id_feature = pf.id_feature AND fl.id_lang = 1)
INNER JOIN ps22_feature_shop feature_shop
ON (feature_shop.id_feature = f.id_feature AND feature_shop.id_shop = 1)
WHERE pf.id_product = 2263
ORDER BY f.position ASC |
1.493
ms
|
1 |
Yes
|
|
/classes/Product.php:6021
/classes/Product.php:5824 (getFrontFeaturesStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
26 |
SELECT SQL_NO_CACHE *
FROM `ps22_group` a
LEFT JOIN `ps22_group_shop` `c` ON a.`id_group` = c.`id_group` AND c.`id_shop` = 1
WHERE (a.`id_group` = 1) LIMIT 1 |
1.490
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Group.php:81 (__construct)
/classes/Group.php:397 (__construct)
/classes/Cart.php:249 (getCurrent)
/classes/Cart.php:222 (setTaxCalculationMethod)
/classes/controller/FrontController.php:467 (__construct)
/controllers/front/listing/CategoryController.php:81 (init)
/tools/profiling/Controller.php:41 (init)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
561 |
SELECT SQL_NO_CACHE c.*, cl.name,cl.link_rewrite
FROM ps22_category c
LEFT JOIN ps22_category_lang cl ON c.id_category=cl.id_category AND cl.id_lang=1
WHERE c.id_category IN(240)
ORDER BY cl.name ASC |
1.490
ms
|
1 |
Yes
|
|
/modules/ets_megamenu/ets_megamenu.php:1514
/modules/ets_megamenu/ets_megamenu.php:1204 (getCategoryById)
/modules/ets_megamenu/ets_megamenu.php:1169 (convertBlockProperties)
/classes/Hook.php:1077 (hookDisplayBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classic/f3/d5/9e/f3d59e42c90c7462916be2ef540caa369d2ac214_2.file.menu-html.tpl.php:89 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135404d5d2_33533514)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1634 (display)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
414 |
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps22_image` i
INNER JOIN ps22_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 2144
AND image_shop.`cover` = 1 LIMIT 1 |
1.483
ms
|
2 |
|
|
/classes/Product.php:3570
/classes/Product.php:5643 (getCover)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
379 |
SELECT SQL_NO_CACHE *
FROM `ps22_product` a
LEFT JOIN `ps22_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `ps22_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 2152) AND (b.`id_shop` = 1) LIMIT 1 |
1.481
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:725 (__construct)
/classes/Link.php:113 (__construct)
/classes/Link.php:189 (getProductObject)
/classes/Product.php:5660 (getProductLink)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
611 |
SELECT SQL_NO_CACHE *
FROM `ps22_category` a
LEFT JOIN `ps22_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 1
LEFT JOIN `ps22_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 262) AND (b.`id_shop` = 1) LIMIT 1 |
1.480
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:164 (__construct)
/classes/Link.php:402 (__construct)
/classes/Link.php:458 (getCategoryObject)
/var/cache/prod/smarty/compile/classic/1c/9a/17/1c9a178d33d1c64d16da67eee7b233868cc8c77c_2.file.categories-tree.tpl.php:33 (getCategoryLink)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1354073306_20529102)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1502 (display)
/modules/ets_megamenu/ets_megamenu.php:1204 (displayCategories)
/modules/ets_megamenu/ets_megamenu.php:1169 (convertBlockProperties)
/classes/Hook.php:1077 (hookDisplayBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classic/f3/d5/9e/f3d59e42c90c7462916be2ef540caa369d2ac214_2.file.menu-html.tpl.php:89 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135404d5d2_33533514)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1634 (display)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
521 |
SELECT SQL_NO_CACHE b.*,bl.title,bl.title_link,bl.content,bl.image_link
FROM ps22_ets_mm_block b
LEFT JOIN ps22_ets_mm_block_lang bl
ON b.id_block=bl.id_block AND bl.id_lang=1
WHERE 1 AND b.id_column=22
ORDER BY b.sort_order asc,bl.title asc |
1.462
ms
|
900 |
Yes
|
|
/modules/ets_megamenu/ets_megamenu.php:965
/modules/ets_megamenu/ets_megamenu.php:955 (getBlocks)
/modules/ets_megamenu/ets_megamenu.php:940 (getColumns)
/modules/ets_megamenu/ets_megamenu.php:1632 (getMenus)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
438 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps22_image` i
INNER JOIN ps22_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps22_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 2292
ORDER BY `position` |
1.461
ms
|
2 |
Yes
|
|
/classes/Product.php:3545
/src/Adapter/Image/ImageRetriever.php:84 (getImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:57 (__construct)
/classes/controller/ProductListingFrontController.php:119 (present)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
29 |
SELECT SQL_NO_CACHE `id_category`
FROM `ps22_category_shop`
WHERE `id_category` = 206
AND `id_shop` = 1 LIMIT 1 |
1.449
ms
|
1 |
|
|
/classes/Category.php:2450
/controllers/front/listing/CategoryController.php:83 (existsInShop)
/tools/profiling/Controller.php:41 (init)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
201 |
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 `ps22_product` p
INNER JOIN `ps22_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps22_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` = 2234) |
1.449
ms
|
1 |
|
|
/classes/Product.php:3860
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
440 |
SELECT SQL_NO_CACHE state FROM ps22_feature_flag WHERE name = 'multiple_image_format' LIMIT 1 |
1.444
ms
|
1 |
|
|
/classes/FeatureFlag.php:105
/src/Core/Image/ImageFormatConfiguration.php:69 (isEnabled)
/src/Adapter/Image/ImageRetriever.php:209 (getGenerationFormats)
/src/Adapter/Image/ImageRetriever.php:111 (getImage)
:undefined (PrestaShop\PrestaShop\Adapter\Image\{closure})
/src/Adapter/Image/ImageRetriever.php:104 (array_map)
/src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:57 (__construct)
/classes/controller/ProductListingFrontController.php:119 (present)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
124 |
SELECT SQL_NO_CACHE *
FROM `ps22_product` a
LEFT JOIN `ps22_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `ps22_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 2267) AND (b.`id_shop` = 1) LIMIT 1 |
1.431
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:725 (__construct)
/classes/Link.php:113 (__construct)
/classes/Link.php:189 (getProductObject)
/classes/Product.php:5660 (getProductLink)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
445 |
SELECT SQL_NO_CACHE `id_product_attribute`
FROM `ps22_product_attribute`
WHERE `id_product` = 2287 |
1.430
ms
|
1 |
|
|
/classes/Product.php:2902
/src/Adapter/Image/ImageRetriever.php:90 (getCombinationImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:57 (__construct)
/classes/controller/ProductListingFrontController.php:119 (present)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
567 |
SELECT SQL_NO_CACHE c.*, cl.name,cl.link_rewrite
FROM ps22_category c
LEFT JOIN ps22_category_lang cl ON c.id_category=cl.id_category AND cl.id_lang=1
WHERE c.id_category IN(238)
ORDER BY cl.name ASC |
1.422
ms
|
1 |
Yes
|
|
/modules/ets_megamenu/ets_megamenu.php:1514
/modules/ets_megamenu/ets_megamenu.php:1204 (getCategoryById)
/modules/ets_megamenu/ets_megamenu.php:1169 (convertBlockProperties)
/classes/Hook.php:1077 (hookDisplayBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classic/f3/d5/9e/f3d59e42c90c7462916be2ef540caa369d2ac214_2.file.menu-html.tpl.php:89 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135404d5d2_33533514)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1634 (display)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
437 |
SELECT SQL_NO_CACHE name, value, pf.id_feature, f.position, fvl.id_feature_value
FROM ps22_feature_product pf
LEFT JOIN ps22_feature_lang fl ON (fl.id_feature = pf.id_feature AND fl.id_lang = 1)
LEFT JOIN ps22_feature_value_lang fvl ON (fvl.id_feature_value = pf.id_feature_value AND fvl.id_lang = 1)
LEFT JOIN ps22_feature f ON (f.id_feature = pf.id_feature AND fl.id_lang = 1)
INNER JOIN ps22_feature_shop feature_shop
ON (feature_shop.id_feature = f.id_feature AND feature_shop.id_shop = 1)
WHERE pf.id_product = 2143
ORDER BY f.position ASC |
1.421
ms
|
1 |
Yes
|
|
/classes/Product.php:6021
/classes/Product.php:5824 (getFrontFeaturesStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
213 |
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 `ps22_product` p
INNER JOIN `ps22_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps22_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` = 2218) |
1.420
ms
|
1 |
|
|
/classes/Product.php:3860
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
363 |
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 `ps22_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 2160 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `ps22_cart_product` cp JOIN `ps22_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `ps22_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` = 2160 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
1.413
ms
|
0 |
|
|
/classes/Cart.php:1430
/classes/Product.php:4361 (getProductQuantity)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
661 |
SELECT SQL_NO_CACHE *
FROM `ps22_cms` a
LEFT JOIN `ps22_cms_shop` `c` ON a.`id_cms` = c.`id_cms` AND c.`id_shop` = 1
WHERE (a.`id_cms` = 1) LIMIT 1 |
1.412
ms
|
0 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (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:1088 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1019 (coreRenderWidget)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/7c/b9/fe/7cb9fe82eae491bdccb39f150924de614ad1fd8a_2.file.footer.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/prod/smarty/compile/classiclayouts_layout_left_column_tpl/7c/b9/fe/7cb9fe82eae491bdccb39f150924de614ad1fd8a_2.file.footer.tpl.php:39 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e13546aa2f4_73458832)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:348 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:117 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
355 |
SELECT SQL_NO_CACHE *
FROM `ps22_product` a
LEFT JOIN `ps22_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `ps22_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 2160) AND (b.`id_shop` = 1) LIMIT 1 |
1.406
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:725 (__construct)
/classes/Link.php:113 (__construct)
/classes/Link.php:189 (getProductObject)
/classes/Product.php:5660 (getProductLink)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
225 |
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 `ps22_product` p
INNER JOIN `ps22_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps22_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` = 2216) |
1.385
ms
|
1 |
|
|
/classes/Product.php:3860
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
307 |
SELECT SQL_NO_CACHE *
FROM `ps22_product` a
LEFT JOIN `ps22_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `ps22_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 2187) AND (b.`id_shop` = 1) LIMIT 1 |
1.384
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:725 (__construct)
/classes/Link.php:113 (__construct)
/classes/Link.php:189 (getProductObject)
/classes/Product.php:5660 (getProductLink)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
120 |
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 `ps22_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 2281 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `ps22_cart_product` cp JOIN `ps22_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `ps22_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` = 2281 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
1.382
ms
|
0 |
|
|
/classes/Cart.php:1430
/classes/Product.php:4361 (getProductQuantity)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
546 |
SELECT SQL_NO_CACHE *
FROM ps22_ets_mm_column
WHERE 1 AND id_menu=23
ORDER BY sort_order asc |
1.380
ms
|
27 |
Yes
|
|
/modules/ets_megamenu/ets_megamenu.php:950
/modules/ets_megamenu/ets_megamenu.php:940 (getColumns)
/modules/ets_megamenu/ets_megamenu.php:1632 (getMenus)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
375 |
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 `ps22_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 2157 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `ps22_cart_product` cp JOIN `ps22_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `ps22_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` = 2157 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
1.380
ms
|
0 |
|
|
/classes/Cart.php:1430
/classes/Product.php:4361 (getProductQuantity)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
389 |
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps22_image` i
INNER JOIN ps22_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 2150
AND image_shop.`cover` = 1 LIMIT 1 |
1.376
ms
|
2 |
|
|
/classes/Product.php:3570
/classes/Product.php:5643 (getCover)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
598 |
SELECT SQL_NO_CACHE *
FROM `ps22_category` a
LEFT JOIN `ps22_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 1
LEFT JOIN `ps22_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 212) AND (b.`id_shop` = 1) LIMIT 1 |
1.372
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:164 (__construct)
/classes/Link.php:402 (__construct)
/classes/Link.php:458 (getCategoryObject)
/var/cache/prod/smarty/compile/classic/1c/9a/17/1c9a178d33d1c64d16da67eee7b233868cc8c77c_2.file.categories-tree.tpl.php:33 (getCategoryLink)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1354073306_20529102)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1502 (display)
/modules/ets_megamenu/ets_megamenu.php:1204 (displayCategories)
/modules/ets_megamenu/ets_megamenu.php:1169 (convertBlockProperties)
/classes/Hook.php:1077 (hookDisplayBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classic/f3/d5/9e/f3d59e42c90c7462916be2ef540caa369d2ac214_2.file.menu-html.tpl.php:89 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135404d5d2_33533514)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1634 (display)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
621 |
SELECT SQL_NO_CACHE pa.`id_product`, a.`color`, pac.`id_product_attribute`, 0 qty, a.`id_attribute`, al.`name`, IF(color = "", a.id_attribute, color) group_by
FROM `ps22_product_attribute` pa
INNER JOIN ps22_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
JOIN `ps22_product_attribute_combination` pac ON (pac.`id_product_attribute` = product_attribute_shop.`id_product_attribute`)
JOIN `ps22_attribute` a ON (a.`id_attribute` = pac.`id_attribute`)
JOIN `ps22_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 1)
JOIN `ps22_attribute_group` ag ON (a.id_attribute_group = ag.`id_attribute_group`)
WHERE pa.`id_product` IN (2265) AND ag.`is_color_group` = 1
GROUP BY pa.`id_product`, a.`id_attribute`, `group_by`
ORDER BY a.`position` ASC; |
1.368
ms
|
1 |
Yes
|
Yes
|
/classes/Product.php:4524
/src/Adapter/Product/ProductColorsRetriever.php:43 (getAttributesColorList)
/src/Adapter/Presenter/Product/ProductLazyArray.php:528 (getColoredVariants)
/src/Adapter/Presenter/AbstractLazyArray.php:269 (getMainVariants)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:276 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e13543ab4e7_88104059)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/0a/12/f6/0a12f6898800da3c62fd09546f560e1520e267e7_2.file.productlist.tpl.php:39 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135437ca61_98950484)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/ed/4f/4f/ed4f4f89038a00a905571edb55b9e4496246c67a_2.file.products.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135436a901_04420740)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:121 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:239 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:84 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
17 |
SELECT SQL_NO_CACHE * FROM `ps22_currency` c ORDER BY `iso_code` ASC |
1.365
ms
|
1 |
Yes
|
|
/classes/Currency.php:709
/src/Adapter/Currency/CurrencyDataProvider.php:84 (findAllInstalled)
/src/Core/Localization/Currency/DataLayer/CurrencyInstalled.php:90 (findAllInstalled)
/src/Core/Localization/Currency/CurrencyDataSource.php:96 (getAllInstalledCurrencyIsoCodes)
/src/Core/Localization/Currency/Repository.php:87 (getAllInstalledCurrenciesData)
/src/Core/Localization/Locale/Repository.php:207 (getAllInstalledCurrencies)
/src/Core/Localization/Locale/Repository.php:150 (getPriceSpecifications)
/classes/controller/Controller.php:209 (getLocale)
/classes/controller/FrontController.php:284 (init)
/controllers/front/listing/CategoryController.php:81 (init)
/tools/profiling/Controller.php:41 (init)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
247 |
SELECT SQL_NO_CACHE *
FROM `ps22_product` a
LEFT JOIN `ps22_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `ps22_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 2213) AND (b.`id_shop` = 1) LIMIT 1 |
1.365
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:725 (__construct)
/classes/Link.php:113 (__construct)
/classes/Link.php:189 (getProductObject)
/classes/Product.php:5660 (getProductLink)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
221 |
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps22_image` i
INNER JOIN ps22_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 2216
AND image_shop.`cover` = 1 LIMIT 1 |
1.358
ms
|
2 |
|
|
/classes/Product.php:3570
/classes/Product.php:5643 (getCover)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
663 |
SELECT SQL_NO_CACHE *
FROM `ps22_cms_lang`
WHERE `id_cms` = 2 AND `id_shop` = 1 |
1.355
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:79
/classes/ObjectModel.php:283 (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:1088 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1019 (coreRenderWidget)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/7c/b9/fe/7cb9fe82eae491bdccb39f150924de614ad1fd8a_2.file.footer.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/prod/smarty/compile/classiclayouts_layout_left_column_tpl/7c/b9/fe/7cb9fe82eae491bdccb39f150924de614ad1fd8a_2.file.footer.tpl.php:39 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e13546aa2f4_73458832)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:348 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:117 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
233 |
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps22_image` i
INNER JOIN ps22_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 2215
AND image_shop.`cover` = 1 LIMIT 1 |
1.354
ms
|
2 |
|
|
/classes/Product.php:3570
/classes/Product.php:5643 (getCover)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
523 |
SELECT SQL_NO_CACHE b.*,bl.title,bl.title_link,bl.content,bl.image_link
FROM ps22_ets_mm_block b
LEFT JOIN ps22_ets_mm_block_lang bl
ON b.id_block=bl.id_block AND bl.id_lang=1
WHERE 1 AND b.id_column=24
ORDER BY b.sort_order asc,bl.title asc |
1.343
ms
|
900 |
Yes
|
|
/modules/ets_megamenu/ets_megamenu.php:965
/modules/ets_megamenu/ets_megamenu.php:955 (getBlocks)
/modules/ets_megamenu/ets_megamenu.php:940 (getColumns)
/modules/ets_megamenu/ets_megamenu.php:1632 (getMenus)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
52 |
SELECT SQL_NO_CACHE `id_category`
FROM `ps22_category_shop`
WHERE `id_category` = 206
AND `id_shop` = 1 LIMIT 1 |
1.342
ms
|
1 |
|
|
/classes/Category.php:2450
/controllers/front/listing/CategoryController.php:133 (existsInShop)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
194 |
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 `ps22_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 2239 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `ps22_cart_product` cp JOIN `ps22_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `ps22_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` = 2239 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
1.335
ms
|
0 |
|
|
/classes/Cart.php:1430
/classes/Product.php:4361 (getProductQuantity)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
418 |
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 `ps22_product` p
INNER JOIN `ps22_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps22_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` = 2144) |
1.330
ms
|
1 |
|
|
/classes/Product.php:3860
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
409 |
SELECT SQL_NO_CACHE COUNT(*) FROM `ps22_pack` WHERE id_product_pack = 2145 LIMIT 1 |
1.328
ms
|
1 |
|
|
/classes/Pack.php:89
/classes/Product.php:4344 (isPack)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
378 |
SELECT SQL_NO_CACHE name FROM ps22_category_lang WHERE id_shop = 1 AND id_lang = 1 AND id_category = 220 LIMIT 1 |
1.328
ms
|
1 |
|
|
/classes/Product.php:5659
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
584 |
SELECT SQL_NO_CACHE *
FROM `ps22_category` a
LEFT JOIN `ps22_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 1
LEFT JOIN `ps22_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 171) AND (b.`id_shop` = 1) LIMIT 1 |
1.325
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:164 (__construct)
/classes/Link.php:402 (__construct)
/classes/Link.php:458 (getCategoryObject)
/var/cache/prod/smarty/compile/classic/1c/9a/17/1c9a178d33d1c64d16da67eee7b233868cc8c77c_2.file.categories-tree.tpl.php:33 (getCategoryLink)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1354073306_20529102)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1502 (display)
/modules/ets_megamenu/ets_megamenu.php:1204 (displayCategories)
/modules/ets_megamenu/ets_megamenu.php:1169 (convertBlockProperties)
/classes/Hook.php:1077 (hookDisplayBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classic/f3/d5/9e/f3d59e42c90c7462916be2ef540caa369d2ac214_2.file.menu-html.tpl.php:89 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135404d5d2_33533514)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1634 (display)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
45 |
SELECT SQL_NO_CACHE id_lang FROM ps22_lang WHERE is_rtl=0 AND active=1 LIMIT 1 |
1.321
ms
|
1 |
|
|
/modules/ets_megamenu/ets_megamenu.php:1549
/modules/ets_megamenu/ets_megamenu.php:48 (multiLayoutExist)
:undefined (__construct)
/src/Core/Foundation/IoC/Container.php:123 (newInstance)
/src/Core/Foundation/IoC/Container.php:153 (makeInstanceFromClassName)
/src/Core/Foundation/IoC/Container.php:166 (doMake)
/src/Adapter/ServiceLocator.php:70 (make)
/classes/module/Module.php:1258 (get)
/tools/profiling/Module.php:35 (coreLoadModule)
/classes/module/Module.php:1237 (coreLoadModule)
/classes/Hook.php:966 (getInstanceByName)
/classes/controller/FrontController.php:633 (exec)
/controllers/front/listing/CategoryController.php:127 (initContent)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
134 |
SELECT SQL_NO_CACHE name, value, pf.id_feature, f.position, fvl.id_feature_value
FROM ps22_feature_product pf
LEFT JOIN ps22_feature_lang fl ON (fl.id_feature = pf.id_feature AND fl.id_lang = 1)
LEFT JOIN ps22_feature_value_lang fvl ON (fvl.id_feature_value = pf.id_feature_value AND fvl.id_lang = 1)
LEFT JOIN ps22_feature f ON (f.id_feature = pf.id_feature AND fl.id_lang = 1)
INNER JOIN ps22_feature_shop feature_shop
ON (feature_shop.id_feature = f.id_feature AND feature_shop.id_shop = 1)
WHERE pf.id_product = 2267
ORDER BY f.position ASC |
1.319
ms
|
1 |
Yes
|
|
/classes/Product.php:6021
/classes/Product.php:5824 (getFrontFeaturesStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
351 |
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 `ps22_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 2168 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `ps22_cart_product` cp JOIN `ps22_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `ps22_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` = 2168 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
1.319
ms
|
0 |
|
|
/classes/Cart.php:1430
/classes/Product.php:4361 (getProductQuantity)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
444 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps22_image` i
INNER JOIN ps22_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps22_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 2287
ORDER BY `position` |
1.318
ms
|
2 |
Yes
|
|
/classes/Product.php:3545
/src/Adapter/Image/ImageRetriever.php:84 (getImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:57 (__construct)
/classes/controller/ProductListingFrontController.php:119 (present)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
240 |
SELECT SQL_NO_CACHE COUNT(*) FROM `ps22_pack` WHERE id_product_pack = 2215 LIMIT 1 |
1.316
ms
|
1 |
|
|
/classes/Pack.php:89
/classes/Product.php:4344 (isPack)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
548 |
SELECT SQL_NO_CACHE b.*,bl.title,bl.title_link,bl.content,bl.image_link
FROM ps22_ets_mm_block b
LEFT JOIN ps22_ets_mm_block_lang bl
ON b.id_block=bl.id_block AND bl.id_lang=1
WHERE 1 AND b.id_column=33
ORDER BY b.sort_order asc,bl.title asc |
1.315
ms
|
900 |
Yes
|
|
/modules/ets_megamenu/ets_megamenu.php:965
/modules/ets_megamenu/ets_megamenu.php:955 (getBlocks)
/modules/ets_megamenu/ets_megamenu.php:940 (getColumns)
/modules/ets_megamenu/ets_megamenu.php:1632 (getMenus)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
573 |
SELECT SQL_NO_CACHE *
FROM `ps22_category` a
LEFT JOIN `ps22_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 1
LEFT JOIN `ps22_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 237) AND (b.`id_shop` = 1) LIMIT 1 |
1.308
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:164 (__construct)
/classes/Link.php:402 (__construct)
/classes/Link.php:458 (getCategoryObject)
/var/cache/prod/smarty/compile/classic/1c/9a/17/1c9a178d33d1c64d16da67eee7b233868cc8c77c_2.file.categories-tree.tpl.php:33 (getCategoryLink)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1354073306_20529102)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1502 (display)
/modules/ets_megamenu/ets_megamenu.php:1204 (displayCategories)
/modules/ets_megamenu/ets_megamenu.php:1169 (convertBlockProperties)
/classes/Hook.php:1077 (hookDisplayBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classic/f3/d5/9e/f3d59e42c90c7462916be2ef540caa369d2ac214_2.file.menu-html.tpl.php:89 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135404d5d2_33533514)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1634 (display)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
387 |
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 `ps22_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 2152 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `ps22_cart_product` cp JOIN `ps22_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `ps22_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` = 2152 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
1.306
ms
|
0 |
|
|
/classes/Cart.php:1430
/classes/Product.php:4361 (getProductQuantity)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
149 |
SELECT SQL_NO_CACHE *
FROM `ps22_product` a
LEFT JOIN `ps22_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `ps22_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 2264) AND (b.`id_shop` = 1) LIMIT 1 |
1.306
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:725 (__construct)
/classes/Link.php:113 (__construct)
/classes/Link.php:189 (getProductObject)
/classes/Product.php:5660 (getProductLink)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
173 |
SELECT SQL_NO_CACHE *
FROM `ps22_product` a
LEFT JOIN `ps22_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `ps22_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 2262) AND (b.`id_shop` = 1) LIMIT 1 |
1.305
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:725 (__construct)
/classes/Link.php:113 (__construct)
/classes/Link.php:189 (getProductObject)
/classes/Product.php:5660 (getProductLink)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
137 |
SELECT SQL_NO_CACHE *
FROM `ps22_product` a
LEFT JOIN `ps22_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `ps22_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 2265) AND (b.`id_shop` = 1) LIMIT 1 |
1.296
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:725 (__construct)
/classes/Link.php:113 (__construct)
/classes/Link.php:189 (getProductObject)
/classes/Product.php:5660 (getProductLink)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
331 |
SELECT SQL_NO_CACHE *
FROM `ps22_product` a
LEFT JOIN `ps22_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `ps22_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 2170) AND (b.`id_shop` = 1) LIMIT 1 |
1.295
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:725 (__construct)
/classes/Link.php:113 (__construct)
/classes/Link.php:189 (getProductObject)
/classes/Product.php:5660 (getProductLink)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
244 |
SELECT SQL_NO_CACHE name, value, pf.id_feature, f.position, fvl.id_feature_value
FROM ps22_feature_product pf
LEFT JOIN ps22_feature_lang fl ON (fl.id_feature = pf.id_feature AND fl.id_lang = 1)
LEFT JOIN ps22_feature_value_lang fvl ON (fvl.id_feature_value = pf.id_feature_value AND fvl.id_lang = 1)
LEFT JOIN ps22_feature f ON (f.id_feature = pf.id_feature AND fl.id_lang = 1)
INNER JOIN ps22_feature_shop feature_shop
ON (feature_shop.id_feature = f.id_feature AND feature_shop.id_shop = 1)
WHERE pf.id_product = 2215
ORDER BY f.position ASC |
1.275
ms
|
1 |
Yes
|
|
/classes/Product.php:6021
/classes/Product.php:5824 (getFrontFeaturesStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
522 |
SELECT SQL_NO_CACHE b.*,bl.title,bl.title_link,bl.content,bl.image_link
FROM ps22_ets_mm_block b
LEFT JOIN ps22_ets_mm_block_lang bl
ON b.id_block=bl.id_block AND bl.id_lang=1
WHERE 1 AND b.id_column=23
ORDER BY b.sort_order asc,bl.title asc |
1.272
ms
|
900 |
Yes
|
|
/modules/ets_megamenu/ets_megamenu.php:965
/modules/ets_megamenu/ets_megamenu.php:955 (getBlocks)
/modules/ets_megamenu/ets_megamenu.php:940 (getColumns)
/modules/ets_megamenu/ets_megamenu.php:1632 (getMenus)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
85 |
SELECT SQL_NO_CACHE tr.*
FROM `ps22_tax_rule` tr
JOIN `ps22_tax_rules_group` trg ON (tr.`id_tax_rules_group` = trg.`id_tax_rules_group`)
WHERE trg.`active` = 1
AND tr.`id_country` = 8
AND tr.`id_tax_rules_group` = 1
AND tr.`id_state` IN (0, 0)
AND ('0' BETWEEN tr.`zipcode_from` AND tr.`zipcode_to`
OR (tr.`zipcode_to` = 0 AND tr.`zipcode_from` IN(0, '0')))
ORDER BY tr.`zipcode_from` DESC, tr.`zipcode_to` DESC, tr.`id_state` DESC, tr.`id_country` DESC |
1.271
ms
|
1 |
Yes
|
|
/classes/tax/TaxRulesTaxManager.php:109
/classes/Product.php:5972 (getTaxCalculator)
/classes/Product.php:5864 (getTaxesInformations)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
367 |
SELECT SQL_NO_CACHE *
FROM `ps22_product` a
LEFT JOIN `ps22_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `ps22_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 2157) AND (b.`id_shop` = 1) LIMIT 1 |
1.270
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:725 (__construct)
/classes/Link.php:113 (__construct)
/classes/Link.php:189 (getProductObject)
/classes/Product.php:5660 (getProductLink)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
540 |
SELECT SQL_NO_CACHE *
FROM ps22_ets_mm_column
WHERE 1 AND id_menu=24
ORDER BY sort_order asc |
1.269
ms
|
27 |
Yes
|
|
/modules/ets_megamenu/ets_megamenu.php:950
/modules/ets_megamenu/ets_megamenu.php:940 (getColumns)
/modules/ets_megamenu/ets_megamenu.php:1632 (getMenus)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
304 |
SELECT SQL_NO_CACHE name, value, pf.id_feature, f.position, fvl.id_feature_value
FROM ps22_feature_product pf
LEFT JOIN ps22_feature_lang fl ON (fl.id_feature = pf.id_feature AND fl.id_lang = 1)
LEFT JOIN ps22_feature_value_lang fvl ON (fvl.id_feature_value = pf.id_feature_value AND fvl.id_lang = 1)
LEFT JOIN ps22_feature f ON (f.id_feature = pf.id_feature AND fl.id_lang = 1)
INNER JOIN ps22_feature_shop feature_shop
ON (feature_shop.id_feature = f.id_feature AND feature_shop.id_shop = 1)
WHERE pf.id_product = 2188
ORDER BY f.position ASC |
1.268
ms
|
1 |
Yes
|
|
/classes/Product.php:6021
/classes/Product.php:5824 (getFrontFeaturesStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
51 |
SELECT SQL_NO_CACHE `name`
FROM `ps22_hook`
WHERE `id_hook` = 699 LIMIT 1 |
1.266
ms
|
1 |
|
|
/classes/Hook.php:244
/classes/Hook.php:911 (getNameById)
/classes/controller/FrontController.php:633 (exec)
/controllers/front/listing/CategoryController.php:127 (initContent)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
388 |
SELECT SQL_NO_CACHE name, value, pf.id_feature, f.position, fvl.id_feature_value
FROM ps22_feature_product pf
LEFT JOIN ps22_feature_lang fl ON (fl.id_feature = pf.id_feature AND fl.id_lang = 1)
LEFT JOIN ps22_feature_value_lang fvl ON (fvl.id_feature_value = pf.id_feature_value AND fvl.id_lang = 1)
LEFT JOIN ps22_feature f ON (f.id_feature = pf.id_feature AND fl.id_lang = 1)
INNER JOIN ps22_feature_shop feature_shop
ON (feature_shop.id_feature = f.id_feature AND feature_shop.id_shop = 1)
WHERE pf.id_product = 2152
ORDER BY f.position ASC |
1.263
ms
|
1 |
Yes
|
|
/classes/Product.php:6021
/classes/Product.php:5824 (getFrontFeaturesStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
625 |
SELECT SQL_NO_CACHE pa.`id_product`, a.`color`, pac.`id_product_attribute`, 0 qty, a.`id_attribute`, al.`name`, IF(color = "", a.id_attribute, color) group_by
FROM `ps22_product_attribute` pa
INNER JOIN ps22_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
JOIN `ps22_product_attribute_combination` pac ON (pac.`id_product_attribute` = product_attribute_shop.`id_product_attribute`)
JOIN `ps22_attribute` a ON (a.`id_attribute` = pac.`id_attribute`)
JOIN `ps22_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 1)
JOIN `ps22_attribute_group` ag ON (a.id_attribute_group = ag.`id_attribute_group`)
WHERE pa.`id_product` IN (2239) AND ag.`is_color_group` = 1
GROUP BY pa.`id_product`, a.`id_attribute`, `group_by`
ORDER BY a.`position` ASC; |
1.259
ms
|
1 |
Yes
|
Yes
|
/classes/Product.php:4524
/src/Adapter/Product/ProductColorsRetriever.php:43 (getAttributesColorList)
/src/Adapter/Presenter/Product/ProductLazyArray.php:528 (getColoredVariants)
/src/Adapter/Presenter/AbstractLazyArray.php:269 (getMainVariants)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:276 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e13543ab4e7_88104059)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/0a/12/f6/0a12f6898800da3c62fd09546f560e1520e267e7_2.file.productlist.tpl.php:39 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135437ca61_98950484)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/ed/4f/4f/ed4f4f89038a00a905571edb55b9e4496246c67a_2.file.products.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135436a901_04420740)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:121 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:239 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:84 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
579 |
SELECT SQL_NO_CACHE c.*, cl.name,cl.link_rewrite
FROM ps22_category c
LEFT JOIN ps22_category_lang cl ON c.id_category=cl.id_category AND cl.id_lang=1
WHERE c.id_category IN(127)
ORDER BY cl.name ASC |
1.257
ms
|
1 |
Yes
|
|
/modules/ets_megamenu/ets_megamenu.php:1514
/modules/ets_megamenu/ets_megamenu.php:1204 (getCategoryById)
/modules/ets_megamenu/ets_megamenu.php:1169 (convertBlockProperties)
/classes/Hook.php:1077 (hookDisplayBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classic/f3/d5/9e/f3d59e42c90c7462916be2ef540caa369d2ac214_2.file.menu-html.tpl.php:89 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135404d5d2_33533514)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1634 (display)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
616 |
SELECT SQL_NO_CACHE pa.`id_product`, a.`color`, pac.`id_product_attribute`, 0 qty, a.`id_attribute`, al.`name`, IF(color = "", a.id_attribute, color) group_by
FROM `ps22_product_attribute` pa
INNER JOIN ps22_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
JOIN `ps22_product_attribute_combination` pac ON (pac.`id_product_attribute` = product_attribute_shop.`id_product_attribute`)
JOIN `ps22_attribute` a ON (a.`id_attribute` = pac.`id_attribute`)
JOIN `ps22_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 1)
JOIN `ps22_attribute_group` ag ON (a.id_attribute_group = ag.`id_attribute_group`)
WHERE pa.`id_product` IN (2292) AND ag.`is_color_group` = 1
GROUP BY pa.`id_product`, a.`id_attribute`, `group_by`
ORDER BY a.`position` ASC; |
1.256
ms
|
1 |
Yes
|
Yes
|
/classes/Product.php:4524
/src/Adapter/Product/ProductColorsRetriever.php:43 (getAttributesColorList)
/src/Adapter/Presenter/Product/ProductLazyArray.php:528 (getColoredVariants)
/src/Adapter/Presenter/AbstractLazyArray.php:269 (getMainVariants)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:276 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e13543ab4e7_88104059)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/0a/12/f6/0a12f6898800da3c62fd09546f560e1520e267e7_2.file.productlist.tpl.php:39 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135437ca61_98950484)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/ed/4f/4f/ed4f4f89038a00a905571edb55b9e4496246c67a_2.file.products.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135436a901_04420740)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:121 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:239 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:84 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
50 |
SELECT SQL_NO_CACHE c.id_cms as value,CONCAT('mm_cms_',c.id_cms) as id, cl.meta_title as label
FROM ps22_cms c
LEFT JOIN ps22_cms_lang cl ON c.id_cms=cl.id_cms AND cl.id_lang=1
WHERE c.active=1
ORDER BY cl.meta_title asc |
1.255
ms
|
12 |
Yes
|
|
/modules/ets_megamenu/ets_megamenu.php:996
/modules/ets_megamenu/ets_megamenu.php:385 (getCMSs)
:undefined (__construct)
/src/Core/Foundation/IoC/Container.php:123 (newInstance)
/src/Core/Foundation/IoC/Container.php:153 (makeInstanceFromClassName)
/src/Core/Foundation/IoC/Container.php:166 (doMake)
/src/Adapter/ServiceLocator.php:70 (make)
/classes/module/Module.php:1258 (get)
/tools/profiling/Module.php:35 (coreLoadModule)
/classes/module/Module.php:1237 (coreLoadModule)
/classes/Hook.php:966 (getInstanceByName)
/classes/controller/FrontController.php:633 (exec)
/controllers/front/listing/CategoryController.php:127 (initContent)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
605 |
SELECT SQL_NO_CACHE *
FROM `ps22_cms` a
LEFT JOIN `ps22_cms_lang` `b` ON a.`id_cms` = b.`id_cms` AND b.`id_lang` = 1
LEFT JOIN `ps22_cms_shop` `c` ON a.`id_cms` = c.`id_cms` AND c.`id_shop` = 1
WHERE (a.`id_cms` = 52) AND (b.`id_shop` = 1) LIMIT 1 |
1.255
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Link.php:555 (__construct)
/modules/ets_megamenu/ets_megamenu.php:1197 (getCMSLink)
/modules/ets_megamenu/ets_megamenu.php:1169 (convertBlockProperties)
/classes/Hook.php:1077 (hookDisplayBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classic/f3/d5/9e/f3d59e42c90c7462916be2ef540caa369d2ac214_2.file.menu-html.tpl.php:89 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135404d5d2_33533514)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1634 (display)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
376 |
SELECT SQL_NO_CACHE name, value, pf.id_feature, f.position, fvl.id_feature_value
FROM ps22_feature_product pf
LEFT JOIN ps22_feature_lang fl ON (fl.id_feature = pf.id_feature AND fl.id_lang = 1)
LEFT JOIN ps22_feature_value_lang fvl ON (fvl.id_feature_value = pf.id_feature_value AND fvl.id_lang = 1)
LEFT JOIN ps22_feature f ON (f.id_feature = pf.id_feature AND fl.id_lang = 1)
INNER JOIN ps22_feature_shop feature_shop
ON (feature_shop.id_feature = f.id_feature AND feature_shop.id_shop = 1)
WHERE pf.id_product = 2157
ORDER BY f.position ASC |
1.253
ms
|
1 |
Yes
|
|
/classes/Product.php:6021
/classes/Product.php:5824 (getFrontFeaturesStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
550 |
SELECT SQL_NO_CACHE b.*,bl.title,bl.title_link,bl.content,bl.image_link
FROM ps22_ets_mm_block b
LEFT JOIN ps22_ets_mm_block_lang bl
ON b.id_block=bl.id_block AND bl.id_lang=1
WHERE 1 AND b.id_column=34
ORDER BY b.sort_order asc,bl.title asc |
1.248
ms
|
900 |
Yes
|
|
/modules/ets_megamenu/ets_megamenu.php:965
/modules/ets_megamenu/ets_megamenu.php:955 (getBlocks)
/modules/ets_megamenu/ets_megamenu.php:940 (getColumns)
/modules/ets_megamenu/ets_megamenu.php:1632 (getMenus)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
538 |
SELECT SQL_NO_CACHE b.*,bl.title,bl.title_link,bl.content,bl.image_link
FROM ps22_ets_mm_block b
LEFT JOIN ps22_ets_mm_block_lang bl
ON b.id_block=bl.id_block AND bl.id_lang=1
WHERE 1 AND b.id_column=39
ORDER BY b.sort_order asc,bl.title asc |
1.247
ms
|
900 |
Yes
|
|
/modules/ets_megamenu/ets_megamenu.php:965
/modules/ets_megamenu/ets_megamenu.php:955 (getBlocks)
/modules/ets_megamenu/ets_megamenu.php:940 (getColumns)
/modules/ets_megamenu/ets_megamenu.php:1632 (getMenus)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
280 |
SELECT SQL_NO_CACHE name, value, pf.id_feature, f.position, fvl.id_feature_value
FROM ps22_feature_product pf
LEFT JOIN ps22_feature_lang fl ON (fl.id_feature = pf.id_feature AND fl.id_lang = 1)
LEFT JOIN ps22_feature_value_lang fvl ON (fvl.id_feature_value = pf.id_feature_value AND fvl.id_lang = 1)
LEFT JOIN ps22_feature f ON (f.id_feature = pf.id_feature AND fl.id_lang = 1)
INNER JOIN ps22_feature_shop feature_shop
ON (feature_shop.id_feature = f.id_feature AND feature_shop.id_shop = 1)
WHERE pf.id_product = 2196
ORDER BY f.position ASC |
1.246
ms
|
1 |
Yes
|
|
/classes/Product.php:6021
/classes/Product.php:5824 (getFrontFeaturesStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
364 |
SELECT SQL_NO_CACHE name, value, pf.id_feature, f.position, fvl.id_feature_value
FROM ps22_feature_product pf
LEFT JOIN ps22_feature_lang fl ON (fl.id_feature = pf.id_feature AND fl.id_lang = 1)
LEFT JOIN ps22_feature_value_lang fvl ON (fvl.id_feature_value = pf.id_feature_value AND fvl.id_lang = 1)
LEFT JOIN ps22_feature f ON (f.id_feature = pf.id_feature AND fl.id_lang = 1)
INNER JOIN ps22_feature_shop feature_shop
ON (feature_shop.id_feature = f.id_feature AND feature_shop.id_shop = 1)
WHERE pf.id_product = 2160
ORDER BY f.position ASC |
1.245
ms
|
1 |
Yes
|
|
/classes/Product.php:6021
/classes/Product.php:5824 (getFrontFeaturesStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
568 |
SELECT SQL_NO_CACHE *
FROM `ps22_category` a
LEFT JOIN `ps22_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 1
LEFT JOIN `ps22_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 238) AND (b.`id_shop` = 1) LIMIT 1 |
1.243
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:164 (__construct)
/classes/Link.php:402 (__construct)
/classes/Link.php:458 (getCategoryObject)
/var/cache/prod/smarty/compile/classic/1c/9a/17/1c9a178d33d1c64d16da67eee7b233868cc8c77c_2.file.categories-tree.tpl.php:33 (getCategoryLink)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1354073306_20529102)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1502 (display)
/modules/ets_megamenu/ets_megamenu.php:1204 (displayCategories)
/modules/ets_megamenu/ets_megamenu.php:1169 (convertBlockProperties)
/classes/Hook.php:1077 (hookDisplayBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classic/f3/d5/9e/f3d59e42c90c7462916be2ef540caa369d2ac214_2.file.menu-html.tpl.php:89 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135404d5d2_33533514)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1634 (display)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
340 |
SELECT SQL_NO_CACHE name, value, pf.id_feature, f.position, fvl.id_feature_value
FROM ps22_feature_product pf
LEFT JOIN ps22_feature_lang fl ON (fl.id_feature = pf.id_feature AND fl.id_lang = 1)
LEFT JOIN ps22_feature_value_lang fvl ON (fvl.id_feature_value = pf.id_feature_value AND fvl.id_lang = 1)
LEFT JOIN ps22_feature f ON (f.id_feature = pf.id_feature AND fl.id_lang = 1)
INNER JOIN ps22_feature_shop feature_shop
ON (feature_shop.id_feature = f.id_feature AND feature_shop.id_shop = 1)
WHERE pf.id_product = 2170
ORDER BY f.position ASC |
1.239
ms
|
1 |
Yes
|
|
/classes/Product.php:6021
/classes/Product.php:5824 (getFrontFeaturesStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
589 |
SELECT SQL_NO_CACHE *
FROM `ps22_category` a
LEFT JOIN `ps22_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 1
LEFT JOIN `ps22_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 224) AND (b.`id_shop` = 1) LIMIT 1 |
1.239
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:164 (__construct)
/classes/Link.php:402 (__construct)
/classes/Link.php:458 (getCategoryObject)
/var/cache/prod/smarty/compile/classic/1c/9a/17/1c9a178d33d1c64d16da67eee7b233868cc8c77c_2.file.categories-tree.tpl.php:33 (getCategoryLink)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1354073306_20529102)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1502 (display)
/modules/ets_megamenu/ets_megamenu.php:1204 (displayCategories)
/modules/ets_megamenu/ets_megamenu.php:1169 (convertBlockProperties)
/classes/Hook.php:1077 (hookDisplayBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classic/f3/d5/9e/f3d59e42c90c7462916be2ef540caa369d2ac214_2.file.menu-html.tpl.php:89 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135404d5d2_33533514)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1634 (display)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
206 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps22_stock_available`
WHERE (id_product = 2234) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
1.232
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:453
/classes/Product.php:4349 (getQuantityAvailableByProduct)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
608 |
SELECT SQL_NO_CACHE c.id_cms as value,CONCAT('mm_cms_',c.id_cms) as id, cl.meta_title as label
FROM ps22_cms c
LEFT JOIN ps22_cms_lang cl ON c.id_cms=cl.id_cms AND cl.id_lang=1
WHERE c.active=1 AND c.id_cms IN(43)
ORDER BY cl.meta_title asc |
1.231
ms
|
1 |
Yes
|
|
/modules/ets_megamenu/ets_megamenu.php:996
/modules/ets_megamenu/ets_megamenu.php:1193 (getCMSs)
/modules/ets_megamenu/ets_megamenu.php:1169 (convertBlockProperties)
/classes/Hook.php:1077 (hookDisplayBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classic/f3/d5/9e/f3d59e42c90c7462916be2ef540caa369d2ac214_2.file.menu-html.tpl.php:89 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135404d5d2_33533514)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1634 (display)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
352 |
SELECT SQL_NO_CACHE name, value, pf.id_feature, f.position, fvl.id_feature_value
FROM ps22_feature_product pf
LEFT JOIN ps22_feature_lang fl ON (fl.id_feature = pf.id_feature AND fl.id_lang = 1)
LEFT JOIN ps22_feature_value_lang fvl ON (fvl.id_feature_value = pf.id_feature_value AND fvl.id_lang = 1)
LEFT JOIN ps22_feature f ON (f.id_feature = pf.id_feature AND fl.id_lang = 1)
INNER JOIN ps22_feature_shop feature_shop
ON (feature_shop.id_feature = f.id_feature AND feature_shop.id_shop = 1)
WHERE pf.id_product = 2168
ORDER BY f.position ASC |
1.230
ms
|
1 |
Yes
|
|
/classes/Product.php:6021
/classes/Product.php:5824 (getFrontFeaturesStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
18 |
SELECT SQL_NO_CACHE `id_lang` FROM `ps22_lang`
WHERE `locale` = 'fr-fr'
OR `language_code` = 'fr-fr' LIMIT 1 |
1.221
ms
|
1 |
|
|
/classes/Language.php:883
/src/Adapter/Currency/CurrencyDataProvider.php:112 (getIdByLocale)
/src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:102 (getCurrencyByIsoCodeAndLocale)
/src/Core/Data/Layer/AbstractDataLayer.php:91 (doRead)
/src/Core/Data/Layer/AbstractDataLayer.php:150 (read)
/src/Core/Data/Layer/AbstractDataLayer.php:95 (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:207 (getAllInstalledCurrencies)
/src/Core/Localization/Locale/Repository.php:150 (getPriceSpecifications)
/classes/controller/Controller.php:209 (getLocale)
/classes/controller/FrontController.php:284 (init)
/controllers/front/listing/CategoryController.php:81 (init)
/tools/profiling/Controller.php:41 (init)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
571 |
SELECT SQL_NO_CACHE c.*, cl.name,cl.link_rewrite
FROM ps22_category c
LEFT JOIN ps22_category_lang cl ON c.id_category=cl.id_category AND cl.id_lang=1
WHERE c.id_category IN(130,235,237)
ORDER BY cl.name ASC |
1.220
ms
|
3 |
Yes
|
|
/modules/ets_megamenu/ets_megamenu.php:1514
/modules/ets_megamenu/ets_megamenu.php:1204 (getCategoryById)
/modules/ets_megamenu/ets_megamenu.php:1169 (convertBlockProperties)
/classes/Hook.php:1077 (hookDisplayBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classic/f3/d5/9e/f3d59e42c90c7462916be2ef540caa369d2ac214_2.file.menu-html.tpl.php:89 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135404d5d2_33533514)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1634 (display)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
343 |
SELECT SQL_NO_CACHE *
FROM `ps22_product` a
LEFT JOIN `ps22_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `ps22_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 2168) AND (b.`id_shop` = 1) LIMIT 1 |
1.220
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:725 (__construct)
/classes/Link.php:113 (__construct)
/classes/Link.php:189 (getProductObject)
/classes/Product.php:5660 (getProductLink)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
553 |
SELECT SQL_NO_CACHE *
FROM `ps22_category` a
LEFT JOIN `ps22_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 1
LEFT JOIN `ps22_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 191) AND (b.`id_shop` = 1) LIMIT 1 |
1.220
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:164 (__construct)
/classes/Link.php:402 (__construct)
/classes/Link.php:458 (getCategoryObject)
/var/cache/prod/smarty/compile/classic/1c/9a/17/1c9a178d33d1c64d16da67eee7b233868cc8c77c_2.file.categories-tree.tpl.php:33 (getCategoryLink)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1354073306_20529102)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1502 (display)
/modules/ets_megamenu/ets_megamenu.php:1204 (displayCategories)
/modules/ets_megamenu/ets_megamenu.php:1169 (convertBlockProperties)
/classes/Hook.php:1077 (hookDisplayBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classic/f3/d5/9e/f3d59e42c90c7462916be2ef540caa369d2ac214_2.file.menu-html.tpl.php:89 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135404d5d2_33533514)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1634 (display)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
620 |
SELECT SQL_NO_CACHE pa.`id_product`, a.`color`, pac.`id_product_attribute`, 0 qty, a.`id_attribute`, al.`name`, IF(color = "", a.id_attribute, color) group_by
FROM `ps22_product_attribute` pa
INNER JOIN ps22_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
JOIN `ps22_product_attribute_combination` pac ON (pac.`id_product_attribute` = product_attribute_shop.`id_product_attribute`)
JOIN `ps22_attribute` a ON (a.`id_attribute` = pac.`id_attribute`)
JOIN `ps22_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 1)
JOIN `ps22_attribute_group` ag ON (a.id_attribute_group = ag.`id_attribute_group`)
WHERE pa.`id_product` IN (2267) AND ag.`is_color_group` = 1
GROUP BY pa.`id_product`, a.`id_attribute`, `group_by`
ORDER BY a.`position` ASC; |
1.219
ms
|
1 |
Yes
|
Yes
|
/classes/Product.php:4524
/src/Adapter/Product/ProductColorsRetriever.php:43 (getAttributesColorList)
/src/Adapter/Presenter/Product/ProductLazyArray.php:528 (getColoredVariants)
/src/Adapter/Presenter/AbstractLazyArray.php:269 (getMainVariants)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:276 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e13543ab4e7_88104059)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/0a/12/f6/0a12f6898800da3c62fd09546f560e1520e267e7_2.file.productlist.tpl.php:39 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135437ca61_98950484)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/ed/4f/4f/ed4f4f89038a00a905571edb55b9e4496246c67a_2.file.products.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135436a901_04420740)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:121 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:239 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:84 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
145 |
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 `ps22_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 2265 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `ps22_cart_product` cp JOIN `ps22_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `ps22_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` = 2265 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
1.214
ms
|
0 |
|
|
/classes/Cart.php:1430
/classes/Product.php:4361 (getProductQuantity)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
79 |
SELECT SQL_NO_CACHE tr.*
FROM `ps22_tax_rule` tr
JOIN `ps22_tax_rules_group` trg ON (tr.`id_tax_rules_group` = trg.`id_tax_rules_group`)
WHERE trg.`active` = 1
AND tr.`id_country` = 8
AND tr.`id_tax_rules_group` = 0
AND tr.`id_state` IN (0, 0)
AND ('75005' BETWEEN tr.`zipcode_from` AND tr.`zipcode_to`
OR (tr.`zipcode_to` = 0 AND tr.`zipcode_from` IN(0, '75005')))
ORDER BY tr.`zipcode_from` DESC, tr.`zipcode_to` DESC, tr.`id_state` DESC, tr.`id_country` DESC |
1.213
ms
|
0 |
|
|
/classes/tax/TaxRulesTaxManager.php:109
/classes/Product.php:3952 (getTaxCalculator)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5726 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
161 |
SELECT SQL_NO_CACHE *
FROM `ps22_product` a
LEFT JOIN `ps22_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `ps22_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 2263) AND (b.`id_shop` = 1) LIMIT 1 |
1.211
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:725 (__construct)
/classes/Link.php:113 (__construct)
/classes/Link.php:189 (getProductObject)
/classes/Product.php:5660 (getProductLink)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
230 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps22_stock_available`
WHERE (id_product = 2216) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
1.209
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:453
/classes/Product.php:4349 (getQuantityAvailableByProduct)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
549 |
SELECT SQL_NO_CACHE b.*,bl.title,bl.title_link,bl.content,bl.image_link
FROM ps22_ets_mm_block b
LEFT JOIN ps22_ets_mm_block_lang bl
ON b.id_block=bl.id_block AND bl.id_lang=1
WHERE 1 AND b.id_column=35
ORDER BY b.sort_order asc,bl.title asc |
1.206
ms
|
900 |
Yes
|
|
/modules/ets_megamenu/ets_megamenu.php:965
/modules/ets_megamenu/ets_megamenu.php:955 (getBlocks)
/modules/ets_megamenu/ets_megamenu.php:940 (getColumns)
/modules/ets_megamenu/ets_megamenu.php:1632 (getMenus)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
112 |
SELECT SQL_NO_CACHE *
FROM `ps22_product` a
LEFT JOIN `ps22_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `ps22_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 2281) AND (b.`id_shop` = 1) LIMIT 1 |
1.206
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:725 (__construct)
/classes/Link.php:113 (__construct)
/classes/Link.php:189 (getProductObject)
/classes/Product.php:5660 (getProductLink)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
502 |
SELECT SQL_NO_CACHE `id_module` FROM `ps22_module_shop` WHERE `id_module` = 15 AND `id_shop` = 1 LIMIT 1 |
1.201
ms
|
1 |
|
|
/classes/module/Module.php:2132
/classes/Hook.php:1083 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1019 (coreRenderWidget)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:77 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:31 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
530 |
SELECT SQL_NO_CACHE *
FROM `ps22_category` a
LEFT JOIN `ps22_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 1
LEFT JOIN `ps22_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 196) AND (b.`id_shop` = 1) LIMIT 1 |
1.199
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:164 (__construct)
/classes/Link.php:402 (__construct)
/classes/Link.php:458 (getCategoryObject)
/modules/ets_megamenu/ets_megamenu.php:1229 (getCategoryLink)
/modules/ets_megamenu/ets_megamenu.php:941 (getMenuLink)
/modules/ets_megamenu/ets_megamenu.php:1632 (getMenus)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
618 |
SELECT SQL_NO_CACHE pa.`id_product`, a.`color`, pac.`id_product_attribute`, 0 qty, a.`id_attribute`, al.`name`, IF(color = "", a.id_attribute, color) group_by
FROM `ps22_product_attribute` pa
INNER JOIN ps22_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
JOIN `ps22_product_attribute_combination` pac ON (pac.`id_product_attribute` = product_attribute_shop.`id_product_attribute`)
JOIN `ps22_attribute` a ON (a.`id_attribute` = pac.`id_attribute`)
JOIN `ps22_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 1)
JOIN `ps22_attribute_group` ag ON (a.id_attribute_group = ag.`id_attribute_group`)
WHERE pa.`id_product` IN (2287) AND ag.`is_color_group` = 1
GROUP BY pa.`id_product`, a.`id_attribute`, `group_by`
ORDER BY a.`position` ASC; |
1.197
ms
|
1 |
Yes
|
Yes
|
/classes/Product.php:4524
/src/Adapter/Product/ProductColorsRetriever.php:43 (getAttributesColorList)
/src/Adapter/Presenter/Product/ProductLazyArray.php:528 (getColoredVariants)
/src/Adapter/Presenter/AbstractLazyArray.php:269 (getMainVariants)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:276 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e13543ab4e7_88104059)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/0a/12/f6/0a12f6898800da3c62fd09546f560e1520e267e7_2.file.productlist.tpl.php:39 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135437ca61_98950484)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/ed/4f/4f/ed4f4f89038a00a905571edb55b9e4496246c67a_2.file.products.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135436a901_04420740)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:121 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:239 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:84 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
157 |
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 `ps22_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 2264 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `ps22_cart_product` cp JOIN `ps22_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `ps22_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` = 2264 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
1.196
ms
|
0 |
|
|
/classes/Cart.php:1430
/classes/Product.php:4361 (getProductQuantity)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
513 |
SELECT SQL_NO_CACHE SUM(`quantity`)
FROM `ps22_cart_product`
WHERE `id_cart` = 0 LIMIT 1 |
1.193
ms
|
1 |
|
|
/classes/Cart.php:1303
/src/Adapter/Presenter/Cart/CartLazyArray.php:300 (getNbProducts)
/src/Adapter/Presenter/AbstractLazyArray.php:269 (getProductsCount)
/var/cache/prod/smarty/compile/classic/35/65/5e/35655e6409b6198f29dd6e732ef9598dec599880_2.module.ps_shoppingcartps_shoppingcart.tpl.php:25 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353e60338_22857460)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2296 (fetch)
/modules/ps_shoppingcart/ps_shoppingcart.php:136 (fetch)
/classes/Hook.php:1088 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1019 (coreRenderWidget)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:81 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:31 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
669 |
SELECT SQL_NO_CACHE *
FROM ps22_meta m
LEFT JOIN ps22_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 |
1.192
ms
|
1 |
|
|
/classes/Meta.php:193
/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:1088 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1019 (coreRenderWidget)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/7c/b9/fe/7cb9fe82eae491bdccb39f150924de614ad1fd8a_2.file.footer.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/prod/smarty/compile/classiclayouts_layout_left_column_tpl/7c/b9/fe/7cb9fe82eae491bdccb39f150924de614ad1fd8a_2.file.footer.tpl.php:39 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e13546aa2f4_73458832)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:348 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:117 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
581 |
SELECT SQL_NO_CACHE c.*, cl.name,cl.link_rewrite
FROM ps22_category c
LEFT JOIN ps22_category_lang cl ON c.id_category=cl.id_category AND cl.id_lang=1
WHERE c.id_category IN(171,32,173,255)
ORDER BY cl.name ASC |
1.187
ms
|
4 |
Yes
|
|
/modules/ets_megamenu/ets_megamenu.php:1514
/modules/ets_megamenu/ets_megamenu.php:1204 (getCategoryById)
/modules/ets_megamenu/ets_megamenu.php:1169 (convertBlockProperties)
/classes/Hook.php:1077 (hookDisplayBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classic/f3/d5/9e/f3d59e42c90c7462916be2ef540caa369d2ac214_2.file.menu-html.tpl.php:89 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135404d5d2_33533514)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1634 (display)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
592 |
SELECT SQL_NO_CACHE *
FROM `ps22_category` a
LEFT JOIN `ps22_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 1
LEFT JOIN `ps22_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 215) AND (b.`id_shop` = 1) LIMIT 1 |
1.184
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:164 (__construct)
/classes/Link.php:402 (__construct)
/classes/Link.php:458 (getCategoryObject)
/var/cache/prod/smarty/compile/classic/1c/9a/17/1c9a178d33d1c64d16da67eee7b233868cc8c77c_2.file.categories-tree.tpl.php:33 (getCategoryLink)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1354073306_20529102)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1502 (display)
/modules/ets_megamenu/ets_megamenu.php:1204 (displayCategories)
/modules/ets_megamenu/ets_megamenu.php:1169 (convertBlockProperties)
/classes/Hook.php:1077 (hookDisplayBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classic/f3/d5/9e/f3d59e42c90c7462916be2ef540caa369d2ac214_2.file.menu-html.tpl.php:89 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135404d5d2_33533514)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1634 (display)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
169 |
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 `ps22_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 2263 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `ps22_cart_product` cp JOIN `ps22_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `ps22_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` = 2263 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
1.174
ms
|
0 |
|
|
/classes/Cart.php:1430
/classes/Product.php:4361 (getProductQuantity)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
86 |
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps22_image` i
INNER JOIN ps22_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 2289
AND image_shop.`cover` = 1 LIMIT 1 |
1.171
ms
|
2 |
|
|
/classes/Product.php:3570
/classes/Product.php:5643 (getCover)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
30 |
SELECT SQL_NO_CACHE ctg.`id_group`
FROM ps22_category_group ctg
WHERE ctg.`id_category` = 206 AND ctg.`id_group` = 1 LIMIT 1 |
1.169
ms
|
1 |
|
|
/classes/Category.php:1754
/controllers/front/listing/CategoryController.php:90 (checkAccess)
/tools/profiling/Controller.php:41 (init)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
534 |
SELECT SQL_NO_CACHE b.*,bl.title,bl.title_link,bl.content,bl.image_link
FROM ps22_ets_mm_block b
LEFT JOIN ps22_ets_mm_block_lang bl
ON b.id_block=bl.id_block AND bl.id_lang=1
WHERE 1 AND b.id_column=29
ORDER BY b.sort_order asc,bl.title asc |
1.163
ms
|
900 |
Yes
|
|
/modules/ets_megamenu/ets_megamenu.php:965
/modules/ets_megamenu/ets_megamenu.php:955 (getBlocks)
/modules/ets_megamenu/ets_megamenu.php:940 (getColumns)
/modules/ets_megamenu/ets_megamenu.php:1632 (getMenus)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
292 |
SELECT SQL_NO_CACHE name, value, pf.id_feature, f.position, fvl.id_feature_value
FROM ps22_feature_product pf
LEFT JOIN ps22_feature_lang fl ON (fl.id_feature = pf.id_feature AND fl.id_lang = 1)
LEFT JOIN ps22_feature_value_lang fvl ON (fvl.id_feature_value = pf.id_feature_value AND fvl.id_lang = 1)
LEFT JOIN ps22_feature f ON (f.id_feature = pf.id_feature AND fl.id_lang = 1)
INNER JOIN ps22_feature_shop feature_shop
ON (feature_shop.id_feature = f.id_feature AND feature_shop.id_shop = 1)
WHERE pf.id_product = 2194
ORDER BY f.position ASC |
1.162
ms
|
1 |
Yes
|
|
/classes/Product.php:6021
/classes/Product.php:5824 (getFrontFeaturesStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
391 |
SELECT SQL_NO_CACHE *
FROM `ps22_product` a
LEFT JOIN `ps22_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `ps22_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 2150) AND (b.`id_shop` = 1) LIMIT 1 |
1.156
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:725 (__construct)
/classes/Link.php:113 (__construct)
/classes/Link.php:189 (getProductObject)
/classes/Product.php:5660 (getProductLink)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
245 |
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps22_image` i
INNER JOIN ps22_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 2213
AND image_shop.`cover` = 1 LIMIT 1 |
1.155
ms
|
1 |
|
|
/classes/Product.php:3570
/classes/Product.php:5643 (getCover)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
158 |
SELECT SQL_NO_CACHE name, value, pf.id_feature, f.position, fvl.id_feature_value
FROM ps22_feature_product pf
LEFT JOIN ps22_feature_lang fl ON (fl.id_feature = pf.id_feature AND fl.id_lang = 1)
LEFT JOIN ps22_feature_value_lang fvl ON (fvl.id_feature_value = pf.id_feature_value AND fvl.id_lang = 1)
LEFT JOIN ps22_feature f ON (f.id_feature = pf.id_feature AND fl.id_lang = 1)
INNER JOIN ps22_feature_shop feature_shop
ON (feature_shop.id_feature = f.id_feature AND feature_shop.id_shop = 1)
WHERE pf.id_product = 2264
ORDER BY f.position ASC |
1.154
ms
|
1 |
Yes
|
|
/classes/Product.php:6021
/classes/Product.php:5824 (getFrontFeaturesStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
552 |
SELECT SQL_NO_CACHE c.*, cl.name,cl.link_rewrite
FROM ps22_category c
LEFT JOIN ps22_category_lang cl ON c.id_category=cl.id_category AND cl.id_lang=1
WHERE c.id_category IN(191,60,200)
ORDER BY cl.name ASC |
1.152
ms
|
3 |
Yes
|
|
/modules/ets_megamenu/ets_megamenu.php:1514
/modules/ets_megamenu/ets_megamenu.php:1204 (getCategoryById)
/modules/ets_megamenu/ets_megamenu.php:1169 (convertBlockProperties)
/classes/Hook.php:1077 (hookDisplayBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classic/f3/d5/9e/f3d59e42c90c7462916be2ef540caa369d2ac214_2.file.menu-html.tpl.php:89 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135404d5d2_33533514)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1634 (display)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
316 |
SELECT SQL_NO_CACHE name, value, pf.id_feature, f.position, fvl.id_feature_value
FROM ps22_feature_product pf
LEFT JOIN ps22_feature_lang fl ON (fl.id_feature = pf.id_feature AND fl.id_lang = 1)
LEFT JOIN ps22_feature_value_lang fvl ON (fvl.id_feature_value = pf.id_feature_value AND fvl.id_lang = 1)
LEFT JOIN ps22_feature f ON (f.id_feature = pf.id_feature AND fl.id_lang = 1)
INNER JOIN ps22_feature_shop feature_shop
ON (feature_shop.id_feature = f.id_feature AND feature_shop.id_shop = 1)
WHERE pf.id_product = 2187
ORDER BY f.position ASC |
1.151
ms
|
1 |
Yes
|
|
/classes/Product.php:6021
/classes/Product.php:5824 (getFrontFeaturesStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
609 |
SELECT SQL_NO_CACHE *
FROM `ps22_cms` a
LEFT JOIN `ps22_cms_lang` `b` ON a.`id_cms` = b.`id_cms` AND b.`id_lang` = 1
LEFT JOIN `ps22_cms_shop` `c` ON a.`id_cms` = c.`id_cms` AND c.`id_shop` = 1
WHERE (a.`id_cms` = 43) AND (b.`id_shop` = 1) LIMIT 1 |
1.146
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Link.php:555 (__construct)
/modules/ets_megamenu/ets_megamenu.php:1197 (getCMSLink)
/modules/ets_megamenu/ets_megamenu.php:1169 (convertBlockProperties)
/classes/Hook.php:1077 (hookDisplayBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classic/f3/d5/9e/f3d59e42c90c7462916be2ef540caa369d2ac214_2.file.menu-html.tpl.php:89 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135404d5d2_33533514)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1634 (display)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
98 |
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps22_image` i
INNER JOIN ps22_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 2287
AND image_shop.`cover` = 1 LIMIT 1 |
1.144
ms
|
2 |
|
|
/classes/Product.php:3570
/classes/Product.php:5643 (getCover)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
291 |
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 `ps22_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 2194 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `ps22_cart_product` cp JOIN `ps22_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `ps22_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` = 2194 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
1.143
ms
|
0 |
|
|
/classes/Cart.php:1430
/classes/Product.php:4361 (getProductQuantity)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
519 |
SELECT SQL_NO_CACHE *
FROM ps22_ets_mm_column
WHERE 1 AND id_menu=10
ORDER BY sort_order asc |
1.134
ms
|
27 |
Yes
|
|
/modules/ets_megamenu/ets_megamenu.php:950
/modules/ets_megamenu/ets_megamenu.php:940 (getColumns)
/modules/ets_megamenu/ets_megamenu.php:1632 (getMenus)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
319 |
SELECT SQL_NO_CACHE *
FROM `ps22_product` a
LEFT JOIN `ps22_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `ps22_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 2172) AND (b.`id_shop` = 1) LIMIT 1 |
1.134
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:725 (__construct)
/classes/Link.php:113 (__construct)
/classes/Link.php:189 (getProductObject)
/classes/Product.php:5660 (getProductLink)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
237 |
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 `ps22_product` p
INNER JOIN `ps22_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps22_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` = 2215) |
1.132
ms
|
1 |
|
|
/classes/Product.php:3860
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
610 |
SELECT SQL_NO_CACHE c.*, cl.name,cl.link_rewrite
FROM ps22_category c
LEFT JOIN ps22_category_lang cl ON c.id_category=cl.id_category AND cl.id_lang=1
WHERE c.id_category IN(262)
ORDER BY cl.name ASC |
1.132
ms
|
1 |
Yes
|
|
/modules/ets_megamenu/ets_megamenu.php:1514
/modules/ets_megamenu/ets_megamenu.php:1204 (getCategoryById)
/modules/ets_megamenu/ets_megamenu.php:1169 (convertBlockProperties)
/classes/Hook.php:1077 (hookDisplayBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classic/f3/d5/9e/f3d59e42c90c7462916be2ef540caa369d2ac214_2.file.menu-html.tpl.php:89 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135404d5d2_33533514)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1634 (display)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
498 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps22_image` i
INNER JOIN ps22_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps22_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 2143
ORDER BY `position` |
1.129
ms
|
2 |
Yes
|
|
/classes/Product.php:3545
/src/Adapter/Image/ImageRetriever.php:84 (getImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:57 (__construct)
/classes/controller/ProductListingFrontController.php:119 (present)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
218 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps22_stock_available`
WHERE (id_product = 2218) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
1.128
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:453
/classes/Product.php:4349 (getQuantityAvailableByProduct)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
554 |
SELECT SQL_NO_CACHE *
FROM `ps22_category` a
LEFT JOIN `ps22_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 1
LEFT JOIN `ps22_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 200) AND (b.`id_shop` = 1) LIMIT 1 |
1.126
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:164 (__construct)
/classes/Link.php:402 (__construct)
/classes/Link.php:458 (getCategoryObject)
/var/cache/prod/smarty/compile/classic/1c/9a/17/1c9a178d33d1c64d16da67eee7b233868cc8c77c_2.file.categories-tree.tpl.php:33 (getCategoryLink)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1354073306_20529102)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1502 (display)
/modules/ets_megamenu/ets_megamenu.php:1204 (displayCategories)
/modules/ets_megamenu/ets_megamenu.php:1169 (convertBlockProperties)
/classes/Hook.php:1077 (hookDisplayBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classic/f3/d5/9e/f3d59e42c90c7462916be2ef540caa369d2ac214_2.file.menu-html.tpl.php:89 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135404d5d2_33533514)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1634 (display)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
501 |
SELECT SQL_NO_CACHE `id_module` FROM `ps22_module` WHERE `name` = "ps_contactinfo" LIMIT 1 |
1.125
ms
|
1 |
|
|
/classes/module/Module.php:2659
/classes/module/Module.php:2131 (getModuleIdByName)
/classes/Hook.php:1083 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1019 (coreRenderWidget)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:77 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:31 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
295 |
SELECT SQL_NO_CACHE *
FROM `ps22_product` a
LEFT JOIN `ps22_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `ps22_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 2188) AND (b.`id_shop` = 1) LIMIT 1 |
1.125
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:725 (__construct)
/classes/Link.php:113 (__construct)
/classes/Link.php:189 (getProductObject)
/classes/Product.php:5660 (getProductLink)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
596 |
SELECT SQL_NO_CACHE *
FROM `ps22_category` a
LEFT JOIN `ps22_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 1
LEFT JOIN `ps22_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 254) AND (b.`id_shop` = 1) LIMIT 1 |
1.124
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:164 (__construct)
/classes/Link.php:402 (__construct)
/classes/Link.php:458 (getCategoryObject)
/var/cache/prod/smarty/compile/classic/1c/9a/17/1c9a178d33d1c64d16da67eee7b233868cc8c77c_2.file.categories-tree.tpl.php:33 (getCategoryLink)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1354073306_20529102)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1502 (display)
/modules/ets_megamenu/ets_megamenu.php:1204 (displayCategories)
/modules/ets_megamenu/ets_megamenu.php:1169 (convertBlockProperties)
/classes/Hook.php:1077 (hookDisplayBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classic/f3/d5/9e/f3d59e42c90c7462916be2ef540caa369d2ac214_2.file.menu-html.tpl.php:89 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135404d5d2_33533514)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1634 (display)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
591 |
SELECT SQL_NO_CACHE *
FROM `ps22_category` a
LEFT JOIN `ps22_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 1
LEFT JOIN `ps22_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 216) AND (b.`id_shop` = 1) LIMIT 1 |
1.122
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:164 (__construct)
/classes/Link.php:402 (__construct)
/classes/Link.php:458 (getCategoryObject)
/var/cache/prod/smarty/compile/classic/1c/9a/17/1c9a178d33d1c64d16da67eee7b233868cc8c77c_2.file.categories-tree.tpl.php:33 (getCategoryLink)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1354073306_20529102)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1502 (display)
/modules/ets_megamenu/ets_megamenu.php:1204 (displayCategories)
/modules/ets_megamenu/ets_megamenu.php:1169 (convertBlockProperties)
/classes/Hook.php:1077 (hookDisplayBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classic/f3/d5/9e/f3d59e42c90c7462916be2ef540caa369d2ac214_2.file.menu-html.tpl.php:89 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135404d5d2_33533514)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1634 (display)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
624 |
SELECT SQL_NO_CACHE pa.`id_product`, a.`color`, pac.`id_product_attribute`, 0 qty, a.`id_attribute`, al.`name`, IF(color = "", a.id_attribute, color) group_by
FROM `ps22_product_attribute` pa
INNER JOIN ps22_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
JOIN `ps22_product_attribute_combination` pac ON (pac.`id_product_attribute` = product_attribute_shop.`id_product_attribute`)
JOIN `ps22_attribute` a ON (a.`id_attribute` = pac.`id_attribute`)
JOIN `ps22_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 1)
JOIN `ps22_attribute_group` ag ON (a.id_attribute_group = ag.`id_attribute_group`)
WHERE pa.`id_product` IN (2262) AND ag.`is_color_group` = 1
GROUP BY pa.`id_product`, a.`id_attribute`, `group_by`
ORDER BY a.`position` ASC; |
1.121
ms
|
1 |
Yes
|
Yes
|
/classes/Product.php:4524
/src/Adapter/Product/ProductColorsRetriever.php:43 (getAttributesColorList)
/src/Adapter/Presenter/Product/ProductLazyArray.php:528 (getColoredVariants)
/src/Adapter/Presenter/AbstractLazyArray.php:269 (getMainVariants)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:276 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e13543ab4e7_88104059)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/0a/12/f6/0a12f6898800da3c62fd09546f560e1520e267e7_2.file.productlist.tpl.php:39 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135437ca61_98950484)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/ed/4f/4f/ed4f4f89038a00a905571edb55b9e4496246c67a_2.file.products.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135436a901_04420740)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:121 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:239 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:84 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
585 |
SELECT SQL_NO_CACHE *
FROM `ps22_category` a
LEFT JOIN `ps22_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 1
LEFT JOIN `ps22_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 173) AND (b.`id_shop` = 1) LIMIT 1 |
1.121
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:164 (__construct)
/classes/Link.php:402 (__construct)
/classes/Link.php:458 (getCategoryObject)
/var/cache/prod/smarty/compile/classic/1c/9a/17/1c9a178d33d1c64d16da67eee7b233868cc8c77c_2.file.categories-tree.tpl.php:33 (getCategoryLink)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1354073306_20529102)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1502 (display)
/modules/ets_megamenu/ets_megamenu.php:1204 (displayCategories)
/modules/ets_megamenu/ets_megamenu.php:1169 (convertBlockProperties)
/classes/Hook.php:1077 (hookDisplayBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classic/f3/d5/9e/f3d59e42c90c7462916be2ef540caa369d2ac214_2.file.menu-html.tpl.php:89 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135404d5d2_33533514)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1634 (display)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
563 |
SELECT SQL_NO_CACHE c.*, cl.name,cl.link_rewrite
FROM ps22_category c
LEFT JOIN ps22_category_lang cl ON c.id_category=cl.id_category AND cl.id_lang=1
WHERE c.id_category IN(248,249,250)
ORDER BY cl.name ASC |
1.119
ms
|
3 |
Yes
|
|
/modules/ets_megamenu/ets_megamenu.php:1514
/modules/ets_megamenu/ets_megamenu.php:1204 (getCategoryById)
/modules/ets_megamenu/ets_megamenu.php:1169 (convertBlockProperties)
/classes/Hook.php:1077 (hookDisplayBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classic/f3/d5/9e/f3d59e42c90c7462916be2ef540caa369d2ac214_2.file.menu-html.tpl.php:89 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135404d5d2_33533514)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1634 (display)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
528 |
SELECT SQL_NO_CACHE b.*,bl.title,bl.title_link,bl.content,bl.image_link
FROM ps22_ets_mm_block b
LEFT JOIN ps22_ets_mm_block_lang bl
ON b.id_block=bl.id_block AND bl.id_lang=1
WHERE 1 AND b.id_column=16
ORDER BY b.sort_order asc,bl.title asc |
1.115
ms
|
900 |
Yes
|
|
/modules/ets_megamenu/ets_megamenu.php:965
/modules/ets_megamenu/ets_megamenu.php:955 (getBlocks)
/modules/ets_megamenu/ets_megamenu.php:940 (getColumns)
/modules/ets_megamenu/ets_megamenu.php:1632 (getMenus)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
606 |
SELECT SQL_NO_CACHE c.*, cl.name,cl.link_rewrite
FROM ps22_category c
LEFT JOIN ps22_category_lang cl ON c.id_category=cl.id_category AND cl.id_lang=1
WHERE c.id_category IN(198)
ORDER BY cl.name ASC |
1.112
ms
|
1 |
Yes
|
|
/modules/ets_megamenu/ets_megamenu.php:1514
/modules/ets_megamenu/ets_megamenu.php:1204 (getCategoryById)
/modules/ets_megamenu/ets_megamenu.php:1169 (convertBlockProperties)
/classes/Hook.php:1077 (hookDisplayBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classic/f3/d5/9e/f3d59e42c90c7462916be2ef540caa369d2ac214_2.file.menu-html.tpl.php:89 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135404d5d2_33533514)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1634 (display)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
204 |
SELECT SQL_NO_CACHE COUNT(*) FROM `ps22_pack` WHERE id_product_pack = 2234 LIMIT 1 |
1.109
ms
|
1 |
|
|
/classes/Pack.php:89
/classes/Product.php:4344 (isPack)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
555 |
SELECT SQL_NO_CACHE *
FROM `ps22_category` a
LEFT JOIN `ps22_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 1
LEFT JOIN `ps22_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 60) AND (b.`id_shop` = 1) LIMIT 1 |
1.106
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:164 (__construct)
/classes/Link.php:402 (__construct)
/classes/Link.php:458 (getCategoryObject)
/var/cache/prod/smarty/compile/classic/1c/9a/17/1c9a178d33d1c64d16da67eee7b233868cc8c77c_2.file.categories-tree.tpl.php:33 (getCategoryLink)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1354073306_20529102)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1502 (display)
/modules/ets_megamenu/ets_megamenu.php:1204 (displayCategories)
/modules/ets_megamenu/ets_megamenu.php:1169 (convertBlockProperties)
/classes/Hook.php:1077 (hookDisplayBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classic/f3/d5/9e/f3d59e42c90c7462916be2ef540caa369d2ac214_2.file.menu-html.tpl.php:89 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135404d5d2_33533514)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1634 (display)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
654 |
SELECT SQL_NO_CACHE *
FROM `ps22_link_block_lang`
WHERE `id_link_block` = 1 |
1.104
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:79
/classes/ObjectModel.php:283 (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:1088 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1019 (coreRenderWidget)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/7c/b9/fe/7cb9fe82eae491bdccb39f150924de614ad1fd8a_2.file.footer.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/prod/smarty/compile/classiclayouts_layout_left_column_tpl/7c/b9/fe/7cb9fe82eae491bdccb39f150924de614ad1fd8a_2.file.footer.tpl.php:39 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e13546aa2f4_73458832)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:348 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:117 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
559 |
SELECT SQL_NO_CACHE *
FROM `ps22_category` a
LEFT JOIN `ps22_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 1
LEFT JOIN `ps22_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 197) AND (b.`id_shop` = 1) LIMIT 1 |
1.101
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:164 (__construct)
/classes/Link.php:402 (__construct)
/classes/Link.php:458 (getCategoryObject)
/var/cache/prod/smarty/compile/classic/1c/9a/17/1c9a178d33d1c64d16da67eee7b233868cc8c77c_2.file.categories-tree.tpl.php:33 (getCategoryLink)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1354073306_20529102)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1502 (display)
/modules/ets_megamenu/ets_megamenu.php:1204 (displayCategories)
/modules/ets_megamenu/ets_megamenu.php:1169 (convertBlockProperties)
/classes/Hook.php:1077 (hookDisplayBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classic/f3/d5/9e/f3d59e42c90c7462916be2ef540caa369d2ac214_2.file.menu-html.tpl.php:89 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135404d5d2_33533514)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1634 (display)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
408 |
SELECT SQL_NO_CACHE `reduction`
FROM `ps22_product_group_reduction_cache`
WHERE `id_product` = 2145 AND `id_group` = 1 LIMIT 1 |
1.099
ms
|
0 |
|
|
/classes/GroupReduction.php:156
/classes/Product.php:3990 (getValueForProduct)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
557 |
SELECT SQL_NO_CACHE *
FROM `ps22_category` a
LEFT JOIN `ps22_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 1
LEFT JOIN `ps22_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 259) AND (b.`id_shop` = 1) LIMIT 1 |
1.094
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:164 (__construct)
/classes/Link.php:402 (__construct)
/classes/Link.php:458 (getCategoryObject)
/var/cache/prod/smarty/compile/classic/1c/9a/17/1c9a178d33d1c64d16da67eee7b233868cc8c77c_2.file.categories-tree.tpl.php:33 (getCategoryLink)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1354073306_20529102)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1502 (display)
/modules/ets_megamenu/ets_megamenu.php:1204 (displayCategories)
/modules/ets_megamenu/ets_megamenu.php:1169 (convertBlockProperties)
/classes/Hook.php:1077 (hookDisplayBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classic/f3/d5/9e/f3d59e42c90c7462916be2ef540caa369d2ac214_2.file.menu-html.tpl.php:89 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135404d5d2_33533514)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1634 (display)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
271 |
SELECT SQL_NO_CACHE *
FROM `ps22_product` a
LEFT JOIN `ps22_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `ps22_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 2196) AND (b.`id_shop` = 1) LIMIT 1 |
1.093
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:725 (__construct)
/classes/Link.php:113 (__construct)
/classes/Link.php:189 (getProductObject)
/classes/Product.php:5660 (getProductLink)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
396 |
SELECT SQL_NO_CACHE COUNT(*) FROM `ps22_pack` WHERE id_product_pack = 2150 LIMIT 1 |
1.087
ms
|
1 |
|
|
/classes/Pack.php:89
/classes/Product.php:4344 (isPack)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
49 |
SELECT SQL_NO_CACHE id_manufacturer as value,CONCAT('mm_manufacturer_',id_manufacturer) as id, name as label
FROM ps22_manufacturer
WHERE active=1
ORDER BY name asc |
1.085
ms
|
61 |
Yes
|
|
/modules/ets_megamenu/ets_megamenu.php:986
/modules/ets_megamenu/ets_megamenu.php:363 (getManufacturers)
:undefined (__construct)
/src/Core/Foundation/IoC/Container.php:123 (newInstance)
/src/Core/Foundation/IoC/Container.php:153 (makeInstanceFromClassName)
/src/Core/Foundation/IoC/Container.php:166 (doMake)
/src/Adapter/ServiceLocator.php:70 (make)
/classes/module/Module.php:1258 (get)
/tools/profiling/Module.php:35 (coreLoadModule)
/classes/module/Module.php:1237 (coreLoadModule)
/classes/Hook.php:966 (getInstanceByName)
/classes/controller/FrontController.php:633 (exec)
/controllers/front/listing/CategoryController.php:127 (initContent)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
597 |
SELECT SQL_NO_CACHE *
FROM `ps22_category` a
LEFT JOIN `ps22_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 1
LEFT JOIN `ps22_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 226) AND (b.`id_shop` = 1) LIMIT 1 |
1.077
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:164 (__construct)
/classes/Link.php:402 (__construct)
/classes/Link.php:458 (getCategoryObject)
/var/cache/prod/smarty/compile/classic/1c/9a/17/1c9a178d33d1c64d16da67eee7b233868cc8c77c_2.file.categories-tree.tpl.php:33 (getCategoryLink)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1354073306_20529102)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1502 (display)
/modules/ets_megamenu/ets_megamenu.php:1204 (displayCategories)
/modules/ets_megamenu/ets_megamenu.php:1169 (convertBlockProperties)
/classes/Hook.php:1077 (hookDisplayBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classic/f3/d5/9e/f3d59e42c90c7462916be2ef540caa369d2ac214_2.file.menu-html.tpl.php:89 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135404d5d2_33533514)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1634 (display)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
203 |
SELECT SQL_NO_CACHE `reduction`
FROM `ps22_product_group_reduction_cache`
WHERE `id_product` = 2234 AND `id_group` = 1 LIMIT 1 |
1.074
ms
|
0 |
|
|
/classes/GroupReduction.php:156
/classes/Product.php:3990 (getValueForProduct)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
587 |
SELECT SQL_NO_CACHE *
FROM `ps22_category` a
LEFT JOIN `ps22_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 1
LEFT JOIN `ps22_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 214) AND (b.`id_shop` = 1) LIMIT 1 |
1.074
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:164 (__construct)
/classes/Link.php:402 (__construct)
/classes/Link.php:458 (getCategoryObject)
/var/cache/prod/smarty/compile/classic/1c/9a/17/1c9a178d33d1c64d16da67eee7b233868cc8c77c_2.file.categories-tree.tpl.php:33 (getCategoryLink)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1354073306_20529102)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1502 (display)
/modules/ets_megamenu/ets_megamenu.php:1204 (displayCategories)
/modules/ets_megamenu/ets_megamenu.php:1169 (convertBlockProperties)
/classes/Hook.php:1077 (hookDisplayBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classic/f3/d5/9e/f3d59e42c90c7462916be2ef540caa369d2ac214_2.file.menu-html.tpl.php:89 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135404d5d2_33533514)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1634 (display)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
527 |
SELECT SQL_NO_CACHE b.*,bl.title,bl.title_link,bl.content,bl.image_link
FROM ps22_ets_mm_block b
LEFT JOIN ps22_ets_mm_block_lang bl
ON b.id_block=bl.id_block AND bl.id_lang=1
WHERE 1 AND b.id_column=15
ORDER BY b.sort_order asc,bl.title asc |
1.065
ms
|
900 |
Yes
|
|
/modules/ets_megamenu/ets_megamenu.php:965
/modules/ets_megamenu/ets_megamenu.php:955 (getBlocks)
/modules/ets_megamenu/ets_megamenu.php:940 (getColumns)
/modules/ets_megamenu/ets_megamenu.php:1632 (getMenus)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
619 |
SELECT SQL_NO_CACHE pa.`id_product`, a.`color`, pac.`id_product_attribute`, 0 qty, a.`id_attribute`, al.`name`, IF(color = "", a.id_attribute, color) group_by
FROM `ps22_product_attribute` pa
INNER JOIN ps22_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
JOIN `ps22_product_attribute_combination` pac ON (pac.`id_product_attribute` = product_attribute_shop.`id_product_attribute`)
JOIN `ps22_attribute` a ON (a.`id_attribute` = pac.`id_attribute`)
JOIN `ps22_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 1)
JOIN `ps22_attribute_group` ag ON (a.id_attribute_group = ag.`id_attribute_group`)
WHERE pa.`id_product` IN (2281) AND ag.`is_color_group` = 1
GROUP BY pa.`id_product`, a.`id_attribute`, `group_by`
ORDER BY a.`position` ASC; |
1.063
ms
|
1 |
Yes
|
Yes
|
/classes/Product.php:4524
/src/Adapter/Product/ProductColorsRetriever.php:43 (getAttributesColorList)
/src/Adapter/Presenter/Product/ProductLazyArray.php:528 (getColoredVariants)
/src/Adapter/Presenter/AbstractLazyArray.php:269 (getMainVariants)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:276 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e13543ab4e7_88104059)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/0a/12/f6/0a12f6898800da3c62fd09546f560e1520e267e7_2.file.productlist.tpl.php:39 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135437ca61_98950484)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/ed/4f/4f/ed4f4f89038a00a905571edb55b9e4496246c67a_2.file.products.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135436a901_04420740)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:121 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:239 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:84 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
267 |
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 `ps22_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 2198 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `ps22_cart_product` cp JOIN `ps22_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `ps22_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` = 2198 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
1.063
ms
|
0 |
|
|
/classes/Cart.php:1430
/classes/Product.php:4361 (getProductQuantity)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
61 |
SELECT SQL_NO_CACHE data FROM ps22_layered_filter_block WHERE hash="a35585789e14382777c74d1751fd9695" LIMIT 1 |
1.062
ms
|
1 |
|
|
/modules/ps_facetedsearch/src/Filters/Block.php:186
/modules/ps_facetedsearch/src/Product/SearchProvider.php:210 (getFromCache)
/classes/controller/ProductListingFrontController.php:357 (runQuery)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
565 |
SELECT SQL_NO_CACHE *
FROM `ps22_category` a
LEFT JOIN `ps22_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 1
LEFT JOIN `ps22_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 250) AND (b.`id_shop` = 1) LIMIT 1 |
1.062
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:164 (__construct)
/classes/Link.php:402 (__construct)
/classes/Link.php:458 (getCategoryObject)
/var/cache/prod/smarty/compile/classic/1c/9a/17/1c9a178d33d1c64d16da67eee7b233868cc8c77c_2.file.categories-tree.tpl.php:33 (getCategoryLink)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1354073306_20529102)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1502 (display)
/modules/ets_megamenu/ets_megamenu.php:1204 (displayCategories)
/modules/ets_megamenu/ets_megamenu.php:1169 (convertBlockProperties)
/classes/Hook.php:1077 (hookDisplayBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classic/f3/d5/9e/f3d59e42c90c7462916be2ef540caa369d2ac214_2.file.menu-html.tpl.php:89 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135404d5d2_33533514)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1634 (display)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
393 |
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 `ps22_product` p
INNER JOIN `ps22_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps22_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` = 2150) |
1.055
ms
|
1 |
|
|
/classes/Product.php:3860
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
590 |
SELECT SQL_NO_CACHE *
FROM `ps22_category` a
LEFT JOIN `ps22_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 1
LEFT JOIN `ps22_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 223) AND (b.`id_shop` = 1) LIMIT 1 |
1.054
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:164 (__construct)
/classes/Link.php:402 (__construct)
/classes/Link.php:458 (getCategoryObject)
/var/cache/prod/smarty/compile/classic/1c/9a/17/1c9a178d33d1c64d16da67eee7b233868cc8c77c_2.file.categories-tree.tpl.php:33 (getCategoryLink)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1354073306_20529102)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1502 (display)
/modules/ets_megamenu/ets_megamenu.php:1204 (displayCategories)
/modules/ets_megamenu/ets_megamenu.php:1169 (convertBlockProperties)
/classes/Hook.php:1077 (hookDisplayBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classic/f3/d5/9e/f3d59e42c90c7462916be2ef540caa369d2ac214_2.file.menu-html.tpl.php:89 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135404d5d2_33533514)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1634 (display)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
533 |
SELECT SQL_NO_CACHE b.*,bl.title,bl.title_link,bl.content,bl.image_link
FROM ps22_ets_mm_block b
LEFT JOIN ps22_ets_mm_block_lang bl
ON b.id_block=bl.id_block AND bl.id_lang=1
WHERE 1 AND b.id_column=28
ORDER BY b.sort_order asc,bl.title asc |
1.052
ms
|
900 |
Yes
|
|
/modules/ets_megamenu/ets_megamenu.php:965
/modules/ets_megamenu/ets_megamenu.php:955 (getBlocks)
/modules/ets_megamenu/ets_megamenu.php:940 (getColumns)
/modules/ets_megamenu/ets_megamenu.php:1632 (getMenus)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
646 |
SELECT SQL_NO_CACHE `id_module` FROM `ps22_module` WHERE `name` = "ps_emailsubscription" LIMIT 1 |
1.052
ms
|
1 |
|
|
/classes/module/Module.php:2659
/classes/module/Module.php:2131 (getModuleIdByName)
/classes/Hook.php:1083 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1019 (coreRenderWidget)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/7c/b9/fe/7cb9fe82eae491bdccb39f150924de614ad1fd8a_2.file.footer.tpl.php:75 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/7c/b9/fe/7cb9fe82eae491bdccb39f150924de614ad1fd8a_2.file.footer.tpl.php:30 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e13546aa2f4_73458832)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:348 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:117 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
490 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps22_image` i
INNER JOIN ps22_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps22_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 2152
ORDER BY `position` |
1.051
ms
|
2 |
Yes
|
|
/classes/Product.php:3545
/src/Adapter/Image/ImageRetriever.php:84 (getImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:57 (__construct)
/classes/controller/ProductListingFrontController.php:119 (present)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
328 |
SELECT SQL_NO_CACHE name, value, pf.id_feature, f.position, fvl.id_feature_value
FROM ps22_feature_product pf
LEFT JOIN ps22_feature_lang fl ON (fl.id_feature = pf.id_feature AND fl.id_lang = 1)
LEFT JOIN ps22_feature_value_lang fvl ON (fvl.id_feature_value = pf.id_feature_value AND fvl.id_lang = 1)
LEFT JOIN ps22_feature f ON (f.id_feature = pf.id_feature AND fl.id_lang = 1)
INNER JOIN ps22_feature_shop feature_shop
ON (feature_shop.id_feature = f.id_feature AND feature_shop.id_shop = 1)
WHERE pf.id_product = 2172
ORDER BY f.position ASC |
1.050
ms
|
1 |
Yes
|
|
/classes/Product.php:6021
/classes/Product.php:5824 (getFrontFeaturesStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
580 |
SELECT SQL_NO_CACHE *
FROM `ps22_category` a
LEFT JOIN `ps22_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 1
LEFT JOIN `ps22_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 127) AND (b.`id_shop` = 1) LIMIT 1 |
1.050
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:164 (__construct)
/classes/Link.php:402 (__construct)
/classes/Link.php:458 (getCategoryObject)
/var/cache/prod/smarty/compile/classic/1c/9a/17/1c9a178d33d1c64d16da67eee7b233868cc8c77c_2.file.categories-tree.tpl.php:33 (getCategoryLink)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1354073306_20529102)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1502 (display)
/modules/ets_megamenu/ets_megamenu.php:1204 (displayCategories)
/modules/ets_megamenu/ets_megamenu.php:1169 (convertBlockProperties)
/classes/Hook.php:1077 (hookDisplayBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classic/f3/d5/9e/f3d59e42c90c7462916be2ef540caa369d2ac214_2.file.menu-html.tpl.php:89 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135404d5d2_33533514)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1634 (display)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
215 |
SELECT SQL_NO_CACHE `reduction`
FROM `ps22_product_group_reduction_cache`
WHERE `id_product` = 2218 AND `id_group` = 1 LIMIT 1 |
1.048
ms
|
0 |
|
|
/classes/GroupReduction.php:156
/classes/Product.php:3990 (getValueForProduct)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
529 |
SELECT SQL_NO_CACHE b.*,bl.title,bl.title_link,bl.content,bl.image_link
FROM ps22_ets_mm_block b
LEFT JOIN ps22_ets_mm_block_lang bl
ON b.id_block=bl.id_block AND bl.id_lang=1
WHERE 1 AND b.id_column=17
ORDER BY b.sort_order asc,bl.title asc |
1.046
ms
|
900 |
Yes
|
|
/modules/ets_megamenu/ets_megamenu.php:965
/modules/ets_megamenu/ets_megamenu.php:955 (getBlocks)
/modules/ets_megamenu/ets_megamenu.php:940 (getColumns)
/modules/ets_megamenu/ets_megamenu.php:1632 (getMenus)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
659 |
SELECT SQL_NO_CACHE *
FROM ps22_meta m
LEFT JOIN ps22_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 |
1.043
ms
|
2 |
|
|
/classes/Meta.php:193
/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:1088 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1019 (coreRenderWidget)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/7c/b9/fe/7cb9fe82eae491bdccb39f150924de614ad1fd8a_2.file.footer.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/prod/smarty/compile/classiclayouts_layout_left_column_tpl/7c/b9/fe/7cb9fe82eae491bdccb39f150924de614ad1fd8a_2.file.footer.tpl.php:39 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e13546aa2f4_73458832)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:348 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:117 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
569 |
SELECT SQL_NO_CACHE c.*, cl.name,cl.link_rewrite
FROM ps22_category c
LEFT JOIN ps22_category_lang cl ON c.id_category=cl.id_category AND cl.id_lang=1
WHERE c.id_category IN(247)
ORDER BY cl.name ASC |
1.042
ms
|
1 |
Yes
|
|
/modules/ets_megamenu/ets_megamenu.php:1514
/modules/ets_megamenu/ets_megamenu.php:1204 (getCategoryById)
/modules/ets_megamenu/ets_megamenu.php:1169 (convertBlockProperties)
/classes/Hook.php:1077 (hookDisplayBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classic/f3/d5/9e/f3d59e42c90c7462916be2ef540caa369d2ac214_2.file.menu-html.tpl.php:89 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135404d5d2_33533514)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1634 (display)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
257 |
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps22_image` i
INNER JOIN ps22_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 2198
AND image_shop.`cover` = 1 LIMIT 1 |
1.037
ms
|
2 |
|
|
/classes/Product.php:3570
/classes/Product.php:5643 (getCover)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
411 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps22_stock_available`
WHERE (id_product = 2145) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
1.030
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:453
/classes/Product.php:4349 (getQuantityAvailableByProduct)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
181 |
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 `ps22_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 2262 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `ps22_cart_product` cp JOIN `ps22_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `ps22_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` = 2262 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
1.021
ms
|
0 |
|
|
/classes/Cart.php:1430
/classes/Product.php:4361 (getProductQuantity)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
339 |
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 `ps22_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 2170 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `ps22_cart_product` cp JOIN `ps22_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `ps22_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` = 2170 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
1.020
ms
|
0 |
|
|
/classes/Cart.php:1430
/classes/Product.php:4361 (getProductQuantity)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
572 |
SELECT SQL_NO_CACHE *
FROM `ps22_category` a
LEFT JOIN `ps22_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 1
LEFT JOIN `ps22_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 130) AND (b.`id_shop` = 1) LIMIT 1 |
1.016
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:164 (__construct)
/classes/Link.php:402 (__construct)
/classes/Link.php:458 (getCategoryObject)
/var/cache/prod/smarty/compile/classic/1c/9a/17/1c9a178d33d1c64d16da67eee7b233868cc8c77c_2.file.categories-tree.tpl.php:33 (getCategoryLink)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1354073306_20529102)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1502 (display)
/modules/ets_megamenu/ets_megamenu.php:1204 (displayCategories)
/modules/ets_megamenu/ets_megamenu.php:1169 (convertBlockProperties)
/classes/Hook.php:1077 (hookDisplayBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classic/f3/d5/9e/f3d59e42c90c7462916be2ef540caa369d2ac214_2.file.menu-html.tpl.php:89 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135404d5d2_33533514)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1634 (display)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
22 |
SELECT SQL_NO_CACHE `id_lang` FROM `ps22_lang`
WHERE `locale` = 'fr-fr'
OR `language_code` = 'fr-fr' LIMIT 1 |
1.015
ms
|
1 |
|
|
/classes/Language.php:883
/src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:115 (getIdByLocale)
/src/Core/Data/Layer/AbstractDataLayer.php:91 (doRead)
/src/Core/Data/Layer/AbstractDataLayer.php:150 (read)
/src/Core/Data/Layer/AbstractDataLayer.php:95 (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:207 (getAllInstalledCurrencies)
/src/Core/Localization/Locale/Repository.php:150 (getPriceSpecifications)
/classes/controller/Controller.php:209 (getLocale)
/classes/controller/FrontController.php:284 (init)
/controllers/front/listing/CategoryController.php:81 (init)
/tools/profiling/Controller.php:41 (init)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
657 |
SELECT SQL_NO_CACHE *
FROM `ps22_hook` a
WHERE (a.`id_hook` = 41) LIMIT 1 |
1.013
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (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:1088 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1019 (coreRenderWidget)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/7c/b9/fe/7cb9fe82eae491bdccb39f150924de614ad1fd8a_2.file.footer.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/prod/smarty/compile/classiclayouts_layout_left_column_tpl/7c/b9/fe/7cb9fe82eae491bdccb39f150924de614ad1fd8a_2.file.footer.tpl.php:39 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e13546aa2f4_73458832)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:348 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:117 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
442 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps22_image` i
INNER JOIN ps22_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps22_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 2289
ORDER BY `position` |
1.010
ms
|
2 |
Yes
|
|
/classes/Product.php:3545
/src/Adapter/Image/ImageRetriever.php:84 (getImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:57 (__construct)
/classes/controller/ProductListingFrontController.php:119 (present)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
617 |
SELECT SQL_NO_CACHE pa.`id_product`, a.`color`, pac.`id_product_attribute`, 0 qty, a.`id_attribute`, al.`name`, IF(color = "", a.id_attribute, color) group_by
FROM `ps22_product_attribute` pa
INNER JOIN ps22_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
JOIN `ps22_product_attribute_combination` pac ON (pac.`id_product_attribute` = product_attribute_shop.`id_product_attribute`)
JOIN `ps22_attribute` a ON (a.`id_attribute` = pac.`id_attribute`)
JOIN `ps22_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 1)
JOIN `ps22_attribute_group` ag ON (a.id_attribute_group = ag.`id_attribute_group`)
WHERE pa.`id_product` IN (2289) AND ag.`is_color_group` = 1
GROUP BY pa.`id_product`, a.`id_attribute`, `group_by`
ORDER BY a.`position` ASC; |
1.009
ms
|
1 |
Yes
|
Yes
|
/classes/Product.php:4524
/src/Adapter/Product/ProductColorsRetriever.php:43 (getAttributesColorList)
/src/Adapter/Presenter/Product/ProductLazyArray.php:528 (getColoredVariants)
/src/Adapter/Presenter/AbstractLazyArray.php:269 (getMainVariants)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:276 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e13543ab4e7_88104059)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/0a/12/f6/0a12f6898800da3c62fd09546f560e1520e267e7_2.file.productlist.tpl.php:39 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135437ca61_98950484)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/ed/4f/4f/ed4f4f89038a00a905571edb55b9e4496246c67a_2.file.products.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135436a901_04420740)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:121 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:239 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:84 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
82 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps22_stock_available`
WHERE (id_product = 2292) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
1.008
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:453
/classes/Product.php:4349 (getQuantityAvailableByProduct)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
63 |
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps22_image` i
INNER JOIN ps22_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 2292
AND image_shop.`cover` = 1 LIMIT 1 |
1.007
ms
|
2 |
|
|
/classes/Product.php:3570
/classes/Product.php:5643 (getCover)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
127 |
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 `ps22_product` p
INNER JOIN `ps22_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps22_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` = 2267) |
1.007
ms
|
1 |
|
|
/classes/Product.php:3860
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
595 |
SELECT SQL_NO_CACHE *
FROM `ps22_category` a
LEFT JOIN `ps22_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 1
LEFT JOIN `ps22_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 217) AND (b.`id_shop` = 1) LIMIT 1 |
1.003
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:164 (__construct)
/classes/Link.php:402 (__construct)
/classes/Link.php:458 (getCategoryObject)
/var/cache/prod/smarty/compile/classic/1c/9a/17/1c9a178d33d1c64d16da67eee7b233868cc8c77c_2.file.categories-tree.tpl.php:33 (getCategoryLink)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1354073306_20529102)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1502 (display)
/modules/ets_megamenu/ets_megamenu.php:1204 (displayCategories)
/modules/ets_megamenu/ets_megamenu.php:1169 (convertBlockProperties)
/classes/Hook.php:1077 (hookDisplayBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classic/f3/d5/9e/f3d59e42c90c7462916be2ef540caa369d2ac214_2.file.menu-html.tpl.php:89 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135404d5d2_33533514)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1634 (display)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
674 |
SELECT SQL_NO_CACHE `need_identification_number`
FROM `ps22_country`
WHERE `id_country` = 8 LIMIT 1 |
0.996
ms
|
1 |
|
|
/classes/Country.php:405
/classes/AddressFormat.php:634 (isNeedDniByCountryId)
/classes/AddressFormat.php:615 (getFormat)
/classes/AddressFormat.php:562 (getAddressCountryFormat)
/classes/AddressFormat.php:438 (getOrderedAddressFields)
/modules/ps_contactinfo/ps_contactinfo.php:98 (generateAddress)
/modules/ps_contactinfo/ps_contactinfo.php:83 (getWidgetVariables)
/classes/Hook.php:1088 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1019 (coreRenderWidget)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/7c/b9/fe/7cb9fe82eae491bdccb39f150924de614ad1fd8a_2.file.footer.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/prod/smarty/compile/classiclayouts_layout_left_column_tpl/7c/b9/fe/7cb9fe82eae491bdccb39f150924de614ad1fd8a_2.file.footer.tpl.php:39 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e13546aa2f4_73458832)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:348 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:117 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
441 |
SELECT SQL_NO_CACHE * FROM `ps22_image_type` |
0.992
ms
|
7 |
|
|
/classes/ImageType.php:161
/classes/ImageType.php:202 (getByNameNType)
/src/Adapter/Image/ImageRetriever.php:224 (getFormattedName)
/src/Adapter/Image/ImageRetriever.php:111 (getImage)
:undefined (PrestaShop\PrestaShop\Adapter\Image\{closure})
/src/Adapter/Image/ImageRetriever.php:104 (array_map)
/src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:57 (__construct)
/classes/controller/ProductListingFrontController.php:119 (present)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
588 |
SELECT SQL_NO_CACHE *
FROM `ps22_category` a
LEFT JOIN `ps22_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 1
LEFT JOIN `ps22_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 213) AND (b.`id_shop` = 1) LIMIT 1 |
0.991
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:164 (__construct)
/classes/Link.php:402 (__construct)
/classes/Link.php:458 (getCategoryObject)
/var/cache/prod/smarty/compile/classic/1c/9a/17/1c9a178d33d1c64d16da67eee7b233868cc8c77c_2.file.categories-tree.tpl.php:33 (getCategoryLink)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1354073306_20529102)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1502 (display)
/modules/ets_megamenu/ets_megamenu.php:1204 (displayCategories)
/modules/ets_megamenu/ets_megamenu.php:1169 (convertBlockProperties)
/classes/Hook.php:1077 (hookDisplayBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classic/f3/d5/9e/f3d59e42c90c7462916be2ef540caa369d2ac214_2.file.menu-html.tpl.php:89 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135404d5d2_33533514)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1634 (display)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
600 |
SELECT SQL_NO_CACHE *
FROM `ps22_category` a
LEFT JOIN `ps22_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 1
LEFT JOIN `ps22_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 222) AND (b.`id_shop` = 1) LIMIT 1 |
0.984
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:164 (__construct)
/classes/Link.php:402 (__construct)
/classes/Link.php:458 (getCategoryObject)
/var/cache/prod/smarty/compile/classic/1c/9a/17/1c9a178d33d1c64d16da67eee7b233868cc8c77c_2.file.categories-tree.tpl.php:33 (getCategoryLink)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1354073306_20529102)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1502 (display)
/modules/ets_megamenu/ets_megamenu.php:1204 (displayCategories)
/modules/ets_megamenu/ets_megamenu.php:1169 (convertBlockProperties)
/classes/Hook.php:1077 (hookDisplayBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classic/f3/d5/9e/f3d59e42c90c7462916be2ef540caa369d2ac214_2.file.menu-html.tpl.php:89 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135404d5d2_33533514)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1634 (display)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
28 |
SELECT SQL_NO_CACHE id_shop
FROM `ps22_group_shop`
WHERE `id_group` = 1
AND id_shop = 1 LIMIT 1 |
0.981
ms
|
1 |
|
|
/classes/ObjectModel.php:1729
/classes/Group.php:400 (isAssociatedToShop)
/classes/Cart.php:249 (getCurrent)
/classes/Cart.php:222 (setTaxCalculationMethod)
/classes/controller/FrontController.php:467 (__construct)
/controllers/front/listing/CategoryController.php:81 (init)
/tools/profiling/Controller.php:41 (init)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
492 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps22_image` i
INNER JOIN ps22_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps22_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 2150
ORDER BY `position` |
0.979
ms
|
2 |
Yes
|
|
/classes/Product.php:3545
/src/Adapter/Image/ImageRetriever.php:84 (getImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:57 (__construct)
/classes/controller/ProductListingFrontController.php:119 (present)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
110 |
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps22_image` i
INNER JOIN ps22_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 2281
AND image_shop.`cover` = 1 LIMIT 1 |
0.978
ms
|
2 |
|
|
/classes/Product.php:3570
/classes/Product.php:5643 (getCover)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
566 |
SELECT SQL_NO_CACHE *
FROM `ps22_category` a
LEFT JOIN `ps22_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 1
LEFT JOIN `ps22_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 249) AND (b.`id_shop` = 1) LIMIT 1 |
0.975
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:164 (__construct)
/classes/Link.php:402 (__construct)
/classes/Link.php:458 (getCategoryObject)
/var/cache/prod/smarty/compile/classic/1c/9a/17/1c9a178d33d1c64d16da67eee7b233868cc8c77c_2.file.categories-tree.tpl.php:33 (getCategoryLink)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1354073306_20529102)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1502 (display)
/modules/ets_megamenu/ets_megamenu.php:1204 (displayCategories)
/modules/ets_megamenu/ets_megamenu.php:1169 (convertBlockProperties)
/classes/Hook.php:1077 (hookDisplayBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classic/f3/d5/9e/f3d59e42c90c7462916be2ef540caa369d2ac214_2.file.menu-html.tpl.php:89 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135404d5d2_33533514)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1634 (display)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
539 |
SELECT SQL_NO_CACHE *
FROM `ps22_category` a
LEFT JOIN `ps22_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 1
LEFT JOIN `ps22_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 194) AND (b.`id_shop` = 1) LIMIT 1 |
0.969
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:164 (__construct)
/classes/Link.php:402 (__construct)
/classes/Link.php:458 (getCategoryObject)
/modules/ets_megamenu/ets_megamenu.php:1229 (getCategoryLink)
/modules/ets_megamenu/ets_megamenu.php:941 (getMenuLink)
/modules/ets_megamenu/ets_megamenu.php:1632 (getMenus)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
494 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps22_image` i
INNER JOIN ps22_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps22_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 2145
ORDER BY `position` |
0.968
ms
|
2 |
Yes
|
|
/classes/Product.php:3545
/src/Adapter/Image/ImageRetriever.php:84 (getImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:57 (__construct)
/classes/controller/ProductListingFrontController.php:119 (present)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
564 |
SELECT SQL_NO_CACHE *
FROM `ps22_category` a
LEFT JOIN `ps22_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 1
LEFT JOIN `ps22_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 248) AND (b.`id_shop` = 1) LIMIT 1 |
0.965
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:164 (__construct)
/classes/Link.php:402 (__construct)
/classes/Link.php:458 (getCategoryObject)
/var/cache/prod/smarty/compile/classic/1c/9a/17/1c9a178d33d1c64d16da67eee7b233868cc8c77c_2.file.categories-tree.tpl.php:33 (getCategoryLink)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1354073306_20529102)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1502 (display)
/modules/ets_megamenu/ets_megamenu.php:1204 (displayCategories)
/modules/ets_megamenu/ets_megamenu.php:1169 (convertBlockProperties)
/classes/Hook.php:1077 (hookDisplayBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classic/f3/d5/9e/f3d59e42c90c7462916be2ef540caa369d2ac214_2.file.menu-html.tpl.php:89 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135404d5d2_33533514)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1634 (display)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
535 |
SELECT SQL_NO_CACHE b.*,bl.title,bl.title_link,bl.content,bl.image_link
FROM ps22_ets_mm_block b
LEFT JOIN ps22_ets_mm_block_lang bl
ON b.id_block=bl.id_block AND bl.id_lang=1
WHERE 1 AND b.id_column=30
ORDER BY b.sort_order asc,bl.title asc |
0.963
ms
|
900 |
Yes
|
|
/modules/ets_megamenu/ets_megamenu.php:965
/modules/ets_megamenu/ets_megamenu.php:955 (getBlocks)
/modules/ets_megamenu/ets_megamenu.php:940 (getColumns)
/modules/ets_megamenu/ets_megamenu.php:1632 (getMenus)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
249 |
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 `ps22_product` p
INNER JOIN `ps22_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps22_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` = 2213) |
0.961
ms
|
1 |
|
|
/classes/Product.php:3860
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
421 |
SELECT SQL_NO_CACHE COUNT(*) FROM `ps22_pack` WHERE id_product_pack = 2144 LIMIT 1 |
0.961
ms
|
1 |
|
|
/classes/Pack.php:89
/classes/Product.php:4344 (isPack)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
23 |
SELECT SQL_NO_CACHE *
FROM `ps22_currency` a
LEFT JOIN `ps22_currency_shop` `c` ON a.`id_currency` = c.`id_currency` AND c.`id_shop` = 1
WHERE (a.`id_currency` = 1) LIMIT 1 |
0.961
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Currency.php:246 (__construct)
/classes/Currency.php:1089 (__construct)
/classes/Tools.php:695 (getCurrencyInstance)
/classes/controller/FrontController.php:368 (setCurrency)
/controllers/front/listing/CategoryController.php:81 (init)
/tools/profiling/Controller.php:41 (init)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
327 |
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 `ps22_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 2172 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `ps22_cart_product` cp JOIN `ps22_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `ps22_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` = 2172 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.956
ms
|
0 |
|
|
/classes/Cart.php:1430
/classes/Product.php:4361 (getProductQuantity)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
212 |
SELECT SQL_NO_CACHE 1 FROM `ps22_specific_price` WHERE id_product = 2218 LIMIT 1 |
0.953
ms
|
1 |
|
|
/classes/SpecificPrice.php:435
/classes/SpecificPrice.php:523 (couldHaveSpecificPrice)
/classes/Product.php:3827 (getSpecificPrice)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
536 |
SELECT SQL_NO_CACHE *
FROM `ps22_category` a
LEFT JOIN `ps22_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 1
LEFT JOIN `ps22_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 193) AND (b.`id_shop` = 1) LIMIT 1 |
0.953
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:164 (__construct)
/classes/Link.php:402 (__construct)
/classes/Link.php:458 (getCategoryObject)
/modules/ets_megamenu/ets_megamenu.php:1229 (getCategoryLink)
/modules/ets_megamenu/ets_megamenu.php:941 (getMenuLink)
/modules/ets_megamenu/ets_megamenu.php:1632 (getMenus)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
593 |
SELECT SQL_NO_CACHE *
FROM `ps22_category` a
LEFT JOIN `ps22_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 1
LEFT JOIN `ps22_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 218) AND (b.`id_shop` = 1) LIMIT 1 |
0.952
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:164 (__construct)
/classes/Link.php:402 (__construct)
/classes/Link.php:458 (getCategoryObject)
/var/cache/prod/smarty/compile/classic/1c/9a/17/1c9a178d33d1c64d16da67eee7b233868cc8c77c_2.file.categories-tree.tpl.php:33 (getCategoryLink)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1354073306_20529102)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1502 (display)
/modules/ets_megamenu/ets_megamenu.php:1204 (displayCategories)
/modules/ets_megamenu/ets_megamenu.php:1169 (convertBlockProperties)
/classes/Hook.php:1077 (hookDisplayBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classic/f3/d5/9e/f3d59e42c90c7462916be2ef540caa369d2ac214_2.file.menu-html.tpl.php:89 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135404d5d2_33533514)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1634 (display)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
599 |
SELECT SQL_NO_CACHE *
FROM `ps22_category` a
LEFT JOIN `ps22_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 1
LEFT JOIN `ps22_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 211) AND (b.`id_shop` = 1) LIMIT 1 |
0.949
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:164 (__construct)
/classes/Link.php:402 (__construct)
/classes/Link.php:458 (getCategoryObject)
/var/cache/prod/smarty/compile/classic/1c/9a/17/1c9a178d33d1c64d16da67eee7b233868cc8c77c_2.file.categories-tree.tpl.php:33 (getCategoryLink)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1354073306_20529102)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1502 (display)
/modules/ets_megamenu/ets_megamenu.php:1204 (displayCategories)
/modules/ets_megamenu/ets_megamenu.php:1169 (convertBlockProperties)
/classes/Hook.php:1077 (hookDisplayBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classic/f3/d5/9e/f3d59e42c90c7462916be2ef540caa369d2ac214_2.file.menu-html.tpl.php:89 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135404d5d2_33533514)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1634 (display)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
182 |
SELECT SQL_NO_CACHE name, value, pf.id_feature, f.position, fvl.id_feature_value
FROM ps22_feature_product pf
LEFT JOIN ps22_feature_lang fl ON (fl.id_feature = pf.id_feature AND fl.id_lang = 1)
LEFT JOIN ps22_feature_value_lang fvl ON (fvl.id_feature_value = pf.id_feature_value AND fvl.id_lang = 1)
LEFT JOIN ps22_feature f ON (f.id_feature = pf.id_feature AND fl.id_lang = 1)
INNER JOIN ps22_feature_shop feature_shop
ON (feature_shop.id_feature = f.id_feature AND feature_shop.id_shop = 1)
WHERE pf.id_product = 2262
ORDER BY f.position ASC |
0.948
ms
|
1 |
Yes
|
|
/classes/Product.php:6021
/classes/Product.php:5824 (getFrontFeaturesStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
185 |
SELECT SQL_NO_CACHE *
FROM `ps22_product` a
LEFT JOIN `ps22_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `ps22_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 2239) AND (b.`id_shop` = 1) LIMIT 1 |
0.943
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:725 (__construct)
/classes/Link.php:113 (__construct)
/classes/Link.php:189 (getProductObject)
/classes/Product.php:5660 (getProductLink)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
398 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps22_stock_available`
WHERE (id_product = 2150) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.942
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:453
/classes/Product.php:4349 (getQuantityAvailableByProduct)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
443 |
SELECT SQL_NO_CACHE `id_product_attribute`
FROM `ps22_product_attribute`
WHERE `id_product` = 2289 |
0.941
ms
|
1 |
|
|
/classes/Product.php:2902
/src/Adapter/Image/ImageRetriever.php:90 (getCombinationImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:57 (__construct)
/classes/controller/ProductListingFrontController.php:119 (present)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
117 |
SELECT SQL_NO_CACHE COUNT(*) FROM `ps22_pack` WHERE id_product_pack = 2281 LIMIT 1 |
0.940
ms
|
1 |
|
|
/classes/Pack.php:89
/classes/Product.php:4344 (isPack)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
496 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps22_image` i
INNER JOIN ps22_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps22_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 2144
ORDER BY `position` |
0.939
ms
|
2 |
Yes
|
|
/classes/Product.php:3545
/src/Adapter/Image/ImageRetriever.php:84 (getImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:57 (__construct)
/classes/controller/ProductListingFrontController.php:119 (present)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
570 |
SELECT SQL_NO_CACHE *
FROM `ps22_category` a
LEFT JOIN `ps22_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 1
LEFT JOIN `ps22_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 247) AND (b.`id_shop` = 1) LIMIT 1 |
0.934
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:164 (__construct)
/classes/Link.php:402 (__construct)
/classes/Link.php:458 (getCategoryObject)
/var/cache/prod/smarty/compile/classic/1c/9a/17/1c9a178d33d1c64d16da67eee7b233868cc8c77c_2.file.categories-tree.tpl.php:33 (getCategoryLink)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1354073306_20529102)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1502 (display)
/modules/ets_megamenu/ets_megamenu.php:1204 (displayCategories)
/modules/ets_megamenu/ets_megamenu.php:1169 (convertBlockProperties)
/classes/Hook.php:1077 (hookDisplayBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classic/f3/d5/9e/f3d59e42c90c7462916be2ef540caa369d2ac214_2.file.menu-html.tpl.php:89 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135404d5d2_33533514)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1634 (display)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
11 |
SELECT SQL_NO_CACHE COUNT(DISTINCT l.id_lang) FROM `ps22_lang` l
JOIN ps22_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.929
ms
|
1 |
|
|
/classes/Language.php:1216
/classes/Language.php:1513 (countActiveLanguages)
/classes/Dispatcher.php:531 (isMultiLanguageActivated)
/classes/Dispatcher.php:232 (setRequestUri)
/classes/Dispatcher.php:201 (__construct)
/index.php:28 (getInstance)
|
19 |
SELECT SQL_NO_CACHE value FROM `ps22_configuration` WHERE `name` = "PS_MULTISHOP_FEATURE_ACTIVE" LIMIT 1 |
0.924
ms
|
1 |
|
|
/classes/shop/Shop.php:1183
/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:102 (getCurrencyByIsoCodeAndLocale)
/src/Core/Data/Layer/AbstractDataLayer.php:91 (doRead)
/src/Core/Data/Layer/AbstractDataLayer.php:150 (read)
/src/Core/Data/Layer/AbstractDataLayer.php:95 (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:207 (getAllInstalledCurrencies)
/src/Core/Localization/Locale/Repository.php:150 (getPriceSpecifications)
/classes/controller/Controller.php:209 (getLocale)
/classes/controller/FrontController.php:284 (init)
/controllers/front/listing/CategoryController.php:81 (init)
/tools/profiling/Controller.php:41 (init)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
57 |
SELECT SQL_NO_CACHE v.*, vl.*, IF(lifvlv.`url_name` IS NULL OR lifvlv.`url_name` = "", NULL, lifvlv.`url_name`) AS url_name, IF(lifvlv.`meta_title` IS NULL OR lifvlv.`meta_title` = "", NULL, lifvlv.`meta_title`) AS meta_title FROM `ps22_feature_value` v LEFT JOIN `ps22_feature_value_lang` vl ON (v.`id_feature_value` = vl.`id_feature_value` AND vl.`id_lang` = 1) LEFT JOIN `ps22_layered_indexable_feature_value_lang_value` lifvlv ON (v.`id_feature_value` = lifvlv.`id_feature_value` AND lifvlv.`id_lang` = 1) WHERE v.`id_feature` = 12 ORDER BY vl.`value` ASC |
0.922
ms
|
11 |
Yes
|
|
/modules/ps_facetedsearch/src/Filters/DataAccessor.php:204
/modules/ps_facetedsearch/src/Filters/Converter.php:402 (getFeatureValues)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:163 (createFacetedSearchFiltersFromQuery)
/classes/controller/ProductListingFrontController.php:357 (runQuery)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
574 |
SELECT SQL_NO_CACHE *
FROM `ps22_category` a
LEFT JOIN `ps22_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 1
LEFT JOIN `ps22_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 235) AND (b.`id_shop` = 1) LIMIT 1 |
0.920
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:164 (__construct)
/classes/Link.php:402 (__construct)
/classes/Link.php:458 (getCategoryObject)
/var/cache/prod/smarty/compile/classic/1c/9a/17/1c9a178d33d1c64d16da67eee7b233868cc8c77c_2.file.categories-tree.tpl.php:33 (getCategoryLink)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1354073306_20529102)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1502 (display)
/modules/ets_megamenu/ets_megamenu.php:1204 (displayCategories)
/modules/ets_megamenu/ets_megamenu.php:1169 (convertBlockProperties)
/classes/Hook.php:1077 (hookDisplayBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classic/f3/d5/9e/f3d59e42c90c7462916be2ef540caa369d2ac214_2.file.menu-html.tpl.php:89 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135404d5d2_33533514)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1634 (display)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
446 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps22_image` i
INNER JOIN ps22_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps22_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 2281
ORDER BY `position` |
0.919
ms
|
2 |
Yes
|
|
/classes/Product.php:3545
/src/Adapter/Image/ImageRetriever.php:84 (getImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:57 (__construct)
/classes/controller/ProductListingFrontController.php:119 (present)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
74 |
SELECT SQL_NO_CACHE tr.*
FROM `ps22_tax_rule` tr
JOIN `ps22_tax_rules_group` trg ON (tr.`id_tax_rules_group` = trg.`id_tax_rules_group`)
WHERE trg.`active` = 1
AND tr.`id_country` = 8
AND tr.`id_tax_rules_group` = 1
AND tr.`id_state` IN (0, 0)
AND ('75005' BETWEEN tr.`zipcode_from` AND tr.`zipcode_to`
OR (tr.`zipcode_to` = 0 AND tr.`zipcode_from` IN(0, '75005')))
ORDER BY tr.`zipcode_from` DESC, tr.`zipcode_to` DESC, tr.`id_state` DESC, tr.`id_country` DESC |
0.917
ms
|
1 |
Yes
|
|
/classes/tax/TaxRulesTaxManager.php:109
/classes/Product.php:3926 (getTaxCalculator)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
315 |
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 `ps22_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 2187 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `ps22_cart_product` cp JOIN `ps22_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `ps22_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` = 2187 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.917
ms
|
0 |
|
|
/classes/Cart.php:1430
/classes/Product.php:4361 (getProductQuantity)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
660 |
SELECT SQL_NO_CACHE *
FROM ps22_meta m
LEFT JOIN ps22_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.917
ms
|
2 |
|
|
/classes/Meta.php:193
/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:1088 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1019 (coreRenderWidget)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/7c/b9/fe/7cb9fe82eae491bdccb39f150924de614ad1fd8a_2.file.footer.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/prod/smarty/compile/classiclayouts_layout_left_column_tpl/7c/b9/fe/7cb9fe82eae491bdccb39f150924de614ad1fd8a_2.file.footer.tpl.php:39 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e13546aa2f4_73458832)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:348 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:117 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
582 |
SELECT SQL_NO_CACHE *
FROM `ps22_category` a
LEFT JOIN `ps22_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 1
LEFT JOIN `ps22_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 255) AND (b.`id_shop` = 1) LIMIT 1 |
0.917
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:164 (__construct)
/classes/Link.php:402 (__construct)
/classes/Link.php:458 (getCategoryObject)
/var/cache/prod/smarty/compile/classic/1c/9a/17/1c9a178d33d1c64d16da67eee7b233868cc8c77c_2.file.categories-tree.tpl.php:33 (getCategoryLink)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1354073306_20529102)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1502 (display)
/modules/ets_megamenu/ets_megamenu.php:1204 (displayCategories)
/modules/ets_megamenu/ets_megamenu.php:1169 (convertBlockProperties)
/classes/Hook.php:1077 (hookDisplayBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classic/f3/d5/9e/f3d59e42c90c7462916be2ef540caa369d2ac214_2.file.menu-html.tpl.php:89 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135404d5d2_33533514)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1634 (display)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
90 |
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 `ps22_product` p
INNER JOIN `ps22_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps22_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` = 2289) |
0.917
ms
|
1 |
|
|
/classes/Product.php:3860
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
603 |
SELECT SQL_NO_CACHE *
FROM `ps22_category` a
LEFT JOIN `ps22_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 1
LEFT JOIN `ps22_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 209) AND (b.`id_shop` = 1) LIMIT 1 |
0.917
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:164 (__construct)
/classes/Link.php:402 (__construct)
/classes/Link.php:458 (getCategoryObject)
/var/cache/prod/smarty/compile/classic/1c/9a/17/1c9a178d33d1c64d16da67eee7b233868cc8c77c_2.file.categories-tree.tpl.php:33 (getCategoryLink)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1354073306_20529102)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1502 (display)
/modules/ets_megamenu/ets_megamenu.php:1204 (displayCategories)
/modules/ets_megamenu/ets_megamenu.php:1169 (convertBlockProperties)
/classes/Hook.php:1077 (hookDisplayBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classic/f3/d5/9e/f3d59e42c90c7462916be2ef540caa369d2ac214_2.file.menu-html.tpl.php:89 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135404d5d2_33533514)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1634 (display)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
401 |
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps22_image` i
INNER JOIN ps22_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 2145
AND image_shop.`cover` = 1 LIMIT 1 |
0.909
ms
|
2 |
|
|
/classes/Product.php:3570
/classes/Product.php:5643 (getCover)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
210 |
SELECT SQL_NO_CACHE name FROM ps22_category_lang WHERE id_shop = 1 AND id_lang = 1 AND id_category = 220 LIMIT 1 |
0.907
ms
|
1 |
|
|
/classes/Product.php:5659
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
430 |
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 `ps22_product` p
INNER JOIN `ps22_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps22_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` = 2143) |
0.905
ms
|
1 |
|
|
/classes/Product.php:3860
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
66 |
SELECT SQL_NO_CACHE *
FROM `ps22_product` a
LEFT JOIN `ps22_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `ps22_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 2292) AND (b.`id_shop` = 1) LIMIT 1 |
0.904
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:725 (__construct)
/classes/Link.php:113 (__construct)
/classes/Link.php:189 (getProductObject)
/classes/Product.php:5660 (getProductLink)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
392 |
SELECT SQL_NO_CACHE 1 FROM `ps22_specific_price` WHERE id_product = 2150 LIMIT 1 |
0.893
ms
|
1 |
|
|
/classes/SpecificPrice.php:435
/classes/SpecificPrice.php:523 (couldHaveSpecificPrice)
/classes/Product.php:3827 (getSpecificPrice)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
58 |
SELECT SQL_NO_CACHE *
FROM `ps22_category` a
LEFT JOIN `ps22_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 206) LIMIT 1 |
0.886
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:164 (__construct)
/modules/ps_facetedsearch/src/Product/Search.php:364 (__construct)
/modules/ps_facetedsearch/src/Product/Search.php:130 (addControllerSpecificFilters)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:173 (initSearch)
/classes/controller/ProductListingFrontController.php:357 (runQuery)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
122 |
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps22_image` i
INNER JOIN ps22_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 2267
AND image_shop.`cover` = 1 LIMIT 1 |
0.878
ms
|
2 |
|
|
/classes/Product.php:3570
/classes/Product.php:5643 (getCover)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
293 |
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps22_image` i
INNER JOIN ps22_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 2188
AND image_shop.`cover` = 1 LIMIT 1 |
0.877
ms
|
2 |
|
|
/classes/Product.php:3570
/classes/Product.php:5643 (getCover)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
283 |
SELECT SQL_NO_CACHE *
FROM `ps22_product` a
LEFT JOIN `ps22_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `ps22_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 2194) AND (b.`id_shop` = 1) LIMIT 1 |
0.875
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Product.php:725 (__construct)
/classes/Link.php:113 (__construct)
/classes/Link.php:189 (getProductObject)
/classes/Product.php:5660 (getProductLink)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
200 |
SELECT SQL_NO_CACHE 1 FROM `ps22_specific_price` WHERE id_product = 2234 LIMIT 1 |
0.875
ms
|
1 |
|
|
/classes/SpecificPrice.php:435
/classes/SpecificPrice.php:523 (couldHaveSpecificPrice)
/classes/Product.php:3827 (getSpecificPrice)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
135 |
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps22_image` i
INNER JOIN ps22_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 2265
AND image_shop.`cover` = 1 LIMIT 1 |
0.873
ms
|
2 |
|
|
/classes/Product.php:3570
/classes/Product.php:5643 (getCover)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
188 |
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 `ps22_product` p
INNER JOIN `ps22_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps22_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` = 2239) |
0.867
ms
|
1 |
|
|
/classes/Product.php:3860
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
653 |
SELECT SQL_NO_CACHE *
FROM `ps22_link_block` a
LEFT JOIN `ps22_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.863
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (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:1088 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1019 (coreRenderWidget)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/7c/b9/fe/7cb9fe82eae491bdccb39f150924de614ad1fd8a_2.file.footer.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/prod/smarty/compile/classiclayouts_layout_left_column_tpl/7c/b9/fe/7cb9fe82eae491bdccb39f150924de614ad1fd8a_2.file.footer.tpl.php:39 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e13546aa2f4_73458832)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:348 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:117 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
147 |
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps22_image` i
INNER JOIN ps22_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 2264
AND image_shop.`cover` = 1 LIMIT 1 |
0.862
ms
|
2 |
|
|
/classes/Product.php:3570
/classes/Product.php:5643 (getCover)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
650 |
SELECT SQL_NO_CACHE `id_module` FROM `ps22_module` WHERE `name` = "ps_linklist" LIMIT 1 |
0.859
ms
|
1 |
|
|
/classes/module/Module.php:2659
/classes/module/Module.php:2131 (getModuleIdByName)
/classes/Hook.php:1083 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1019 (coreRenderWidget)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/7c/b9/fe/7cb9fe82eae491bdccb39f150924de614ad1fd8a_2.file.footer.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/prod/smarty/compile/classiclayouts_layout_left_column_tpl/7c/b9/fe/7cb9fe82eae491bdccb39f150924de614ad1fd8a_2.file.footer.tpl.php:39 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e13546aa2f4_73458832)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:348 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:117 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
104 |
SELECT SQL_NO_CACHE `reduction`
FROM `ps22_product_group_reduction_cache`
WHERE `id_product` = 2287 AND `id_group` = 1 LIMIT 1 |
0.850
ms
|
0 |
|
|
/classes/GroupReduction.php:156
/classes/Product.php:3990 (getValueForProduct)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
105 |
SELECT SQL_NO_CACHE COUNT(*) FROM `ps22_pack` WHERE id_product_pack = 2287 LIMIT 1 |
0.843
ms
|
1 |
|
|
/classes/Pack.php:89
/classes/Product.php:4344 (isPack)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
594 |
SELECT SQL_NO_CACHE *
FROM `ps22_category` a
LEFT JOIN `ps22_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 1
LEFT JOIN `ps22_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 220) AND (b.`id_shop` = 1) LIMIT 1 |
0.843
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:164 (__construct)
/classes/Link.php:402 (__construct)
/classes/Link.php:458 (getCategoryObject)
/var/cache/prod/smarty/compile/classic/1c/9a/17/1c9a178d33d1c64d16da67eee7b233868cc8c77c_2.file.categories-tree.tpl.php:33 (getCategoryLink)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1354073306_20529102)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1502 (display)
/modules/ets_megamenu/ets_megamenu.php:1204 (displayCategories)
/modules/ets_megamenu/ets_megamenu.php:1169 (convertBlockProperties)
/classes/Hook.php:1077 (hookDisplayBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classic/f3/d5/9e/f3d59e42c90c7462916be2ef540caa369d2ac214_2.file.menu-html.tpl.php:89 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135404d5d2_33533514)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1634 (display)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
423 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps22_stock_available`
WHERE (id_product = 2144) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.842
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:453
/classes/Product.php:4349 (getQuantityAvailableByProduct)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
439 |
SELECT SQL_NO_CACHE `id_product_attribute`
FROM `ps22_product_attribute`
WHERE `id_product` = 2292 |
0.839
ms
|
1 |
|
|
/classes/Product.php:2902
/src/Adapter/Image/ImageRetriever.php:90 (getCombinationImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:57 (__construct)
/classes/controller/ProductListingFrontController.php:119 (present)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
269 |
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps22_image` i
INNER JOIN ps22_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 2196
AND image_shop.`cover` = 1 LIMIT 1 |
0.838
ms
|
2 |
|
|
/classes/Product.php:3570
/classes/Product.php:5643 (getCover)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
8 |
SELECT SQL_NO_CACHE *
FROM `ps22_lang` a
LEFT JOIN `ps22_lang_shop` `c` ON a.`id_lang` = c.`id_lang` AND c.`id_shop` = 1
WHERE (a.`id_lang` = 1) LIMIT 1 |
0.833
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/config/config.inc.php:212 (__construct)
/index.php:27 (require)
|
261 |
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 `ps22_product` p
INNER JOIN `ps22_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps22_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` = 2198) |
0.827
ms
|
1 |
|
|
/classes/Product.php:3860
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
93 |
SELECT SQL_NO_CACHE COUNT(*) FROM `ps22_pack` WHERE id_product_pack = 2289 LIMIT 1 |
0.823
ms
|
1 |
|
|
/classes/Pack.php:89
/classes/Product.php:4344 (isPack)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
405 |
SELECT SQL_NO_CACHE 1 FROM `ps22_specific_price` WHERE id_product = 2145 LIMIT 1 |
0.823
ms
|
1 |
|
|
/classes/SpecificPrice.php:435
/classes/SpecificPrice.php:523 (couldHaveSpecificPrice)
/classes/Product.php:3827 (getSpecificPrice)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
281 |
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps22_image` i
INNER JOIN ps22_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 2194
AND image_shop.`cover` = 1 LIMIT 1 |
0.823
ms
|
2 |
|
|
/classes/Product.php:3570
/classes/Product.php:5643 (getCover)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
612 |
SELECT SQL_NO_CACHE `id_module` FROM `ps22_module` WHERE `name` = "ps_sharebuttons" LIMIT 1 |
0.821
ms
|
1 |
|
|
/classes/module/Module.php:2659
/classes/module/Module.php:2131 (getModuleIdByName)
/classes/Hook.php:1083 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1019 (coreRenderWidget)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:134 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:263 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e13543ab4e7_88104059)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/0a/12/f6/0a12f6898800da3c62fd09546f560e1520e267e7_2.file.productlist.tpl.php:39 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135437ca61_98950484)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/ed/4f/4f/ed4f4f89038a00a905571edb55b9e4496246c67a_2.file.products.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135436a901_04420740)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:121 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:239 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:84 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
10 |
SELECT SQL_NO_CACHE domain, domain_ssl
FROM ps22_shop_url
WHERE main = 1
AND id_shop = 1 LIMIT 1 |
0.818
ms
|
1 |
|
|
/classes/shop/ShopUrl.php:182
/classes/shop/ShopUrl.php:198 (cacheMainDomainForShop)
/classes/Tools.php:302 (getMainShopDomain)
/classes/Link.php:65 (getShopDomain)
/config/config.inc.php:278 (__construct)
/index.php:27 (require)
|
429 |
SELECT SQL_NO_CACHE 1 FROM `ps22_specific_price` WHERE id_product = 2143 LIMIT 1 |
0.816
ms
|
1 |
|
|
/classes/SpecificPrice.php:435
/classes/SpecificPrice.php:523 (couldHaveSpecificPrice)
/classes/Product.php:3827 (getSpecificPrice)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
24 |
SELECT SQL_NO_CACHE *
FROM `ps22_currency_lang`
WHERE `id_currency` = 1 |
0.814
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:79
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Currency.php:246 (__construct)
/classes/Currency.php:1089 (__construct)
/classes/Tools.php:695 (getCurrencyInstance)
/classes/controller/FrontController.php:368 (setCurrency)
/controllers/front/listing/CategoryController.php:81 (init)
/tools/profiling/Controller.php:41 (init)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
242 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps22_stock_available`
WHERE (id_product = 2215) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.812
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:453
/classes/Product.php:4349 (getQuantityAvailableByProduct)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
239 |
SELECT SQL_NO_CACHE `reduction`
FROM `ps22_product_group_reduction_cache`
WHERE `id_product` = 2215 AND `id_group` = 1 LIMIT 1 |
0.812
ms
|
0 |
|
|
/classes/GroupReduction.php:156
/classes/Product.php:3990 (getValueForProduct)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
426 |
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps22_image` i
INNER JOIN ps22_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 2143
AND image_shop.`cover` = 1 LIMIT 1 |
0.810
ms
|
2 |
|
|
/classes/Product.php:3570
/classes/Product.php:5643 (getCover)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
365 |
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps22_image` i
INNER JOIN ps22_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 2157
AND image_shop.`cover` = 1 LIMIT 1 |
0.803
ms
|
2 |
|
|
/classes/Product.php:3570
/classes/Product.php:5643 (getCover)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
197 |
SELECT SQL_NO_CACHE cl.`link_rewrite`
FROM `ps22_category_lang` cl
WHERE `id_lang` = 1
AND cl.id_shop = 1
AND cl.`id_category` = 206 LIMIT 1 |
0.800
ms
|
1 |
|
|
/classes/Category.php:1378
/classes/Product.php:5658 (getLinkRewrite)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
377 |
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps22_image` i
INNER JOIN ps22_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 2152
AND image_shop.`cover` = 1 LIMIT 1 |
0.799
ms
|
2 |
|
|
/classes/Product.php:3570
/classes/Product.php:5643 (getCover)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
647 |
SELECT SQL_NO_CACHE `id_module` FROM `ps22_module_shop` WHERE `id_module` = 22 AND `id_shop` = 1 LIMIT 1 |
0.797
ms
|
1 |
|
|
/classes/module/Module.php:2132
/classes/Hook.php:1083 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1019 (coreRenderWidget)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/7c/b9/fe/7cb9fe82eae491bdccb39f150924de614ad1fd8a_2.file.footer.tpl.php:75 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/7c/b9/fe/7cb9fe82eae491bdccb39f150924de614ad1fd8a_2.file.footer.tpl.php:30 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e13546aa2f4_73458832)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:348 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:117 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
102 |
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 `ps22_product` p
INNER JOIN `ps22_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps22_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` = 2287) |
0.792
ms
|
1 |
|
|
/classes/Product.php:3860
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
107 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps22_stock_available`
WHERE (id_product = 2287) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.791
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:453
/classes/Product.php:4349 (getQuantityAvailableByProduct)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
254 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps22_stock_available`
WHERE (id_product = 2213) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.786
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:453
/classes/Product.php:4349 (getQuantityAvailableByProduct)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
236 |
SELECT SQL_NO_CACHE 1 FROM `ps22_specific_price` WHERE id_product = 2215 LIMIT 1 |
0.786
ms
|
1 |
|
|
/classes/SpecificPrice.php:435
/classes/SpecificPrice.php:523 (couldHaveSpecificPrice)
/classes/Product.php:3827 (getSpecificPrice)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
81 |
SELECT SQL_NO_CACHE product_type FROM `ps22_product` WHERE id_product = 2292 LIMIT 1 |
0.781
ms
|
1 |
|
|
/classes/Pack.php:90
/classes/Product.php:4344 (isPack)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
531 |
SELECT SQL_NO_CACHE *
FROM ps22_ets_mm_column
WHERE 1 AND id_menu=22
ORDER BY sort_order asc |
0.781
ms
|
27 |
Yes
|
|
/modules/ets_megamenu/ets_megamenu.php:950
/modules/ets_megamenu/ets_megamenu.php:940 (getColumns)
/modules/ets_megamenu/ets_megamenu.php:1632 (getMenus)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
171 |
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps22_image` i
INNER JOIN ps22_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 2262
AND image_shop.`cover` = 1 LIMIT 1 |
0.773
ms
|
2 |
|
|
/classes/Product.php:3570
/classes/Product.php:5643 (getCover)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
92 |
SELECT SQL_NO_CACHE `reduction`
FROM `ps22_product_group_reduction_cache`
WHERE `id_product` = 2289 AND `id_group` = 1 LIMIT 1 |
0.770
ms
|
0 |
|
|
/classes/GroupReduction.php:156
/classes/Product.php:3990 (getValueForProduct)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
202 |
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps22_product_shop`
WHERE `id_product` = 2234 AND id_shop=1 LIMIT 1 |
0.769
ms
|
1 |
|
|
/classes/Product.php:6876
/classes/Product.php:3925 (getIdTaxRulesGroupByIdProduct)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
435 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps22_stock_available`
WHERE (id_product = 2143) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.768
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:453
/classes/Product.php:4349 (getQuantityAvailableByProduct)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
670 |
SELECT SQL_NO_CACHE *
FROM ps22_meta m
LEFT JOIN ps22_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.768
ms
|
1 |
|
|
/classes/Meta.php:193
/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:1088 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1019 (coreRenderWidget)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/7c/b9/fe/7cb9fe82eae491bdccb39f150924de614ad1fd8a_2.file.footer.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/prod/smarty/compile/classiclayouts_layout_left_column_tpl/7c/b9/fe/7cb9fe82eae491bdccb39f150924de614ad1fd8a_2.file.footer.tpl.php:39 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e13546aa2f4_73458832)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:348 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:117 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
95 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps22_stock_available`
WHERE (id_product = 2289) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.765
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:453
/classes/Product.php:4349 (getQuantityAvailableByProduct)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
7 |
SELECT SQL_NO_CACHE *
FROM `ps22_shop_group` a
WHERE (a.`id_shop_group` = 1) LIMIT 1 |
0.763
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/shop/Shop.php:561 (__construct)
/config/config.inc.php:172 (getGroup)
/index.php:27 (require)
|
163 |
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 `ps22_product` p
INNER JOIN `ps22_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps22_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` = 2263) |
0.761
ms
|
1 |
|
|
/classes/Product.php:3860
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
205 |
SELECT SQL_NO_CACHE product_type FROM `ps22_product` WHERE id_product = 2234 LIMIT 1 |
0.760
ms
|
1 |
|
|
/classes/Pack.php:90
/classes/Product.php:4344 (isPack)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
273 |
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 `ps22_product` p
INNER JOIN `ps22_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps22_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` = 2196) |
0.757
ms
|
1 |
|
|
/classes/Product.php:3860
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
224 |
SELECT SQL_NO_CACHE 1 FROM `ps22_specific_price` WHERE id_product = 2216 LIMIT 1 |
0.755
ms
|
1 |
|
|
/classes/SpecificPrice.php:435
/classes/SpecificPrice.php:523 (couldHaveSpecificPrice)
/classes/Product.php:3827 (getSpecificPrice)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
655 |
SELECT SQL_NO_CACHE *
FROM `ps22_link_block` a
LEFT JOIN `ps22_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.753
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (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:1088 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1019 (coreRenderWidget)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/7c/b9/fe/7cb9fe82eae491bdccb39f150924de614ad1fd8a_2.file.footer.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/prod/smarty/compile/classiclayouts_layout_left_column_tpl/7c/b9/fe/7cb9fe82eae491bdccb39f150924de614ad1fd8a_2.file.footer.tpl.php:39 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e13546aa2f4_73458832)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:348 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:117 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
70 |
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 `ps22_product` p
INNER JOIN `ps22_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps22_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` = 2292) |
0.752
ms
|
1 |
|
|
/classes/Product.php:3860
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
321 |
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 `ps22_product` p
INNER JOIN `ps22_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps22_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` = 2172) |
0.751
ms
|
1 |
|
|
/classes/Product.php:3860
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
114 |
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 `ps22_product` p
INNER JOIN `ps22_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps22_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` = 2281) |
0.750
ms
|
1 |
|
|
/classes/Product.php:3860
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
410 |
SELECT SQL_NO_CACHE product_type FROM `ps22_product` WHERE id_product = 2145 LIMIT 1 |
0.747
ms
|
1 |
|
|
/classes/Pack.php:90
/classes/Product.php:4344 (isPack)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
613 |
SELECT SQL_NO_CACHE `id_module` FROM `ps22_module_shop` WHERE `id_module` = 228 AND `id_shop` = 1 LIMIT 1 |
0.746
ms
|
1 |
|
|
/classes/module/Module.php:2132
/classes/Hook.php:1083 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1019 (coreRenderWidget)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:134 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:263 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e13543ab4e7_88104059)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/0a/12/f6/0a12f6898800da3c62fd09546f560e1520e267e7_2.file.productlist.tpl.php:39 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135437ca61_98950484)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/ed/4f/4f/ed4f4f89038a00a905571edb55b9e4496246c67a_2.file.products.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135436a901_04420740)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:121 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:239 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:84 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
297 |
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 `ps22_product` p
INNER JOIN `ps22_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps22_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` = 2188) |
0.739
ms
|
1 |
|
|
/classes/Product.php:3860
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
183 |
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps22_image` i
INNER JOIN ps22_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 2239
AND image_shop.`cover` = 1 LIMIT 1 |
0.739
ms
|
2 |
|
|
/classes/Product.php:3570
/classes/Product.php:5643 (getCover)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
151 |
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 `ps22_product` p
INNER JOIN `ps22_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps22_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` = 2264) |
0.739
ms
|
1 |
|
|
/classes/Product.php:3860
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
673 |
SELECT SQL_NO_CACHE `id_module` FROM `ps22_module_shop` WHERE `id_module` = 236 AND `id_shop` = 1 LIMIT 1 |
0.737
ms
|
1 |
|
|
/classes/module/Module.php:2132
/classes/Hook.php:1083 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1019 (coreRenderWidget)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/7c/b9/fe/7cb9fe82eae491bdccb39f150924de614ad1fd8a_2.file.footer.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/prod/smarty/compile/classiclayouts_layout_left_column_tpl/7c/b9/fe/7cb9fe82eae491bdccb39f150924de614ad1fd8a_2.file.footer.tpl.php:39 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e13546aa2f4_73458832)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:348 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:117 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
422 |
SELECT SQL_NO_CACHE product_type FROM `ps22_product` WHERE id_product = 2144 LIMIT 1 |
0.734
ms
|
1 |
|
|
/classes/Pack.php:90
/classes/Product.php:4344 (isPack)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
417 |
SELECT SQL_NO_CACHE 1 FROM `ps22_specific_price` WHERE id_product = 2144 LIMIT 1 |
0.734
ms
|
1 |
|
|
/classes/SpecificPrice.php:435
/classes/SpecificPrice.php:523 (couldHaveSpecificPrice)
/classes/Product.php:3827 (getSpecificPrice)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
448 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps22_image` i
INNER JOIN ps22_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps22_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 2267
ORDER BY `position` |
0.733
ms
|
2 |
Yes
|
|
/classes/Product.php:3545
/src/Adapter/Image/ImageRetriever.php:84 (getImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:57 (__construct)
/classes/controller/ProductListingFrontController.php:119 (present)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
222 |
SELECT SQL_NO_CACHE name FROM ps22_category_lang WHERE id_shop = 1 AND id_lang = 1 AND id_category = 220 LIMIT 1 |
0.732
ms
|
1 |
|
|
/classes/Product.php:5659
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
278 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps22_stock_available`
WHERE (id_product = 2196) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.731
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:453
/classes/Product.php:4349 (getQuantityAvailableByProduct)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
482 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps22_image` i
INNER JOIN ps22_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps22_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 2170
ORDER BY `position` |
0.731
ms
|
2 |
Yes
|
|
/classes/Product.php:3545
/src/Adapter/Image/ImageRetriever.php:84 (getImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:57 (__construct)
/classes/controller/ProductListingFrontController.php:119 (present)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
420 |
SELECT SQL_NO_CACHE `reduction`
FROM `ps22_product_group_reduction_cache`
WHERE `id_product` = 2144 AND `id_group` = 1 LIMIT 1 |
0.730
ms
|
0 |
|
|
/classes/GroupReduction.php:156
/classes/Product.php:3990 (getValueForProduct)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
666 |
SELECT SQL_NO_CACHE *
FROM `ps22_cms_lang`
WHERE `id_cms` = 4 AND `id_shop` = 1 |
0.730
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:79
/classes/ObjectModel.php:283 (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:1088 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1019 (coreRenderWidget)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/7c/b9/fe/7cb9fe82eae491bdccb39f150924de614ad1fd8a_2.file.footer.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/prod/smarty/compile/classiclayouts_layout_left_column_tpl/7c/b9/fe/7cb9fe82eae491bdccb39f150924de614ad1fd8a_2.file.footer.tpl.php:39 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e13546aa2f4_73458832)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:348 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:117 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
214 |
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps22_product_shop`
WHERE `id_product` = 2218 AND id_shop=1 LIMIT 1 |
0.729
ms
|
1 |
|
|
/classes/Product.php:6876
/classes/Product.php:3925 (getIdTaxRulesGroupByIdProduct)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
672 |
SELECT SQL_NO_CACHE `id_module` FROM `ps22_module` WHERE `name` = "ps_customeraccountlinks" LIMIT 1 |
0.728
ms
|
1 |
|
|
/classes/module/Module.php:2659
/classes/module/Module.php:2131 (getModuleIdByName)
/classes/Hook.php:1083 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1019 (coreRenderWidget)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/7c/b9/fe/7cb9fe82eae491bdccb39f150924de614ad1fd8a_2.file.footer.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/prod/smarty/compile/classiclayouts_layout_left_column_tpl/7c/b9/fe/7cb9fe82eae491bdccb39f150924de614ad1fd8a_2.file.footer.tpl.php:39 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e13546aa2f4_73458832)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:348 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:117 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
216 |
SELECT SQL_NO_CACHE COUNT(*) FROM `ps22_pack` WHERE id_product_pack = 2218 LIMIT 1 |
0.727
ms
|
1 |
|
|
/classes/Pack.php:89
/classes/Product.php:4344 (isPack)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
252 |
SELECT SQL_NO_CACHE COUNT(*) FROM `ps22_pack` WHERE id_product_pack = 2213 LIMIT 1 |
0.726
ms
|
1 |
|
|
/classes/Pack.php:89
/classes/Product.php:4344 (isPack)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
499 |
SELECT SQL_NO_CACHE `id_product_attribute`
FROM `ps22_product_attribute`
WHERE `id_product` = 2143 |
0.726
ms
|
1 |
|
|
/classes/Product.php:2902
/src/Adapter/Image/ImageRetriever.php:90 (getCombinationImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:57 (__construct)
/classes/controller/ProductListingFrontController.php:119 (present)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
168 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps22_stock_available`
WHERE (id_product = 2263) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.726
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:453
/classes/Product.php:4349 (getQuantityAvailableByProduct)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
556 |
SELECT SQL_NO_CACHE c.*, cl.name,cl.link_rewrite
FROM ps22_category c
LEFT JOIN ps22_category_lang cl ON c.id_category=cl.id_category AND cl.id_lang=1
WHERE c.id_category IN(259)
ORDER BY cl.name ASC |
0.724
ms
|
1 |
Yes
|
|
/modules/ets_megamenu/ets_megamenu.php:1514
/modules/ets_megamenu/ets_megamenu.php:1204 (getCategoryById)
/modules/ets_megamenu/ets_megamenu.php:1169 (convertBlockProperties)
/classes/Hook.php:1077 (hookDisplayBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classic/f3/d5/9e/f3d59e42c90c7462916be2ef540caa369d2ac214_2.file.menu-html.tpl.php:89 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135404d5d2_33533514)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1634 (display)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
369 |
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 `ps22_product` p
INNER JOIN `ps22_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps22_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` = 2157) |
0.721
ms
|
1 |
|
|
/classes/Product.php:3860
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
25 |
SELECT SQL_NO_CACHE id_shop
FROM `ps22_currency_shop`
WHERE `id_currency` = 1
AND id_shop = 1 LIMIT 1 |
0.720
ms
|
1 |
|
|
/classes/ObjectModel.php:1729
/classes/Tools.php:699 (isAssociatedToShop)
/classes/controller/FrontController.php:368 (setCurrency)
/controllers/front/listing/CategoryController.php:81 (init)
/tools/profiling/Controller.php:41 (init)
/classes/Dispatcher.php:510 (run)
/index.php:28 (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 ps22_shop_group gs
LEFT JOIN ps22_shop s
ON s.id_shop_group = gs.id_shop_group
LEFT JOIN ps22_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.717
ms
|
1 |
Yes
|
|
/classes/shop/Shop.php:715
/classes/shop/Shop.php:774 (cacheShops)
/classes/Configuration.php:299 (getShops)
/classes/shop/Shop.php:398 (getMultiShopValues)
/config/config.inc.php:118 (initialize)
/index.php:27 (require)
|
671 |
SELECT SQL_NO_CACHE *
FROM ps22_meta m
LEFT JOIN ps22_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.716
ms
|
1 |
|
|
/classes/Meta.php:193
/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:1088 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1019 (coreRenderWidget)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/7c/b9/fe/7cb9fe82eae491bdccb39f150924de614ad1fd8a_2.file.footer.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/prod/smarty/compile/classiclayouts_layout_left_column_tpl/7c/b9/fe/7cb9fe82eae491bdccb39f150924de614ad1fd8a_2.file.footer.tpl.php:39 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e13546aa2f4_73458832)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:348 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:117 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
495 |
SELECT SQL_NO_CACHE `id_product_attribute`
FROM `ps22_product_attribute`
WHERE `id_product` = 2145 |
0.716
ms
|
1 |
|
|
/classes/Product.php:2902
/src/Adapter/Image/ImageRetriever.php:90 (getCombinationImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:57 (__construct)
/classes/controller/ProductListingFrontController.php:119 (present)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
504 |
SELECT SQL_NO_CACHE `id_module` FROM `ps22_module` WHERE `name` = "ps_languageselector" LIMIT 1 |
0.714
ms
|
1 |
|
|
/classes/module/Module.php:2659
/classes/module/Module.php:2131 (getModuleIdByName)
/classes/Hook.php:1083 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1019 (coreRenderWidget)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:81 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:31 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
472 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps22_image` i
INNER JOIN ps22_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps22_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 2196
ORDER BY `position` |
0.714
ms
|
2 |
Yes
|
|
/classes/Product.php:3545
/src/Adapter/Image/ImageRetriever.php:84 (getImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:57 (__construct)
/classes/controller/ProductListingFrontController.php:119 (present)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
345 |
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 `ps22_product` p
INNER JOIN `ps22_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps22_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` = 2168) |
0.712
ms
|
1 |
|
|
/classes/Product.php:3860
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
175 |
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 `ps22_product` p
INNER JOIN `ps22_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps22_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` = 2262) |
0.710
ms
|
1 |
|
|
/classes/Product.php:3860
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
491 |
SELECT SQL_NO_CACHE `id_product_attribute`
FROM `ps22_product_attribute`
WHERE `id_product` = 2152 |
0.709
ms
|
1 |
|
|
/classes/Product.php:2902
/src/Adapter/Image/ImageRetriever.php:90 (getCombinationImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:57 (__construct)
/classes/controller/ProductListingFrontController.php:119 (present)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
460 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps22_image` i
INNER JOIN ps22_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps22_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 2234
ORDER BY `position` |
0.708
ms
|
1 |
Yes
|
|
/classes/Product.php:3545
/src/Adapter/Image/ImageRetriever.php:84 (getImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:57 (__construct)
/classes/controller/ProductListingFrontController.php:119 (present)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
381 |
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 `ps22_product` p
INNER JOIN `ps22_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps22_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` = 2152) |
0.708
ms
|
1 |
|
|
/classes/Product.php:3860
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
353 |
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps22_image` i
INNER JOIN ps22_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 2160
AND image_shop.`cover` = 1 LIMIT 1 |
0.708
ms
|
2 |
|
|
/classes/Product.php:3570
/classes/Product.php:5643 (getCover)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
486 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps22_image` i
INNER JOIN ps22_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps22_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 2160
ORDER BY `position` |
0.706
ms
|
2 |
Yes
|
|
/classes/Product.php:3545
/src/Adapter/Image/ImageRetriever.php:84 (getImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:57 (__construct)
/classes/controller/ProductListingFrontController.php:119 (present)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
333 |
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 `ps22_product` p
INNER JOIN `ps22_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps22_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` = 2170) |
0.705
ms
|
1 |
|
|
/classes/Product.php:3860
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
46 |
SELECT SQL_NO_CACHE id_lang FROM ps22_lang WHERE is_rtl=1 AND active=1 LIMIT 1 |
0.703
ms
|
1 |
|
|
/modules/ets_megamenu/ets_megamenu.php:1549
/modules/ets_megamenu/ets_megamenu.php:48 (multiLayoutExist)
:undefined (__construct)
/src/Core/Foundation/IoC/Container.php:123 (newInstance)
/src/Core/Foundation/IoC/Container.php:153 (makeInstanceFromClassName)
/src/Core/Foundation/IoC/Container.php:166 (doMake)
/src/Adapter/ServiceLocator.php:70 (make)
/classes/module/Module.php:1258 (get)
/tools/profiling/Module.php:35 (coreLoadModule)
/classes/module/Module.php:1237 (coreLoadModule)
/classes/Hook.php:966 (getInstanceByName)
/classes/controller/FrontController.php:633 (exec)
/controllers/front/listing/CategoryController.php:127 (initContent)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
159 |
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps22_image` i
INNER JOIN ps22_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 2263
AND image_shop.`cover` = 1 LIMIT 1 |
0.703
ms
|
2 |
|
|
/classes/Product.php:3570
/classes/Product.php:5643 (getCover)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
662 |
SELECT SQL_NO_CACHE *
FROM `ps22_cms` a
LEFT JOIN `ps22_cms_shop` `c` ON a.`id_cms` = c.`id_cms` AND c.`id_shop` = 1
WHERE (a.`id_cms` = 2) LIMIT 1 |
0.700
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (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:1088 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1019 (coreRenderWidget)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/7c/b9/fe/7cb9fe82eae491bdccb39f150924de614ad1fd8a_2.file.footer.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/prod/smarty/compile/classiclayouts_layout_left_column_tpl/7c/b9/fe/7cb9fe82eae491bdccb39f150924de614ad1fd8a_2.file.footer.tpl.php:39 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e13546aa2f4_73458832)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:348 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:117 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
38 |
SELECT SQL_NO_CACHE * FROM `ps22_image_type` WHERE 1 AND `products` = 1 ORDER BY `width` DESC, `height` DESC, `name`ASC |
0.699
ms
|
7 |
Yes
|
|
/classes/ImageType.php:109
/src/Adapter/Image/ImageRetriever.php:381 (getImagesTypes)
/classes/controller/FrontController.php:1627 (getNoPictureImage)
/classes/controller/FrontController.php:1753 (getTemplateVarUrls)
/classes/controller/FrontController.php:563 (getTemplateVarShop)
/classes/controller/FrontController.php:625 (assignGeneralPurposeVariables)
/controllers/front/listing/CategoryController.php:127 (initContent)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
341 |
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps22_image` i
INNER JOIN ps22_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 2168
AND image_shop.`cover` = 1 LIMIT 1 |
0.698
ms
|
2 |
|
|
/classes/Product.php:3570
/classes/Product.php:5643 (getCover)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
462 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps22_image` i
INNER JOIN ps22_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps22_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 2218
ORDER BY `position` |
0.697
ms
|
2 |
Yes
|
|
/classes/Product.php:3545
/src/Adapter/Image/ImageRetriever.php:84 (getImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:57 (__construct)
/classes/controller/ProductListingFrontController.php:119 (present)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
357 |
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 `ps22_product` p
INNER JOIN `ps22_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps22_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` = 2160) |
0.696
ms
|
1 |
|
|
/classes/Product.php:3860
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
668 |
SELECT SQL_NO_CACHE *
FROM `ps22_cms_lang`
WHERE `id_cms` = 5 AND `id_shop` = 1 |
0.696
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:79
/classes/ObjectModel.php:283 (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:1088 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1019 (coreRenderWidget)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/7c/b9/fe/7cb9fe82eae491bdccb39f150924de614ad1fd8a_2.file.footer.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/prod/smarty/compile/classiclayouts_layout_left_column_tpl/7c/b9/fe/7cb9fe82eae491bdccb39f150924de614ad1fd8a_2.file.footer.tpl.php:39 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e13546aa2f4_73458832)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:348 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:117 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
484 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps22_image` i
INNER JOIN ps22_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps22_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 2168
ORDER BY `position` |
0.692
ms
|
2 |
Yes
|
|
/classes/Product.php:3545
/src/Adapter/Image/ImageRetriever.php:84 (getImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:57 (__construct)
/classes/controller/ProductListingFrontController.php:119 (present)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
285 |
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 `ps22_product` p
INNER JOIN `ps22_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps22_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` = 2194) |
0.689
ms
|
1 |
|
|
/classes/Product.php:3860
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
454 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps22_image` i
INNER JOIN ps22_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps22_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 2263
ORDER BY `position` |
0.688
ms
|
2 |
Yes
|
|
/classes/Product.php:3545
/src/Adapter/Image/ImageRetriever.php:84 (getImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:57 (__construct)
/classes/controller/ProductListingFrontController.php:119 (present)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
464 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps22_image` i
INNER JOIN ps22_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps22_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 2216
ORDER BY `position` |
0.683
ms
|
2 |
Yes
|
|
/classes/Product.php:3545
/src/Adapter/Image/ImageRetriever.php:84 (getImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:57 (__construct)
/classes/controller/ProductListingFrontController.php:119 (present)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
497 |
SELECT SQL_NO_CACHE `id_product_attribute`
FROM `ps22_product_attribute`
WHERE `id_product` = 2144 |
0.683
ms
|
1 |
|
|
/classes/Product.php:2902
/src/Adapter/Image/ImageRetriever.php:90 (getCombinationImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:57 (__construct)
/classes/controller/ProductListingFrontController.php:119 (present)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
101 |
SELECT SQL_NO_CACHE 1 FROM `ps22_specific_price` WHERE id_product = 2287 LIMIT 1 |
0.682
ms
|
1 |
|
|
/classes/SpecificPrice.php:435
/classes/SpecificPrice.php:523 (couldHaveSpecificPrice)
/classes/Product.php:3827 (getSpecificPrice)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
415 |
SELECT SQL_NO_CACHE name FROM ps22_category_lang WHERE id_shop = 1 AND id_lang = 1 AND id_category = 220 LIMIT 1 |
0.680
ms
|
1 |
|
|
/classes/Product.php:5659
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
537 |
SELECT SQL_NO_CACHE *
FROM ps22_ets_mm_column
WHERE 1 AND id_menu=25
ORDER BY sort_order asc |
0.680
ms
|
27 |
Yes
|
|
/modules/ets_megamenu/ets_megamenu.php:950
/modules/ets_megamenu/ets_megamenu.php:940 (getColumns)
/modules/ets_megamenu/ets_megamenu.php:1632 (getMenus)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
139 |
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 `ps22_product` p
INNER JOIN `ps22_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps22_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` = 2265) |
0.676
ms
|
1 |
|
|
/classes/Product.php:3860
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
480 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps22_image` i
INNER JOIN ps22_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps22_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 2172
ORDER BY `position` |
0.676
ms
|
2 |
Yes
|
|
/classes/Product.php:3545
/src/Adapter/Image/ImageRetriever.php:84 (getImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:57 (__construct)
/classes/controller/ProductListingFrontController.php:119 (present)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
165 |
SELECT SQL_NO_CACHE `reduction`
FROM `ps22_product_group_reduction_cache`
WHERE `id_product` = 2263 AND `id_group` = 1 LIMIT 1 |
0.675
ms
|
0 |
|
|
/classes/GroupReduction.php:156
/classes/Product.php:3990 (getValueForProduct)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
433 |
SELECT SQL_NO_CACHE COUNT(*) FROM `ps22_pack` WHERE id_product_pack = 2143 LIMIT 1 |
0.675
ms
|
1 |
|
|
/classes/Pack.php:89
/classes/Product.php:4344 (isPack)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
551 |
SELECT SQL_NO_CACHE *
FROM ps22_ets_mm_column
WHERE 1 AND id_menu=9
ORDER BY sort_order asc |
0.674
ms
|
27 |
Yes
|
|
/modules/ets_megamenu/ets_megamenu.php:950
/modules/ets_megamenu/ets_megamenu.php:940 (getColumns)
/modules/ets_megamenu/ets_megamenu.php:1632 (getMenus)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
452 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps22_image` i
INNER JOIN ps22_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps22_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 2264
ORDER BY `position` |
0.671
ms
|
2 |
Yes
|
|
/classes/Product.php:3545
/src/Adapter/Image/ImageRetriever.php:84 (getImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:57 (__construct)
/classes/controller/ProductListingFrontController.php:119 (present)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
510 |
SELECT SQL_NO_CACHE `id_module` FROM `ps22_module_shop` WHERE `id_module` = 19 AND `id_shop` = 1 LIMIT 1 |
0.669
ms
|
1 |
|
|
/classes/module/Module.php:2132
/classes/Hook.php:1083 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1019 (coreRenderWidget)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:81 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:31 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
427 |
SELECT SQL_NO_CACHE name FROM ps22_category_lang WHERE id_shop = 1 AND id_lang = 1 AND id_category = 220 LIMIT 1 |
0.667
ms
|
1 |
|
|
/classes/Product.php:5659
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
309 |
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 `ps22_product` p
INNER JOIN `ps22_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps22_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` = 2187) |
0.663
ms
|
1 |
|
|
/classes/Product.php:3860
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
234 |
SELECT SQL_NO_CACHE name FROM ps22_category_lang WHERE id_shop = 1 AND id_lang = 1 AND id_category = 220 LIMIT 1 |
0.662
ms
|
1 |
|
|
/classes/Product.php:5659
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
507 |
SELECT SQL_NO_CACHE `id_module` FROM `ps22_module_shop` WHERE `id_module` = 17 AND `id_shop` = 1 LIMIT 1 |
0.662
ms
|
1 |
|
|
/classes/module/Module.php:2132
/classes/Hook.php:1083 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1019 (coreRenderWidget)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:81 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:31 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
132 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps22_stock_available`
WHERE (id_product = 2267) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.661
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:453
/classes/Product.php:4349 (getQuantityAvailableByProduct)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
166 |
SELECT SQL_NO_CACHE COUNT(*) FROM `ps22_pack` WHERE id_product_pack = 2263 LIMIT 1 |
0.660
ms
|
1 |
|
|
/classes/Pack.php:89
/classes/Product.php:4344 (isPack)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
229 |
SELECT SQL_NO_CACHE product_type FROM `ps22_product` WHERE id_product = 2216 LIMIT 1 |
0.660
ms
|
1 |
|
|
/classes/Pack.php:90
/classes/Product.php:4344 (isPack)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
407 |
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps22_product_shop`
WHERE `id_product` = 2145 AND id_shop=1 LIMIT 1 |
0.659
ms
|
1 |
|
|
/classes/Product.php:6876
/classes/Product.php:3925 (getIdTaxRulesGroupByIdProduct)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
397 |
SELECT SQL_NO_CACHE product_type FROM `ps22_product` WHERE id_product = 2150 LIMIT 1 |
0.658
ms
|
1 |
|
|
/classes/Pack.php:90
/classes/Product.php:4344 (isPack)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
395 |
SELECT SQL_NO_CACHE `reduction`
FROM `ps22_product_group_reduction_cache`
WHERE `id_product` = 2150 AND `id_group` = 1 LIMIT 1 |
0.657
ms
|
0 |
|
|
/classes/GroupReduction.php:156
/classes/Product.php:3990 (getValueForProduct)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
656 |
SELECT SQL_NO_CACHE *
FROM `ps22_link_block_lang`
WHERE `id_link_block` = 2 |
0.656
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:79
/classes/ObjectModel.php:283 (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:1088 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1019 (coreRenderWidget)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/7c/b9/fe/7cb9fe82eae491bdccb39f150924de614ad1fd8a_2.file.footer.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/prod/smarty/compile/classiclayouts_layout_left_column_tpl/7c/b9/fe/7cb9fe82eae491bdccb39f150924de614ad1fd8a_2.file.footer.tpl.php:39 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e13546aa2f4_73458832)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:348 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:117 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
466 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps22_image` i
INNER JOIN ps22_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps22_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 2215
ORDER BY `position` |
0.654
ms
|
2 |
Yes
|
|
/classes/Product.php:3545
/src/Adapter/Image/ImageRetriever.php:84 (getImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:57 (__construct)
/classes/controller/ProductListingFrontController.php:119 (present)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
664 |
SELECT SQL_NO_CACHE *
FROM `ps22_cms` a
LEFT JOIN `ps22_cms_shop` `c` ON a.`id_cms` = c.`id_cms` AND c.`id_shop` = 1
WHERE (a.`id_cms` = 3) LIMIT 1 |
0.654
ms
|
0 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (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:1088 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1019 (coreRenderWidget)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/7c/b9/fe/7cb9fe82eae491bdccb39f150924de614ad1fd8a_2.file.footer.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/prod/smarty/compile/classiclayouts_layout_left_column_tpl/7c/b9/fe/7cb9fe82eae491bdccb39f150924de614ad1fd8a_2.file.footer.tpl.php:39 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e13546aa2f4_73458832)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:348 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:117 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
362 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps22_stock_available`
WHERE (id_product = 2160) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.653
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:453
/classes/Product.php:4349 (getQuantityAvailableByProduct)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
516 |
SELECT SQL_NO_CACHE `id_module` FROM `ps22_module` WHERE `name` = "ybc_productimagehover" LIMIT 1 |
0.652
ms
|
1 |
|
|
/classes/module/Module.php:2659
/classes/module/Module.php:2107 (getModuleIdByName)
/modules/ybc_themeconfig/ybc_themeconfig.php:612 (isInstalled)
/modules/ets_megamenu/ets_megamenu.php:923 (__construct)
/modules/ets_megamenu/ets_megamenu.php:1632 (getMenus)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
493 |
SELECT SQL_NO_CACHE `id_product_attribute`
FROM `ps22_product_attribute`
WHERE `id_product` = 2150 |
0.651
ms
|
1 |
|
|
/classes/Product.php:2902
/src/Adapter/Image/ImageRetriever.php:90 (getCombinationImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:57 (__construct)
/classes/controller/ProductListingFrontController.php:119 (present)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
575 |
SELECT SQL_NO_CACHE c.*, cl.name,cl.link_rewrite
FROM ps22_category c
LEFT JOIN ps22_category_lang cl ON c.id_category=cl.id_category AND cl.id_lang=1
WHERE c.id_category IN(257)
ORDER BY cl.name ASC |
0.650
ms
|
1 |
Yes
|
|
/modules/ets_megamenu/ets_megamenu.php:1514
/modules/ets_megamenu/ets_megamenu.php:1204 (getCategoryById)
/modules/ets_megamenu/ets_megamenu.php:1169 (convertBlockProperties)
/classes/Hook.php:1077 (hookDisplayBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classic/f3/d5/9e/f3d59e42c90c7462916be2ef540caa369d2ac214_2.file.menu-html.tpl.php:89 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135404d5d2_33533514)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1634 (display)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
506 |
SELECT SQL_NO_CACHE `id_module` FROM `ps22_module` WHERE `name` = "ps_currencyselector" LIMIT 1 |
0.649
ms
|
1 |
|
|
/classes/module/Module.php:2659
/classes/module/Module.php:2131 (getModuleIdByName)
/classes/Hook.php:1083 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1019 (coreRenderWidget)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:81 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:31 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
119 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps22_stock_available`
WHERE (id_product = 2281) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.648
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:453
/classes/Product.php:4349 (getQuantityAvailableByProduct)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
474 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps22_image` i
INNER JOIN ps22_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps22_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 2194
ORDER BY `position` |
0.645
ms
|
2 |
Yes
|
|
/classes/Product.php:3545
/src/Adapter/Image/ImageRetriever.php:84 (getImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:57 (__construct)
/classes/controller/ProductListingFrontController.php:119 (present)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
338 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps22_stock_available`
WHERE (id_product = 2170) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.643
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:453
/classes/Product.php:4349 (getQuantityAvailableByProduct)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
59 |
SELECT SQL_NO_CACHE *
FROM `ps22_category_lang`
WHERE `id_category` = 206 AND `id_shop` = 1 |
0.641
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:79
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:164 (__construct)
/modules/ps_facetedsearch/src/Product/Search.php:364 (__construct)
/modules/ps_facetedsearch/src/Product/Search.php:130 (addControllerSpecificFilters)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:173 (initSearch)
/classes/controller/ProductListingFrontController.php:357 (runQuery)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
248 |
SELECT SQL_NO_CACHE 1 FROM `ps22_specific_price` WHERE id_product = 2213 LIMIT 1 |
0.641
ms
|
1 |
|
|
/classes/SpecificPrice.php:435
/classes/SpecificPrice.php:523 (couldHaveSpecificPrice)
/classes/Product.php:3827 (getSpecificPrice)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
651 |
SELECT SQL_NO_CACHE `id_module` FROM `ps22_module_shop` WHERE `id_module` = 227 AND `id_shop` = 1 LIMIT 1 |
0.641
ms
|
1 |
|
|
/classes/module/Module.php:2132
/classes/Hook.php:1083 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1019 (coreRenderWidget)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/7c/b9/fe/7cb9fe82eae491bdccb39f150924de614ad1fd8a_2.file.footer.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/prod/smarty/compile/classiclayouts_layout_left_column_tpl/7c/b9/fe/7cb9fe82eae491bdccb39f150924de614ad1fd8a_2.file.footer.tpl.php:39 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e13546aa2f4_73458832)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:348 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:117 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
648 |
SELECT SQL_NO_CACHE `id_module` FROM `ps22_module` WHERE `name` = "ps_socialfollow" LIMIT 1 |
0.639
ms
|
1 |
|
|
/classes/module/Module.php:2659
/classes/module/Module.php:2131 (getModuleIdByName)
/classes/Hook.php:1083 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1019 (coreRenderWidget)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/7c/b9/fe/7cb9fe82eae491bdccb39f150924de614ad1fd8a_2.file.footer.tpl.php:75 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/7c/b9/fe/7cb9fe82eae491bdccb39f150924de614ad1fd8a_2.file.footer.tpl.php:30 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e13546aa2f4_73458832)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:348 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:117 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
517 |
SELECT SQL_NO_CACHE `id_module` FROM `ps22_module_shop` WHERE `id_module` = 354 AND `id_shop` = 1 LIMIT 1 |
0.637
ms
|
1 |
|
|
/classes/module/Module.php:2132
/modules/ybc_themeconfig/ybc_themeconfig.php:612 (isEnabled)
/modules/ets_megamenu/ets_megamenu.php:923 (__construct)
/modules/ets_megamenu/ets_megamenu.php:1632 (getMenus)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
198 |
SELECT SQL_NO_CACHE name FROM ps22_category_lang WHERE id_shop = 1 AND id_lang = 1 AND id_category = 206 LIMIT 1 |
0.637
ms
|
1 |
|
|
/classes/Product.php:5659
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
614 |
SELECT SQL_NO_CACHE `id_module` FROM `ps22_module` WHERE `name` = "productcomments" LIMIT 1 |
0.636
ms
|
1 |
|
|
/classes/module/Module.php:2659
/classes/module/Module.php:2131 (getModuleIdByName)
/classes/Hook.php:1083 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1019 (coreRenderWidget)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:134 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:263 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e13543ab4e7_88104059)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/0a/12/f6/0a12f6898800da3c62fd09546f560e1520e267e7_2.file.productlist.tpl.php:39 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135437ca61_98950484)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/ed/4f/4f/ed4f4f89038a00a905571edb55b9e4496246c67a_2.file.products.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135436a901_04420740)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:121 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:239 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:84 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
89 |
SELECT SQL_NO_CACHE 1 FROM `ps22_specific_price` WHERE id_product = 2289 LIMIT 1 |
0.633
ms
|
1 |
|
|
/classes/SpecificPrice.php:435
/classes/SpecificPrice.php:523 (couldHaveSpecificPrice)
/classes/Product.php:3827 (getSpecificPrice)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
665 |
SELECT SQL_NO_CACHE *
FROM `ps22_cms` a
LEFT JOIN `ps22_cms_shop` `c` ON a.`id_cms` = c.`id_cms` AND c.`id_shop` = 1
WHERE (a.`id_cms` = 4) LIMIT 1 |
0.630
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (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:1088 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1019 (coreRenderWidget)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/7c/b9/fe/7cb9fe82eae491bdccb39f150924de614ad1fd8a_2.file.footer.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/prod/smarty/compile/classiclayouts_layout_left_column_tpl/7c/b9/fe/7cb9fe82eae491bdccb39f150924de614ad1fd8a_2.file.footer.tpl.php:39 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e13546aa2f4_73458832)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:348 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:117 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
302 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps22_stock_available`
WHERE (id_product = 2188) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.629
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:453
/classes/Product.php:4349 (getQuantityAvailableByProduct)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
87 |
SELECT SQL_NO_CACHE name FROM ps22_category_lang WHERE id_shop = 1 AND id_lang = 1 AND id_category = 220 LIMIT 1 |
0.628
ms
|
1 |
|
|
/classes/Product.php:5659
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
246 |
SELECT SQL_NO_CACHE name FROM ps22_category_lang WHERE id_shop = 1 AND id_lang = 1 AND id_category = 206 LIMIT 1 |
0.627
ms
|
1 |
|
|
/classes/Product.php:5659
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
67 |
SELECT SQL_NO_CACHE `name`
FROM `ps22_manufacturer`
WHERE `id_manufacturer` = 12
AND `active` = 1 LIMIT 1 |
0.626
ms
|
1 |
|
|
/classes/Manufacturer.php:316
/classes/Product.php:5669 (getNameById)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
478 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps22_image` i
INNER JOIN ps22_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps22_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 2187
ORDER BY `position` |
0.625
ms
|
2 |
Yes
|
|
/classes/Product.php:3545
/src/Adapter/Image/ImageRetriever.php:84 (getImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:57 (__construct)
/classes/controller/ProductListingFrontController.php:119 (present)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
99 |
SELECT SQL_NO_CACHE name FROM ps22_category_lang WHERE id_shop = 1 AND id_lang = 1 AND id_category = 220 LIMIT 1 |
0.619
ms
|
1 |
|
|
/classes/Product.php:5659
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
144 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps22_stock_available`
WHERE (id_product = 2265) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.618
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:453
/classes/Product.php:4349 (getQuantityAvailableByProduct)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
386 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps22_stock_available`
WHERE (id_product = 2152) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.617
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:453
/classes/Product.php:4349 (getQuantityAvailableByProduct)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
456 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps22_image` i
INNER JOIN ps22_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps22_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 2262
ORDER BY `position` |
0.614
ms
|
2 |
Yes
|
|
/classes/Product.php:3545
/src/Adapter/Image/ImageRetriever.php:84 (getImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:57 (__construct)
/classes/controller/ProductListingFrontController.php:119 (present)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
65 |
SELECT SQL_NO_CACHE name FROM ps22_category_lang WHERE id_shop = 1 AND id_lang = 1 AND id_category = 220 LIMIT 1 |
0.614
ms
|
1 |
|
|
/classes/Product.php:5659
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
514 |
SELECT SQL_NO_CACHE `id_module` FROM `ps22_module` WHERE `name` = "ps_searchbar" LIMIT 1 |
0.614
ms
|
1 |
|
|
/classes/module/Module.php:2659
/classes/module/Module.php:2131 (getModuleIdByName)
/classes/Hook.php:1083 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1019 (coreRenderWidget)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:130 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
374 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps22_stock_available`
WHERE (id_product = 2157) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.613
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:453
/classes/Product.php:4349 (getQuantityAvailableByProduct)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
360 |
SELECT SQL_NO_CACHE COUNT(*) FROM `ps22_pack` WHERE id_product_pack = 2160 LIMIT 1 |
0.612
ms
|
1 |
|
|
/classes/Pack.php:89
/classes/Product.php:4344 (isPack)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
432 |
SELECT SQL_NO_CACHE `reduction`
FROM `ps22_product_group_reduction_cache`
WHERE `id_product` = 2143 AND `id_group` = 1 LIMIT 1 |
0.612
ms
|
0 |
|
|
/classes/GroupReduction.php:156
/classes/Product.php:3990 (getValueForProduct)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
649 |
SELECT SQL_NO_CACHE `id_module` FROM `ps22_module_shop` WHERE `id_module` = 33 AND `id_shop` = 1 LIMIT 1 |
0.612
ms
|
1 |
|
|
/classes/module/Module.php:2132
/classes/Hook.php:1083 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1019 (coreRenderWidget)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/7c/b9/fe/7cb9fe82eae491bdccb39f150924de614ad1fd8a_2.file.footer.tpl.php:75 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/7c/b9/fe/7cb9fe82eae491bdccb39f150924de614ad1fd8a_2.file.footer.tpl.php:30 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e13546aa2f4_73458832)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:348 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:117 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
667 |
SELECT SQL_NO_CACHE *
FROM `ps22_cms` a
LEFT JOIN `ps22_cms_shop` `c` ON a.`id_cms` = c.`id_cms` AND c.`id_shop` = 1
WHERE (a.`id_cms` = 5) LIMIT 1 |
0.612
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (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:1088 (renderWidget)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1019 (coreRenderWidget)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/7c/b9/fe/7cb9fe82eae491bdccb39f150924de614ad1fd8a_2.file.footer.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/prod/smarty/compile/classiclayouts_layout_left_column_tpl/7c/b9/fe/7cb9fe82eae491bdccb39f150924de614ad1fd8a_2.file.footer.tpl.php:39 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e13546aa2f4_73458832)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:348 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:117 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
40 |
SELECT SQL_NO_CACHE `need_identification_number`
FROM `ps22_country`
WHERE `id_country` = 8 LIMIT 1 |
0.611
ms
|
1 |
|
|
/classes/Country.php:405
/classes/AddressFormat.php:634 (isNeedDniByCountryId)
/classes/AddressFormat.php:615 (getFormat)
/classes/AddressFormat.php:562 (getAddressCountryFormat)
/classes/AddressFormat.php:438 (getOrderedAddressFields)
/classes/controller/FrontController.php:1773 (generateAddress)
/classes/controller/FrontController.php:563 (getTemplateVarShop)
/classes/controller/FrontController.php:625 (assignGeneralPurposeVariables)
/controllers/front/listing/CategoryController.php:127 (initContent)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
264 |
SELECT SQL_NO_CACHE COUNT(*) FROM `ps22_pack` WHERE id_product_pack = 2198 LIMIT 1 |
0.611
ms
|
1 |
|
|
/classes/Pack.php:89
/classes/Product.php:4344 (isPack)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
509 |
SELECT SQL_NO_CACHE `id_module` FROM `ps22_module` WHERE `name` = "ps_customersignin" LIMIT 1 |
0.609
ms
|
1 |
|
|
/classes/module/Module.php:2659
/classes/module/Module.php:2131 (getModuleIdByName)
/classes/Hook.php:1083 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1019 (coreRenderWidget)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:81 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:31 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
176 |
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps22_product_shop`
WHERE `id_product` = 2262 AND id_shop=1 LIMIT 1 |
0.609
ms
|
1 |
|
|
/classes/Product.php:6876
/classes/Product.php:3925 (getIdTaxRulesGroupByIdProduct)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
384 |
SELECT SQL_NO_CACHE COUNT(*) FROM `ps22_pack` WHERE id_product_pack = 2152 LIMIT 1 |
0.608
ms
|
1 |
|
|
/classes/Pack.php:89
/classes/Product.php:4344 (isPack)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
41 |
SELECT SQL_NO_CACHE *
FROM `ps22_country` a
LEFT JOIN `ps22_country_shop` `c` ON a.`id_country` = c.`id_country` AND c.`id_shop` = 1
WHERE (a.`id_country` = 8) LIMIT 1 |
0.607
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/AddressFormat.php:404 (__construct)
/classes/AddressFormat.php:439 (getFormattedAddressFieldsValues)
/classes/controller/FrontController.php:1773 (generateAddress)
/classes/controller/FrontController.php:563 (getTemplateVarShop)
/classes/controller/FrontController.php:625 (assignGeneralPurposeVariables)
/controllers/front/listing/CategoryController.php:127 (initContent)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
125 |
SELECT SQL_NO_CACHE `name`
FROM `ps22_manufacturer`
WHERE `id_manufacturer` = 26
AND `active` = 1 LIMIT 1 |
0.607
ms
|
1 |
|
|
/classes/Manufacturer.php:316
/classes/Product.php:5669 (getNameById)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
450 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps22_image` i
INNER JOIN ps22_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps22_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 2265
ORDER BY `position` |
0.606
ms
|
2 |
Yes
|
|
/classes/Product.php:3545
/src/Adapter/Image/ImageRetriever.php:84 (getImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:57 (__construct)
/classes/controller/ProductListingFrontController.php:119 (present)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
226 |
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps22_product_shop`
WHERE `id_product` = 2216 AND id_shop=1 LIMIT 1 |
0.606
ms
|
1 |
|
|
/classes/Product.php:6876
/classes/Product.php:3925 (getIdTaxRulesGroupByIdProduct)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
190 |
SELECT SQL_NO_CACHE `reduction`
FROM `ps22_product_group_reduction_cache`
WHERE `id_product` = 2239 AND `id_group` = 1 LIMIT 1 |
0.606
ms
|
0 |
|
|
/classes/GroupReduction.php:156
/classes/Product.php:3990 (getValueForProduct)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
116 |
SELECT SQL_NO_CACHE `reduction`
FROM `ps22_product_group_reduction_cache`
WHERE `id_product` = 2281 AND `id_group` = 1 LIMIT 1 |
0.605
ms
|
0 |
|
|
/classes/GroupReduction.php:156
/classes/Product.php:3990 (getValueForProduct)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
80 |
SELECT SQL_NO_CACHE COUNT(*) FROM `ps22_pack` WHERE id_product_pack = 2292 LIMIT 1 |
0.604
ms
|
1 |
|
|
/classes/Pack.php:89
/classes/Product.php:4344 (isPack)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
317 |
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps22_image` i
INNER JOIN ps22_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 2172
AND image_shop.`cover` = 1 LIMIT 1 |
0.601
ms
|
2 |
|
|
/classes/Product.php:3570
/classes/Product.php:5643 (getCover)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
314 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps22_stock_available`
WHERE (id_product = 2187) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.598
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:453
/classes/Product.php:4349 (getQuantityAvailableByProduct)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
476 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps22_image` i
INNER JOIN ps22_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps22_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 2188
ORDER BY `position` |
0.597
ms
|
2 |
Yes
|
|
/classes/Product.php:3545
/src/Adapter/Image/ImageRetriever.php:84 (getImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:57 (__construct)
/classes/controller/ProductListingFrontController.php:119 (present)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
217 |
SELECT SQL_NO_CACHE product_type FROM `ps22_product` WHERE id_product = 2218 LIMIT 1 |
0.597
ms
|
1 |
|
|
/classes/Pack.php:90
/classes/Product.php:4344 (isPack)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
488 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps22_image` i
INNER JOIN ps22_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps22_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 2157
ORDER BY `position` |
0.595
ms
|
2 |
Yes
|
|
/classes/Product.php:3545
/src/Adapter/Image/ImageRetriever.php:84 (getImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:57 (__construct)
/classes/controller/ProductListingFrontController.php:119 (present)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
468 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps22_image` i
INNER JOIN ps22_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps22_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 2213
ORDER BY `position` |
0.593
ms
|
1 |
Yes
|
|
/classes/Product.php:3545
/src/Adapter/Image/ImageRetriever.php:84 (getImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:57 (__construct)
/classes/controller/ProductListingFrontController.php:119 (present)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
258 |
SELECT SQL_NO_CACHE name FROM ps22_category_lang WHERE id_shop = 1 AND id_lang = 1 AND id_category = 220 LIMIT 1 |
0.591
ms
|
1 |
|
|
/classes/Product.php:5659
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
91 |
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps22_product_shop`
WHERE `id_product` = 2289 AND id_shop=1 LIMIT 1 |
0.591
ms
|
1 |
|
|
/classes/Product.php:6876
/classes/Product.php:3925 (getIdTaxRulesGroupByIdProduct)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
154 |
SELECT SQL_NO_CACHE COUNT(*) FROM `ps22_pack` WHERE id_product_pack = 2264 LIMIT 1 |
0.589
ms
|
1 |
|
|
/classes/Pack.php:89
/classes/Product.php:4344 (isPack)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
505 |
SELECT SQL_NO_CACHE `id_module` FROM `ps22_module_shop` WHERE `id_module` = 27 AND `id_shop` = 1 LIMIT 1 |
0.589
ms
|
1 |
|
|
/classes/module/Module.php:2132
/classes/Hook.php:1083 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1019 (coreRenderWidget)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:81 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:31 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
130 |
SELECT SQL_NO_CACHE COUNT(*) FROM `ps22_pack` WHERE id_product_pack = 2267 LIMIT 1 |
0.589
ms
|
1 |
|
|
/classes/Pack.php:89
/classes/Product.php:4344 (isPack)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
576 |
SELECT SQL_NO_CACHE *
FROM `ps22_category` a
LEFT JOIN `ps22_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 1
LEFT JOIN `ps22_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 257) AND (b.`id_shop` = 1) LIMIT 1 |
0.589
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:164 (__construct)
/classes/Link.php:402 (__construct)
/classes/Link.php:458 (getCategoryObject)
/var/cache/prod/smarty/compile/classic/1c/9a/17/1c9a178d33d1c64d16da67eee7b233868cc8c77c_2.file.categories-tree.tpl.php:33 (getCategoryLink)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1354073306_20529102)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1502 (display)
/modules/ets_megamenu/ets_megamenu.php:1204 (displayCategories)
/modules/ets_megamenu/ets_megamenu.php:1169 (convertBlockProperties)
/classes/Hook.php:1077 (hookDisplayBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classic/f3/d5/9e/f3d59e42c90c7462916be2ef540caa369d2ac214_2.file.menu-html.tpl.php:89 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135404d5d2_33533514)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1634 (display)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
263 |
SELECT SQL_NO_CACHE `reduction`
FROM `ps22_product_group_reduction_cache`
WHERE `id_product` = 2198 AND `id_group` = 1 LIMIT 1 |
0.585
ms
|
0 |
|
|
/classes/GroupReduction.php:156
/classes/Product.php:3990 (getValueForProduct)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
20 |
SELECT SQL_NO_CACHE c.id_currency
FROM `ps22_currency` c
WHERE (iso_code = 'EUR') LIMIT 1 |
0.582
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:102 (getCurrencyByIsoCodeAndLocale)
/src/Core/Data/Layer/AbstractDataLayer.php:91 (doRead)
/src/Core/Data/Layer/AbstractDataLayer.php:150 (read)
/src/Core/Data/Layer/AbstractDataLayer.php:95 (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:207 (getAllInstalledCurrencies)
/src/Core/Localization/Locale/Repository.php:150 (getPriceSpecifications)
/classes/controller/Controller.php:209 (getLocale)
/classes/controller/FrontController.php:284 (init)
/controllers/front/listing/CategoryController.php:81 (init)
/tools/profiling/Controller.php:41 (init)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
129 |
SELECT SQL_NO_CACHE `reduction`
FROM `ps22_product_group_reduction_cache`
WHERE `id_product` = 2267 AND `id_group` = 1 LIMIT 1 |
0.582
ms
|
0 |
|
|
/classes/GroupReduction.php:156
/classes/Product.php:3990 (getValueForProduct)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
394 |
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps22_product_shop`
WHERE `id_product` = 2150 AND id_shop=1 LIMIT 1 |
0.580
ms
|
1 |
|
|
/classes/Product.php:6876
/classes/Product.php:3925 (getIdTaxRulesGroupByIdProduct)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
180 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps22_stock_available`
WHERE (id_product = 2262) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.580
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:453
/classes/Product.php:4349 (getQuantityAvailableByProduct)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
142 |
SELECT SQL_NO_CACHE COUNT(*) FROM `ps22_pack` WHERE id_product_pack = 2265 LIMIT 1 |
0.578
ms
|
1 |
|
|
/classes/Pack.php:89
/classes/Product.php:4344 (isPack)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
111 |
SELECT SQL_NO_CACHE name FROM ps22_category_lang WHERE id_shop = 1 AND id_lang = 1 AND id_category = 220 LIMIT 1 |
0.576
ms
|
1 |
|
|
/classes/Product.php:5659
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
156 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps22_stock_available`
WHERE (id_product = 2264) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.576
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:453
/classes/Product.php:4349 (getQuantityAvailableByProduct)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
419 |
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps22_product_shop`
WHERE `id_product` = 2144 AND id_shop=1 LIMIT 1 |
0.574
ms
|
1 |
|
|
/classes/Product.php:6876
/classes/Product.php:3925 (getIdTaxRulesGroupByIdProduct)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
458 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps22_image` i
INNER JOIN ps22_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps22_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 2239
ORDER BY `position` |
0.573
ms
|
2 |
Yes
|
|
/classes/Product.php:3545
/src/Adapter/Image/ImageRetriever.php:84 (getImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:57 (__construct)
/classes/controller/ProductListingFrontController.php:119 (present)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
329 |
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps22_image` i
INNER JOIN ps22_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 2170
AND image_shop.`cover` = 1 LIMIT 1 |
0.572
ms
|
2 |
|
|
/classes/Product.php:3570
/classes/Product.php:5643 (getCover)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
512 |
SELECT SQL_NO_CACHE `id_module` FROM `ps22_module_shop` WHERE `id_module` = 216 AND `id_shop` = 1 LIMIT 1 |
0.571
ms
|
1 |
|
|
/classes/module/Module.php:2132
/classes/Hook.php:1083 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1019 (coreRenderWidget)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:81 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:31 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
470 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps22_image` i
INNER JOIN ps22_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps22_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 2198
ORDER BY `position` |
0.570
ms
|
2 |
Yes
|
|
/classes/Product.php:3545
/src/Adapter/Image/ImageRetriever.php:84 (getImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:57 (__construct)
/classes/controller/ProductListingFrontController.php:119 (present)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
347 |
SELECT SQL_NO_CACHE `reduction`
FROM `ps22_product_group_reduction_cache`
WHERE `id_product` = 2168 AND `id_group` = 1 LIMIT 1 |
0.570
ms
|
0 |
|
|
/classes/GroupReduction.php:156
/classes/Product.php:3990 (getValueForProduct)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
402 |
SELECT SQL_NO_CACHE name FROM ps22_category_lang WHERE id_shop = 1 AND id_lang = 1 AND id_category = 220 LIMIT 1 |
0.569
ms
|
1 |
|
|
/classes/Product.php:5659
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
186 |
SELECT SQL_NO_CACHE `name`
FROM `ps22_manufacturer`
WHERE `id_manufacturer` = 6
AND `active` = 1 LIMIT 1 |
0.569
ms
|
1 |
|
|
/classes/Manufacturer.php:316
/classes/Product.php:5669 (getNameById)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
251 |
SELECT SQL_NO_CACHE `reduction`
FROM `ps22_product_group_reduction_cache`
WHERE `id_product` = 2213 AND `id_group` = 1 LIMIT 1 |
0.569
ms
|
0 |
|
|
/classes/GroupReduction.php:156
/classes/Product.php:3990 (getValueForProduct)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
461 |
SELECT SQL_NO_CACHE `id_product_attribute`
FROM `ps22_product_attribute`
WHERE `id_product` = 2234 |
0.568
ms
|
1 |
|
|
/classes/Product.php:2902
/src/Adapter/Image/ImageRetriever.php:90 (getCombinationImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:57 (__construct)
/classes/controller/ProductListingFrontController.php:119 (present)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
577 |
SELECT SQL_NO_CACHE c.*, cl.name,cl.link_rewrite
FROM ps22_category c
LEFT JOIN ps22_category_lang cl ON c.id_category=cl.id_category AND cl.id_lang=1
WHERE c.id_category IN(2)
ORDER BY cl.name ASC |
0.563
ms
|
1 |
Yes
|
|
/modules/ets_megamenu/ets_megamenu.php:1514
/modules/ets_megamenu/ets_megamenu.php:1204 (getCategoryById)
/modules/ets_megamenu/ets_megamenu.php:1169 (convertBlockProperties)
/classes/Hook.php:1077 (hookDisplayBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classic/f3/d5/9e/f3d59e42c90c7462916be2ef540caa369d2ac214_2.file.menu-html.tpl.php:89 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135404d5d2_33533514)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1634 (display)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
615 |
SELECT SQL_NO_CACHE `id_module` FROM `ps22_module_shop` WHERE `id_module` = 347 AND `id_shop` = 1 LIMIT 1 |
0.563
ms
|
1 |
|
|
/classes/module/Module.php:2132
/classes/Hook.php:1083 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1019 (coreRenderWidget)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:134 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:263 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/16/10/47/1610477e76c1f7aabc6f4dc8b22b9bf7b1a91266_2.file.product.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e13543ab4e7_88104059)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/0a/12/f6/0a12f6898800da3c62fd09546f560e1520e267e7_2.file.productlist.tpl.php:39 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135437ca61_98950484)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/ed/4f/4f/ed4f4f89038a00a905571edb55b9e4496246c67a_2.file.products.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135436a901_04420740)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:121 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:239 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:84 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
305 |
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps22_image` i
INNER JOIN ps22_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 2187
AND image_shop.`cover` = 1 LIMIT 1 |
0.562
ms
|
2 |
|
|
/classes/Product.php:3570
/classes/Product.php:5643 (getCover)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
141 |
SELECT SQL_NO_CACHE `reduction`
FROM `ps22_product_group_reduction_cache`
WHERE `id_product` = 2265 AND `id_group` = 1 LIMIT 1 |
0.561
ms
|
0 |
|
|
/classes/GroupReduction.php:156
/classes/Product.php:3990 (getValueForProduct)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
457 |
SELECT SQL_NO_CACHE `id_product_attribute`
FROM `ps22_product_attribute`
WHERE `id_product` = 2262 |
0.559
ms
|
1 |
|
|
/classes/Product.php:2902
/src/Adapter/Image/ImageRetriever.php:90 (getCombinationImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:57 (__construct)
/classes/controller/ProductListingFrontController.php:119 (present)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
578 |
SELECT SQL_NO_CACHE *
FROM `ps22_category` a
LEFT JOIN `ps22_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 1
LEFT JOIN `ps22_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.555
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/Category.php:164 (__construct)
/classes/Link.php:402 (__construct)
/classes/Link.php:458 (getCategoryObject)
/var/cache/prod/smarty/compile/classic/1c/9a/17/1c9a178d33d1c64d16da67eee7b233868cc8c77c_2.file.categories-tree.tpl.php:33 (getCategoryLink)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1354073306_20529102)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1502 (display)
/modules/ets_megamenu/ets_megamenu.php:1204 (displayCategories)
/modules/ets_megamenu/ets_megamenu.php:1169 (convertBlockProperties)
/classes/Hook.php:1077 (hookDisplayBlock)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classic/f3/d5/9e/f3d59e42c90c7462916be2ef540caa369d2ac214_2.file.menu-html.tpl.php:89 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e135404d5d2_33533514)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/module/Module.php:2255 (fetch)
/modules/ets_megamenu/ets_megamenu.php:1634 (display)
/modules/ets_megamenu/ets_megamenu.php:1612 (displayMegaMenu)
/modules/ets_megamenu/ets_megamenu.php:1627 (displayMenuFrontend)
/classes/Hook.php:1077 (hookDisplayMegaMenu)
/tools/profiling/Hook.php:35 (coreCallHook)
/classes/Hook.php:418 (coreCallHook)
/classes/Hook.php:983 (callHookOn)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:144 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
126 |
SELECT SQL_NO_CACHE 1 FROM `ps22_specific_price` WHERE id_product = 2267 LIMIT 1 |
0.555
ms
|
1 |
|
|
/classes/SpecificPrice.php:435
/classes/SpecificPrice.php:523 (couldHaveSpecificPrice)
/classes/Product.php:3827 (getSpecificPrice)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
177 |
SELECT SQL_NO_CACHE `reduction`
FROM `ps22_product_group_reduction_cache`
WHERE `id_product` = 2262 AND `id_group` = 1 LIMIT 1 |
0.553
ms
|
0 |
|
|
/classes/GroupReduction.php:156
/classes/Product.php:3990 (getValueForProduct)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
113 |
SELECT SQL_NO_CACHE 1 FROM `ps22_specific_price` WHERE id_product = 2281 LIMIT 1 |
0.553
ms
|
1 |
|
|
/classes/SpecificPrice.php:435
/classes/SpecificPrice.php:523 (couldHaveSpecificPrice)
/classes/Product.php:3827 (getSpecificPrice)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
511 |
SELECT SQL_NO_CACHE `id_module` FROM `ps22_module` WHERE `name` = "ps_shoppingcart" LIMIT 1 |
0.552
ms
|
1 |
|
|
/classes/module/Module.php:2659
/classes/module/Module.php:2131 (getModuleIdByName)
/classes/Hook.php:1083 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1019 (coreRenderWidget)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:81 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:31 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
75 |
SELECT SQL_NO_CACHE *
FROM `ps22_tax` a
WHERE (a.`id_tax` = 1) LIMIT 1 |
0.550
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/tax/TaxRulesTaxManager.php:116 (__construct)
/classes/Product.php:3926 (getTaxCalculator)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
260 |
SELECT SQL_NO_CACHE 1 FROM `ps22_specific_price` WHERE id_product = 2198 LIMIT 1 |
0.548
ms
|
1 |
|
|
/classes/SpecificPrice.php:435
/classes/SpecificPrice.php:523 (couldHaveSpecificPrice)
/classes/Product.php:3827 (getSpecificPrice)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
94 |
SELECT SQL_NO_CACHE product_type FROM `ps22_product` WHERE id_product = 2289 LIMIT 1 |
0.548
ms
|
1 |
|
|
/classes/Pack.php:90
/classes/Product.php:4344 (isPack)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
106 |
SELECT SQL_NO_CACHE product_type FROM `ps22_product` WHERE id_product = 2287 LIMIT 1 |
0.547
ms
|
1 |
|
|
/classes/Pack.php:90
/classes/Product.php:4344 (isPack)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
326 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps22_stock_available`
WHERE (id_product = 2172) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.542
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:453
/classes/Product.php:4349 (getQuantityAvailableByProduct)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
39 |
SELECT SQL_NO_CACHE format
FROM `ps22_address_format`
WHERE `id_country` = 8 LIMIT 1 |
0.541
ms
|
1 |
|
|
/classes/AddressFormat.php:656
/classes/AddressFormat.php:630 (getFormatDB)
/classes/AddressFormat.php:615 (getFormat)
/classes/AddressFormat.php:562 (getAddressCountryFormat)
/classes/AddressFormat.php:438 (getOrderedAddressFields)
/classes/controller/FrontController.php:1773 (generateAddress)
/classes/controller/FrontController.php:563 (getTemplateVarShop)
/classes/controller/FrontController.php:625 (assignGeneralPurposeVariables)
/controllers/front/listing/CategoryController.php:127 (initContent)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
153 |
SELECT SQL_NO_CACHE `reduction`
FROM `ps22_product_group_reduction_cache`
WHERE `id_product` = 2264 AND `id_group` = 1 LIMIT 1 |
0.541
ms
|
0 |
|
|
/classes/GroupReduction.php:156
/classes/Product.php:3990 (getValueForProduct)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
463 |
SELECT SQL_NO_CACHE `id_product_attribute`
FROM `ps22_product_attribute`
WHERE `id_product` = 2218 |
0.540
ms
|
1 |
|
|
/classes/Product.php:2902
/src/Adapter/Image/ImageRetriever.php:90 (getCombinationImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:57 (__construct)
/classes/controller/ProductListingFrontController.php:119 (present)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
64 |
SELECT SQL_NO_CACHE cl.`link_rewrite`
FROM `ps22_category_lang` cl
WHERE `id_lang` = 1
AND cl.id_shop = 1
AND cl.`id_category` = 220 LIMIT 1 |
0.540
ms
|
1 |
|
|
/classes/Category.php:1378
/classes/Product.php:5658 (getLinkRewrite)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
241 |
SELECT SQL_NO_CACHE product_type FROM `ps22_product` WHERE id_product = 2215 LIMIT 1 |
0.538
ms
|
1 |
|
|
/classes/Pack.php:90
/classes/Product.php:4344 (isPack)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
266 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps22_stock_available`
WHERE (id_product = 2198) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.536
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:453
/classes/Product.php:4349 (getQuantityAvailableByProduct)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
123 |
SELECT SQL_NO_CACHE name FROM ps22_category_lang WHERE id_shop = 1 AND id_lang = 1 AND id_category = 220 LIMIT 1 |
0.534
ms
|
1 |
|
|
/classes/Product.php:5659
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
76 |
SELECT SQL_NO_CACHE *
FROM `ps22_tax_lang`
WHERE `id_tax` = 1 |
0.534
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:79
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/tax/TaxRulesTaxManager.php:116 (__construct)
/classes/Product.php:3926 (getTaxCalculator)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
42 |
SELECT SQL_NO_CACHE *
FROM `ps22_country_lang`
WHERE `id_country` = 8 |
0.532
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:79
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/AddressFormat.php:404 (__construct)
/classes/AddressFormat.php:439 (getFormattedAddressFieldsValues)
/classes/controller/FrontController.php:1773 (generateAddress)
/classes/controller/FrontController.php:563 (getTemplateVarShop)
/classes/controller/FrontController.php:625 (assignGeneralPurposeVariables)
/controllers/front/listing/CategoryController.php:127 (initContent)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
138 |
SELECT SQL_NO_CACHE 1 FROM `ps22_specific_price` WHERE id_product = 2265 LIMIT 1 |
0.531
ms
|
1 |
|
|
/classes/SpecificPrice.php:435
/classes/SpecificPrice.php:523 (couldHaveSpecificPrice)
/classes/Product.php:3827 (getSpecificPrice)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
287 |
SELECT SQL_NO_CACHE `reduction`
FROM `ps22_product_group_reduction_cache`
WHERE `id_product` = 2194 AND `id_group` = 1 LIMIT 1 |
0.531
ms
|
0 |
|
|
/classes/GroupReduction.php:156
/classes/Product.php:3990 (getValueForProduct)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
371 |
SELECT SQL_NO_CACHE `reduction`
FROM `ps22_product_group_reduction_cache`
WHERE `id_product` = 2157 AND `id_group` = 1 LIMIT 1 |
0.531
ms
|
0 |
|
|
/classes/GroupReduction.php:156
/classes/Product.php:3990 (getValueForProduct)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
36 |
SELECT SQL_NO_CACHE `id_module` FROM `ps22_module` WHERE `name` = "ps_legalcompliance" LIMIT 1 |
0.530
ms
|
0 |
|
|
/classes/module/Module.php:2659
/classes/module/Module.php:2131 (getModuleIdByName)
/classes/controller/FrontController.php:1669 (isEnabled)
/classes/controller/FrontController.php:1813 (getDisplayTaxesLabel)
/controllers/front/listing/CategoryController.php:276 (getTemplateVarPage)
/classes/controller/FrontController.php:562 (getTemplateVarPage)
/classes/controller/FrontController.php:625 (assignGeneralPurposeVariables)
/controllers/front/listing/CategoryController.php:127 (initContent)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
312 |
SELECT SQL_NO_CACHE COUNT(*) FROM `ps22_pack` WHERE id_product_pack = 2187 LIMIT 1 |
0.529
ms
|
1 |
|
|
/classes/Pack.php:89
/classes/Product.php:4344 (isPack)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
323 |
SELECT SQL_NO_CACHE `reduction`
FROM `ps22_product_group_reduction_cache`
WHERE `id_product` = 2172 AND `id_group` = 1 LIMIT 1 |
0.529
ms
|
0 |
|
|
/classes/GroupReduction.php:156
/classes/Product.php:3990 (getValueForProduct)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
372 |
SELECT SQL_NO_CACHE COUNT(*) FROM `ps22_pack` WHERE id_product_pack = 2157 LIMIT 1 |
0.529
ms
|
1 |
|
|
/classes/Pack.php:89
/classes/Product.php:4344 (isPack)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
191 |
SELECT SQL_NO_CACHE COUNT(*) FROM `ps22_pack` WHERE id_product_pack = 2239 LIMIT 1 |
0.528
ms
|
1 |
|
|
/classes/Pack.php:89
/classes/Product.php:4344 (isPack)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
193 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps22_stock_available`
WHERE (id_product = 2239) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.527
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:453
/classes/Product.php:4349 (getQuantityAvailableByProduct)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
272 |
SELECT SQL_NO_CACHE 1 FROM `ps22_specific_price` WHERE id_product = 2196 LIMIT 1 |
0.527
ms
|
1 |
|
|
/classes/SpecificPrice.php:435
/classes/SpecificPrice.php:523 (couldHaveSpecificPrice)
/classes/Product.php:3827 (getSpecificPrice)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
336 |
SELECT SQL_NO_CACHE COUNT(*) FROM `ps22_pack` WHERE id_product_pack = 2170 LIMIT 1 |
0.525
ms
|
1 |
|
|
/classes/Pack.php:89
/classes/Product.php:4344 (isPack)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
350 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps22_stock_available`
WHERE (id_product = 2168) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.525
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:453
/classes/Product.php:4349 (getQuantityAvailableByProduct)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
238 |
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps22_product_shop`
WHERE `id_product` = 2215 AND id_shop=1 LIMIT 1 |
0.524
ms
|
1 |
|
|
/classes/Product.php:6876
/classes/Product.php:3925 (getIdTaxRulesGroupByIdProduct)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
78 |
SELECT SQL_NO_CACHE `reduction`
FROM `ps22_group`
WHERE `id_group` = 1 LIMIT 1 |
0.524
ms
|
1 |
|
|
/classes/Group.php:154
/classes/Product.php:3994 (getReductionByIdGroup)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
383 |
SELECT SQL_NO_CACHE `reduction`
FROM `ps22_product_group_reduction_cache`
WHERE `id_product` = 2152 AND `id_group` = 1 LIMIT 1 |
0.524
ms
|
0 |
|
|
/classes/GroupReduction.php:156
/classes/Product.php:3990 (getValueForProduct)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
465 |
SELECT SQL_NO_CACHE `id_product_attribute`
FROM `ps22_product_attribute`
WHERE `id_product` = 2216 |
0.522
ms
|
1 |
|
|
/classes/Product.php:2902
/src/Adapter/Image/ImageRetriever.php:90 (getCombinationImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:57 (__construct)
/classes/controller/ProductListingFrontController.php:119 (present)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
348 |
SELECT SQL_NO_CACHE COUNT(*) FROM `ps22_pack` WHERE id_product_pack = 2168 LIMIT 1 |
0.521
ms
|
1 |
|
|
/classes/Pack.php:89
/classes/Product.php:4344 (isPack)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
335 |
SELECT SQL_NO_CACHE `reduction`
FROM `ps22_product_group_reduction_cache`
WHERE `id_product` = 2170 AND `id_group` = 1 LIMIT 1 |
0.521
ms
|
0 |
|
|
/classes/GroupReduction.php:156
/classes/Product.php:3990 (getValueForProduct)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
324 |
SELECT SQL_NO_CACHE COUNT(*) FROM `ps22_pack` WHERE id_product_pack = 2172 LIMIT 1 |
0.520
ms
|
1 |
|
|
/classes/Pack.php:89
/classes/Product.php:4344 (isPack)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
174 |
SELECT SQL_NO_CACHE 1 FROM `ps22_specific_price` WHERE id_product = 2262 LIMIT 1 |
0.519
ms
|
1 |
|
|
/classes/SpecificPrice.php:435
/classes/SpecificPrice.php:523 (couldHaveSpecificPrice)
/classes/Product.php:3827 (getSpecificPrice)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
299 |
SELECT SQL_NO_CACHE `reduction`
FROM `ps22_product_group_reduction_cache`
WHERE `id_product` = 2188 AND `id_group` = 1 LIMIT 1 |
0.519
ms
|
0 |
|
|
/classes/GroupReduction.php:156
/classes/Product.php:3990 (getValueForProduct)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
276 |
SELECT SQL_NO_CACHE COUNT(*) FROM `ps22_pack` WHERE id_product_pack = 2196 LIMIT 1 |
0.518
ms
|
1 |
|
|
/classes/Pack.php:89
/classes/Product.php:4344 (isPack)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
118 |
SELECT SQL_NO_CACHE product_type FROM `ps22_product` WHERE id_product = 2281 LIMIT 1 |
0.516
ms
|
1 |
|
|
/classes/Pack.php:90
/classes/Product.php:4344 (isPack)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
288 |
SELECT SQL_NO_CACHE COUNT(*) FROM `ps22_pack` WHERE id_product_pack = 2194 LIMIT 1 |
0.515
ms
|
1 |
|
|
/classes/Pack.php:89
/classes/Product.php:4344 (isPack)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
136 |
SELECT SQL_NO_CACHE name FROM ps22_category_lang WHERE id_shop = 1 AND id_lang = 1 AND id_category = 220 LIMIT 1 |
0.515
ms
|
1 |
|
|
/classes/Product.php:5659
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
515 |
SELECT SQL_NO_CACHE `id_module` FROM `ps22_module_shop` WHERE `id_module` = 30 AND `id_shop` = 1 LIMIT 1 |
0.514
ms
|
1 |
|
|
/classes/module/Module.php:2132
/classes/Hook.php:1083 (isEnabled)
/tools/profiling/Hook.php:64 (coreRenderWidget)
/classes/Hook.php:1019 (coreRenderWidget)
/config/smarty.config.inc.php:201 (exec)
/classes/Smarty/SmartyLazyRegister.php:81 (smartyHook)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:130 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/97/1f/16/971f16a98884f9e3ee3e9924d9d3ea015f9495eb_2.file.header.tpl.php:36 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353db1694_59504296)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:203 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/3a/50/48/3a5048629db060725ea507f60b73eb47bec2dd7e_2.file.layout-both-columns.tpl.php:75 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c9d4a7_22921555)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/19/3a/a0/193aa05ca136dc8656a805a58feebc5484716cd7_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c740d4_89639019)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/17/0d/4d/170d4d4a0672bb86328e2e7b5afb024048a903b0_2.file.product-list.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c5f842_92394882)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/prod/smarty/compile/classiclayouts_layout_left_column_tpl/80/86/a2/8086a2319503b1d3a91b2d3aa3ada2d6011c6a67_2.file.category.tpl.php:44 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_672e1353c3a4d2_83013869)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/controller/FrontController.php:771 (fetch)
/classes/controller/FrontController.php:753 (smartyOutputContent)
/tools/profiling/Controller.php:106 (display)
/tools/profiling/Controller.php:83 (displayProfiling)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
162 |
SELECT SQL_NO_CACHE 1 FROM `ps22_specific_price` WHERE id_product = 2263 LIMIT 1 |
0.512
ms
|
1 |
|
|
/classes/SpecificPrice.php:435
/classes/SpecificPrice.php:523 (couldHaveSpecificPrice)
/classes/Product.php:3827 (getSpecificPrice)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
296 |
SELECT SQL_NO_CACHE 1 FROM `ps22_specific_price` WHERE id_product = 2188 LIMIT 1 |
0.509
ms
|
1 |
|
|
/classes/SpecificPrice.php:435
/classes/SpecificPrice.php:523 (couldHaveSpecificPrice)
/classes/Product.php:3827 (getSpecificPrice)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
148 |
SELECT SQL_NO_CACHE name FROM ps22_category_lang WHERE id_shop = 1 AND id_lang = 1 AND id_category = 220 LIMIT 1 |
0.508
ms
|
1 |
|
|
/classes/Product.php:5659
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
479 |
SELECT SQL_NO_CACHE `id_product_attribute`
FROM `ps22_product_attribute`
WHERE `id_product` = 2187 |
0.506
ms
|
1 |
|
|
/classes/Product.php:2902
/src/Adapter/Image/ImageRetriever.php:90 (getCombinationImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:57 (__construct)
/classes/controller/ProductListingFrontController.php:119 (present)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
332 |
SELECT SQL_NO_CACHE 1 FROM `ps22_specific_price` WHERE id_product = 2170 LIMIT 1 |
0.505
ms
|
1 |
|
|
/classes/SpecificPrice.php:435
/classes/SpecificPrice.php:523 (couldHaveSpecificPrice)
/classes/Product.php:3827 (getSpecificPrice)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
68 |
SELECT SQL_NO_CACHE 1 FROM `ps22_specific_price` WHERE id_product = 0 LIMIT 1 |
0.504
ms
|
1 |
|
|
/classes/SpecificPrice.php:426
/classes/SpecificPrice.php:523 (couldHaveSpecificPrice)
/classes/Product.php:3827 (getSpecificPrice)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
77 |
SELECT SQL_NO_CACHE `reduction`
FROM `ps22_product_group_reduction_cache`
WHERE `id_product` = 2292 AND `id_group` = 1 LIMIT 1 |
0.503
ms
|
0 |
|
|
/classes/GroupReduction.php:156
/classes/Product.php:3990 (getValueForProduct)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
449 |
SELECT SQL_NO_CACHE `id_product_attribute`
FROM `ps22_product_attribute`
WHERE `id_product` = 2267 |
0.501
ms
|
1 |
|
|
/classes/Product.php:2902
/src/Adapter/Image/ImageRetriever.php:90 (getCombinationImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:57 (__construct)
/classes/controller/ProductListingFrontController.php:119 (present)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
150 |
SELECT SQL_NO_CACHE 1 FROM `ps22_specific_price` WHERE id_product = 2264 LIMIT 1 |
0.500
ms
|
1 |
|
|
/classes/SpecificPrice.php:435
/classes/SpecificPrice.php:523 (couldHaveSpecificPrice)
/classes/Product.php:3827 (getSpecificPrice)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
481 |
SELECT SQL_NO_CACHE `id_product_attribute`
FROM `ps22_product_attribute`
WHERE `id_product` = 2172 |
0.500
ms
|
1 |
|
|
/classes/Product.php:2902
/src/Adapter/Image/ImageRetriever.php:90 (getCombinationImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:57 (__construct)
/classes/controller/ProductListingFrontController.php:119 (present)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
308 |
SELECT SQL_NO_CACHE 1 FROM `ps22_specific_price` WHERE id_product = 2187 LIMIT 1 |
0.499
ms
|
1 |
|
|
/classes/SpecificPrice.php:435
/classes/SpecificPrice.php:523 (couldHaveSpecificPrice)
/classes/Product.php:3827 (getSpecificPrice)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
434 |
SELECT SQL_NO_CACHE product_type FROM `ps22_product` WHERE id_product = 2143 LIMIT 1 |
0.499
ms
|
1 |
|
|
/classes/Pack.php:90
/classes/Product.php:4344 (isPack)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
361 |
SELECT SQL_NO_CACHE product_type FROM `ps22_product` WHERE id_product = 2160 LIMIT 1 |
0.493
ms
|
1 |
|
|
/classes/Pack.php:90
/classes/Product.php:4344 (isPack)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
368 |
SELECT SQL_NO_CACHE 1 FROM `ps22_specific_price` WHERE id_product = 2157 LIMIT 1 |
0.493
ms
|
1 |
|
|
/classes/SpecificPrice.php:435
/classes/SpecificPrice.php:523 (couldHaveSpecificPrice)
/classes/Product.php:3827 (getSpecificPrice)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
250 |
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps22_product_shop`
WHERE `id_product` = 2213 AND id_shop=1 LIMIT 1 |
0.491
ms
|
1 |
|
|
/classes/Product.php:6876
/classes/Product.php:3925 (getIdTaxRulesGroupByIdProduct)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
300 |
SELECT SQL_NO_CACHE COUNT(*) FROM `ps22_pack` WHERE id_product_pack = 2188 LIMIT 1 |
0.490
ms
|
1 |
|
|
/classes/Pack.php:89
/classes/Product.php:4344 (isPack)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
311 |
SELECT SQL_NO_CACHE `reduction`
FROM `ps22_product_group_reduction_cache`
WHERE `id_product` = 2187 AND `id_group` = 1 LIMIT 1 |
0.488
ms
|
0 |
|
|
/classes/GroupReduction.php:156
/classes/Product.php:3990 (getValueForProduct)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
451 |
SELECT SQL_NO_CACHE `id_product_attribute`
FROM `ps22_product_attribute`
WHERE `id_product` = 2265 |
0.487
ms
|
1 |
|
|
/classes/Product.php:2902
/src/Adapter/Image/ImageRetriever.php:90 (getCombinationImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:57 (__construct)
/classes/controller/ProductListingFrontController.php:119 (present)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
282 |
SELECT SQL_NO_CACHE name FROM ps22_category_lang WHERE id_shop = 1 AND id_lang = 1 AND id_category = 220 LIMIT 1 |
0.487
ms
|
1 |
|
|
/classes/Product.php:5659
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
366 |
SELECT SQL_NO_CACHE name FROM ps22_category_lang WHERE id_shop = 1 AND id_lang = 1 AND id_category = 220 LIMIT 1 |
0.485
ms
|
1 |
|
|
/classes/Product.php:5659
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
471 |
SELECT SQL_NO_CACHE `id_product_attribute`
FROM `ps22_product_attribute`
WHERE `id_product` = 2198 |
0.483
ms
|
1 |
|
|
/classes/Product.php:2902
/src/Adapter/Image/ImageRetriever.php:90 (getCombinationImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:57 (__construct)
/classes/controller/ProductListingFrontController.php:119 (present)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
453 |
SELECT SQL_NO_CACHE `id_product_attribute`
FROM `ps22_product_attribute`
WHERE `id_product` = 2264 |
0.483
ms
|
1 |
|
|
/classes/Product.php:2902
/src/Adapter/Image/ImageRetriever.php:90 (getCombinationImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:57 (__construct)
/classes/controller/ProductListingFrontController.php:119 (present)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
473 |
SELECT SQL_NO_CACHE `id_product_attribute`
FROM `ps22_product_attribute`
WHERE `id_product` = 2196 |
0.483
ms
|
1 |
|
|
/classes/Product.php:2902
/src/Adapter/Image/ImageRetriever.php:90 (getCombinationImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:57 (__construct)
/classes/controller/ProductListingFrontController.php:119 (present)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
275 |
SELECT SQL_NO_CACHE `reduction`
FROM `ps22_product_group_reduction_cache`
WHERE `id_product` = 2196 AND `id_group` = 1 LIMIT 1 |
0.482
ms
|
0 |
|
|
/classes/GroupReduction.php:156
/classes/Product.php:3990 (getValueForProduct)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
455 |
SELECT SQL_NO_CACHE `id_product_attribute`
FROM `ps22_product_attribute`
WHERE `id_product` = 2263 |
0.479
ms
|
1 |
|
|
/classes/Product.php:2902
/src/Adapter/Image/ImageRetriever.php:90 (getCombinationImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:57 (__construct)
/classes/controller/ProductListingFrontController.php:119 (present)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
178 |
SELECT SQL_NO_CACHE COUNT(*) FROM `ps22_pack` WHERE id_product_pack = 2262 LIMIT 1 |
0.479
ms
|
1 |
|
|
/classes/Pack.php:89
/classes/Product.php:4344 (isPack)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
253 |
SELECT SQL_NO_CACHE product_type FROM `ps22_product` WHERE id_product = 2213 LIMIT 1 |
0.477
ms
|
1 |
|
|
/classes/Pack.php:90
/classes/Product.php:4344 (isPack)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
270 |
SELECT SQL_NO_CACHE name FROM ps22_category_lang WHERE id_shop = 1 AND id_lang = 1 AND id_category = 220 LIMIT 1 |
0.476
ms
|
1 |
|
|
/classes/Product.php:5659
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
469 |
SELECT SQL_NO_CACHE `id_product_attribute`
FROM `ps22_product_attribute`
WHERE `id_product` = 2213 |
0.476
ms
|
1 |
|
|
/classes/Product.php:2902
/src/Adapter/Image/ImageRetriever.php:90 (getCombinationImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:57 (__construct)
/classes/controller/ProductListingFrontController.php:119 (present)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
284 |
SELECT SQL_NO_CACHE 1 FROM `ps22_specific_price` WHERE id_product = 2194 LIMIT 1 |
0.475
ms
|
1 |
|
|
/classes/SpecificPrice.php:435
/classes/SpecificPrice.php:523 (couldHaveSpecificPrice)
/classes/Product.php:3827 (getSpecificPrice)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
330 |
SELECT SQL_NO_CACHE name FROM ps22_category_lang WHERE id_shop = 1 AND id_lang = 1 AND id_category = 220 LIMIT 1 |
0.472
ms
|
1 |
|
|
/classes/Product.php:5659
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
320 |
SELECT SQL_NO_CACHE 1 FROM `ps22_specific_price` WHERE id_product = 2172 LIMIT 1 |
0.472
ms
|
1 |
|
|
/classes/SpecificPrice.php:435
/classes/SpecificPrice.php:523 (couldHaveSpecificPrice)
/classes/Product.php:3827 (getSpecificPrice)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
431 |
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps22_product_shop`
WHERE `id_product` = 2143 AND id_shop=1 LIMIT 1 |
0.471
ms
|
1 |
|
|
/classes/Product.php:6876
/classes/Product.php:3925 (getIdTaxRulesGroupByIdProduct)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
380 |
SELECT SQL_NO_CACHE 1 FROM `ps22_specific_price` WHERE id_product = 2152 LIMIT 1 |
0.470
ms
|
1 |
|
|
/classes/SpecificPrice.php:435
/classes/SpecificPrice.php:523 (couldHaveSpecificPrice)
/classes/Product.php:3827 (getSpecificPrice)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
344 |
SELECT SQL_NO_CACHE 1 FROM `ps22_specific_price` WHERE id_product = 2168 LIMIT 1 |
0.469
ms
|
1 |
|
|
/classes/SpecificPrice.php:435
/classes/SpecificPrice.php:523 (couldHaveSpecificPrice)
/classes/Product.php:3827 (getSpecificPrice)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
356 |
SELECT SQL_NO_CACHE 1 FROM `ps22_specific_price` WHERE id_product = 2160 LIMIT 1 |
0.468
ms
|
1 |
|
|
/classes/SpecificPrice.php:435
/classes/SpecificPrice.php:523 (couldHaveSpecificPrice)
/classes/Product.php:3827 (getSpecificPrice)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
9 |
SELECT SQL_NO_CACHE id_shop
FROM `ps22_lang_shop`
WHERE `id_lang` = 1
AND id_shop = 1 LIMIT 1 |
0.468
ms
|
1 |
|
|
/classes/ObjectModel.php:1729
/config/config.inc.php:217 (isAssociatedToShop)
/index.php:27 (require)
|
475 |
SELECT SQL_NO_CACHE `id_product_attribute`
FROM `ps22_product_attribute`
WHERE `id_product` = 2194 |
0.468
ms
|
1 |
|
|
/classes/Product.php:2902
/src/Adapter/Image/ImageRetriever.php:90 (getCombinationImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:57 (__construct)
/classes/controller/ProductListingFrontController.php:119 (present)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
359 |
SELECT SQL_NO_CACHE `reduction`
FROM `ps22_product_group_reduction_cache`
WHERE `id_product` = 2160 AND `id_group` = 1 LIMIT 1 |
0.466
ms
|
0 |
|
|
/classes/GroupReduction.php:156
/classes/Product.php:3990 (getValueForProduct)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
294 |
SELECT SQL_NO_CACHE name FROM ps22_category_lang WHERE id_shop = 1 AND id_lang = 1 AND id_category = 220 LIMIT 1 |
0.463
ms
|
1 |
|
|
/classes/Product.php:5659
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
489 |
SELECT SQL_NO_CACHE `id_product_attribute`
FROM `ps22_product_attribute`
WHERE `id_product` = 2157 |
0.463
ms
|
1 |
|
|
/classes/Product.php:2902
/src/Adapter/Image/ImageRetriever.php:90 (getCombinationImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:57 (__construct)
/classes/controller/ProductListingFrontController.php:119 (present)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
447 |
SELECT SQL_NO_CACHE `id_product_attribute`
FROM `ps22_product_attribute`
WHERE `id_product` = 2281 |
0.462
ms
|
1 |
|
|
/classes/Product.php:2902
/src/Adapter/Image/ImageRetriever.php:90 (getCombinationImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:57 (__construct)
/classes/controller/ProductListingFrontController.php:119 (present)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
187 |
SELECT SQL_NO_CACHE 1 FROM `ps22_specific_price` WHERE id_product = 2239 LIMIT 1 |
0.462
ms
|
1 |
|
|
/classes/SpecificPrice.php:435
/classes/SpecificPrice.php:523 (couldHaveSpecificPrice)
/classes/Product.php:3827 (getSpecificPrice)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
143 |
SELECT SQL_NO_CACHE product_type FROM `ps22_product` WHERE id_product = 2265 LIMIT 1 |
0.462
ms
|
1 |
|
|
/classes/Pack.php:90
/classes/Product.php:4344 (isPack)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
354 |
SELECT SQL_NO_CACHE name FROM ps22_category_lang WHERE id_shop = 1 AND id_lang = 1 AND id_category = 220 LIMIT 1 |
0.461
ms
|
1 |
|
|
/classes/Product.php:5659
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
103 |
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps22_product_shop`
WHERE `id_product` = 2287 AND id_shop=1 LIMIT 1 |
0.460
ms
|
1 |
|
|
/classes/Product.php:6876
/classes/Product.php:3925 (getIdTaxRulesGroupByIdProduct)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
4 |
SELECT SQL_NO_CACHE su.physical_uri, su.virtual_uri, su.domain, su.domain_ssl
FROM ps22_shop s
LEFT JOIN ps22_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.455
ms
|
1 |
|
|
/classes/shop/Shop.php:218
/classes/shop/Shop.php:148 (setUrl)
/classes/shop/Shop.php:431 (__construct)
/config/config.inc.php:118 (initialize)
/index.php:27 (require)
|
172 |
SELECT SQL_NO_CACHE name FROM ps22_category_lang WHERE id_shop = 1 AND id_lang = 1 AND id_category = 220 LIMIT 1 |
0.452
ms
|
1 |
|
|
/classes/Product.php:5659
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
385 |
SELECT SQL_NO_CACHE product_type FROM `ps22_product` WHERE id_product = 2152 LIMIT 1 |
0.451
ms
|
1 |
|
|
/classes/Pack.php:90
/classes/Product.php:4344 (isPack)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
459 |
SELECT SQL_NO_CACHE `id_product_attribute`
FROM `ps22_product_attribute`
WHERE `id_product` = 2239 |
0.448
ms
|
1 |
|
|
/classes/Product.php:2902
/src/Adapter/Image/ImageRetriever.php:90 (getCombinationImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:57 (__construct)
/classes/controller/ProductListingFrontController.php:119 (present)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
131 |
SELECT SQL_NO_CACHE product_type FROM `ps22_product` WHERE id_product = 2267 LIMIT 1 |
0.446
ms
|
1 |
|
|
/classes/Pack.php:90
/classes/Product.php:4344 (isPack)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
184 |
SELECT SQL_NO_CACHE name FROM ps22_category_lang WHERE id_shop = 1 AND id_lang = 1 AND id_category = 220 LIMIT 1 |
0.446
ms
|
1 |
|
|
/classes/Product.php:5659
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
342 |
SELECT SQL_NO_CACHE name FROM ps22_category_lang WHERE id_shop = 1 AND id_lang = 1 AND id_category = 220 LIMIT 1 |
0.444
ms
|
1 |
|
|
/classes/Product.php:5659
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
390 |
SELECT SQL_NO_CACHE name FROM ps22_category_lang WHERE id_shop = 1 AND id_lang = 1 AND id_category = 220 LIMIT 1 |
0.443
ms
|
1 |
|
|
/classes/Product.php:5659
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
467 |
SELECT SQL_NO_CACHE `id_product_attribute`
FROM `ps22_product_attribute`
WHERE `id_product` = 2215 |
0.441
ms
|
1 |
|
|
/classes/Product.php:2902
/src/Adapter/Image/ImageRetriever.php:90 (getCombinationImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:57 (__construct)
/classes/controller/ProductListingFrontController.php:119 (present)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
167 |
SELECT SQL_NO_CACHE product_type FROM `ps22_product` WHERE id_product = 2263 LIMIT 1 |
0.441
ms
|
1 |
|
|
/classes/Pack.php:90
/classes/Product.php:4344 (isPack)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
318 |
SELECT SQL_NO_CACHE name FROM ps22_category_lang WHERE id_shop = 1 AND id_lang = 1 AND id_category = 220 LIMIT 1 |
0.440
ms
|
1 |
|
|
/classes/Product.php:5659
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
69 |
SELECT SQL_NO_CACHE 1 FROM `ps22_specific_price` WHERE id_product = 2292 LIMIT 1 |
0.438
ms
|
1 |
|
|
/classes/SpecificPrice.php:435
/classes/SpecificPrice.php:523 (couldHaveSpecificPrice)
/classes/Product.php:3827 (getSpecificPrice)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
160 |
SELECT SQL_NO_CACHE name FROM ps22_category_lang WHERE id_shop = 1 AND id_lang = 1 AND id_category = 220 LIMIT 1 |
0.434
ms
|
1 |
|
|
/classes/Product.php:5659
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
3 |
SELECT SQL_NO_CACHE *
FROM `ps22_shop` a
WHERE (a.`id_shop` = 1) LIMIT 1 |
0.433
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:71
/classes/ObjectModel.php:283 (load)
/tools/profiling/ObjectModel.php:32 (__construct)
/classes/shop/Shop.php:145 (__construct)
/classes/shop/Shop.php:431 (__construct)
/config/config.inc.php:118 (initialize)
/index.php:27 (require)
|
485 |
SELECT SQL_NO_CACHE `id_product_attribute`
FROM `ps22_product_attribute`
WHERE `id_product` = 2168 |
0.432
ms
|
1 |
|
|
/classes/Product.php:2902
/src/Adapter/Image/ImageRetriever.php:90 (getCombinationImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:57 (__construct)
/classes/controller/ProductListingFrontController.php:119 (present)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
164 |
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps22_product_shop`
WHERE `id_product` = 2263 AND id_shop=1 LIMIT 1 |
0.431
ms
|
1 |
|
|
/classes/Product.php:6876
/classes/Product.php:3925 (getIdTaxRulesGroupByIdProduct)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
290 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps22_stock_available`
WHERE (id_product = 2194) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.429
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:453
/classes/Product.php:4349 (getQuantityAvailableByProduct)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
487 |
SELECT SQL_NO_CACHE `id_product_attribute`
FROM `ps22_product_attribute`
WHERE `id_product` = 2160 |
0.426
ms
|
1 |
|
|
/classes/Product.php:2902
/src/Adapter/Image/ImageRetriever.php:90 (getCombinationImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:57 (__construct)
/classes/controller/ProductListingFrontController.php:119 (present)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
115 |
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps22_product_shop`
WHERE `id_product` = 2281 AND id_shop=1 LIMIT 1 |
0.425
ms
|
1 |
|
|
/classes/Product.php:6876
/classes/Product.php:3925 (getIdTaxRulesGroupByIdProduct)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
483 |
SELECT SQL_NO_CACHE `id_product_attribute`
FROM `ps22_product_attribute`
WHERE `id_product` = 2170 |
0.423
ms
|
1 |
|
|
/classes/Product.php:2902
/src/Adapter/Image/ImageRetriever.php:90 (getCombinationImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:57 (__construct)
/classes/controller/ProductListingFrontController.php:119 (present)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
370 |
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps22_product_shop`
WHERE `id_product` = 2157 AND id_shop=1 LIMIT 1 |
0.422
ms
|
1 |
|
|
/classes/Product.php:6876
/classes/Product.php:3925 (getIdTaxRulesGroupByIdProduct)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
373 |
SELECT SQL_NO_CACHE product_type FROM `ps22_product` WHERE id_product = 2157 LIMIT 1 |
0.421
ms
|
1 |
|
|
/classes/Pack.php:90
/classes/Product.php:4344 (isPack)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
306 |
SELECT SQL_NO_CACHE name FROM ps22_category_lang WHERE id_shop = 1 AND id_lang = 1 AND id_category = 220 LIMIT 1 |
0.420
ms
|
1 |
|
|
/classes/Product.php:5659
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
313 |
SELECT SQL_NO_CACHE product_type FROM `ps22_product` WHERE id_product = 2187 LIMIT 1 |
0.419
ms
|
1 |
|
|
/classes/Pack.php:90
/classes/Product.php:4344 (isPack)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
477 |
SELECT SQL_NO_CACHE `id_product_attribute`
FROM `ps22_product_attribute`
WHERE `id_product` = 2188 |
0.418
ms
|
1 |
|
|
/classes/Product.php:2902
/src/Adapter/Image/ImageRetriever.php:90 (getCombinationImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:57 (__construct)
/classes/controller/ProductListingFrontController.php:119 (present)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
301 |
SELECT SQL_NO_CACHE product_type FROM `ps22_product` WHERE id_product = 2188 LIMIT 1 |
0.411
ms
|
1 |
|
|
/classes/Pack.php:90
/classes/Product.php:4344 (isPack)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
349 |
SELECT SQL_NO_CACHE product_type FROM `ps22_product` WHERE id_product = 2168 LIMIT 1 |
0.407
ms
|
1 |
|
|
/classes/Pack.php:90
/classes/Product.php:4344 (isPack)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
337 |
SELECT SQL_NO_CACHE product_type FROM `ps22_product` WHERE id_product = 2170 LIMIT 1 |
0.406
ms
|
1 |
|
|
/classes/Pack.php:90
/classes/Product.php:4344 (isPack)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
128 |
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps22_product_shop`
WHERE `id_product` = 2267 AND id_shop=1 LIMIT 1 |
0.404
ms
|
1 |
|
|
/classes/Product.php:6876
/classes/Product.php:3925 (getIdTaxRulesGroupByIdProduct)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
71 |
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps22_product_shop`
WHERE `id_product` = 2292 AND id_shop=1 LIMIT 1 |
0.404
ms
|
1 |
|
|
/classes/Product.php:6876
/classes/Product.php:3925 (getIdTaxRulesGroupByIdProduct)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
265 |
SELECT SQL_NO_CACHE product_type FROM `ps22_product` WHERE id_product = 2198 LIMIT 1 |
0.404
ms
|
1 |
|
|
/classes/Pack.php:90
/classes/Product.php:4344 (isPack)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
155 |
SELECT SQL_NO_CACHE product_type FROM `ps22_product` WHERE id_product = 2264 LIMIT 1 |
0.402
ms
|
1 |
|
|
/classes/Pack.php:90
/classes/Product.php:4344 (isPack)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
262 |
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps22_product_shop`
WHERE `id_product` = 2198 AND id_shop=1 LIMIT 1 |
0.398
ms
|
1 |
|
|
/classes/Product.php:6876
/classes/Product.php:3925 (getIdTaxRulesGroupByIdProduct)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
277 |
SELECT SQL_NO_CACHE product_type FROM `ps22_product` WHERE id_product = 2196 LIMIT 1 |
0.393
ms
|
1 |
|
|
/classes/Pack.php:90
/classes/Product.php:4344 (isPack)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
152 |
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps22_product_shop`
WHERE `id_product` = 2264 AND id_shop=1 LIMIT 1 |
0.392
ms
|
1 |
|
|
/classes/Product.php:6876
/classes/Product.php:3925 (getIdTaxRulesGroupByIdProduct)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
289 |
SELECT SQL_NO_CACHE product_type FROM `ps22_product` WHERE id_product = 2194 LIMIT 1 |
0.390
ms
|
1 |
|
|
/classes/Pack.php:90
/classes/Product.php:4344 (isPack)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
140 |
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps22_product_shop`
WHERE `id_product` = 2265 AND id_shop=1 LIMIT 1 |
0.389
ms
|
1 |
|
|
/classes/Product.php:6876
/classes/Product.php:3925 (getIdTaxRulesGroupByIdProduct)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
298 |
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps22_product_shop`
WHERE `id_product` = 2188 AND id_shop=1 LIMIT 1 |
0.388
ms
|
1 |
|
|
/classes/Product.php:6876
/classes/Product.php:3925 (getIdTaxRulesGroupByIdProduct)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
274 |
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps22_product_shop`
WHERE `id_product` = 2196 AND id_shop=1 LIMIT 1 |
0.386
ms
|
1 |
|
|
/classes/Product.php:6876
/classes/Product.php:3925 (getIdTaxRulesGroupByIdProduct)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
382 |
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps22_product_shop`
WHERE `id_product` = 2152 AND id_shop=1 LIMIT 1 |
0.383
ms
|
1 |
|
|
/classes/Product.php:6876
/classes/Product.php:3925 (getIdTaxRulesGroupByIdProduct)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
37 |
SELECT SQL_NO_CACHE `id_module` FROM `ps22_module_shop` WHERE `id_module` = 0 AND `id_shop` = 1 LIMIT 1 |
0.381
ms
|
0 |
|
|
/classes/module/Module.php:2132
/classes/controller/FrontController.php:1669 (isEnabled)
/classes/controller/FrontController.php:1813 (getDisplayTaxesLabel)
/controllers/front/listing/CategoryController.php:276 (getTemplateVarPage)
/classes/controller/FrontController.php:562 (getTemplateVarPage)
/classes/controller/FrontController.php:625 (assignGeneralPurposeVariables)
/controllers/front/listing/CategoryController.php:127 (initContent)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
358 |
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps22_product_shop`
WHERE `id_product` = 2160 AND id_shop=1 LIMIT 1 |
0.378
ms
|
1 |
|
|
/classes/Product.php:6876
/classes/Product.php:3925 (getIdTaxRulesGroupByIdProduct)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
346 |
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps22_product_shop`
WHERE `id_product` = 2168 AND id_shop=1 LIMIT 1 |
0.376
ms
|
1 |
|
|
/classes/Product.php:6876
/classes/Product.php:3925 (getIdTaxRulesGroupByIdProduct)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
310 |
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps22_product_shop`
WHERE `id_product` = 2187 AND id_shop=1 LIMIT 1 |
0.366
ms
|
1 |
|
|
/classes/Product.php:6876
/classes/Product.php:3925 (getIdTaxRulesGroupByIdProduct)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
179 |
SELECT SQL_NO_CACHE product_type FROM `ps22_product` WHERE id_product = 2262 LIMIT 1 |
0.366
ms
|
1 |
|
|
/classes/Pack.php:90
/classes/Product.php:4344 (isPack)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
334 |
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps22_product_shop`
WHERE `id_product` = 2170 AND id_shop=1 LIMIT 1 |
0.365
ms
|
1 |
|
|
/classes/Product.php:6876
/classes/Product.php:3925 (getIdTaxRulesGroupByIdProduct)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
325 |
SELECT SQL_NO_CACHE product_type FROM `ps22_product` WHERE id_product = 2172 LIMIT 1 |
0.361
ms
|
1 |
|
|
/classes/Pack.php:90
/classes/Product.php:4344 (isPack)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
192 |
SELECT SQL_NO_CACHE product_type FROM `ps22_product` WHERE id_product = 2239 LIMIT 1 |
0.360
ms
|
1 |
|
|
/classes/Pack.php:90
/classes/Product.php:4344 (isPack)
/classes/Product.php:5802 (getQuantity)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
322 |
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps22_product_shop`
WHERE `id_product` = 2172 AND id_shop=1 LIMIT 1 |
0.354
ms
|
1 |
|
|
/classes/Product.php:6876
/classes/Product.php:3925 (getIdTaxRulesGroupByIdProduct)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
189 |
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps22_product_shop`
WHERE `id_product` = 2239 AND id_shop=1 LIMIT 1 |
0.350
ms
|
1 |
|
|
/classes/Product.php:6876
/classes/Product.php:3925 (getIdTaxRulesGroupByIdProduct)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|
286 |
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps22_product_shop`
WHERE `id_product` = 2194 AND id_shop=1 LIMIT 1 |
0.349
ms
|
1 |
|
|
/classes/Product.php:6876
/classes/Product.php:3925 (getIdTaxRulesGroupByIdProduct)
/classes/Product.php:3717 (priceCalculation)
/classes/Product.php:5692 (getPriceStatic)
/classes/ProductAssembler.php:209 (getProductProperties)
/classes/controller/ProductListingFrontController.php:108 (assembleProducts)
/classes/controller/ProductListingFrontController.php:379 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:635 (getProductSearchVariables)
/controllers/front/listing/CategoryController.php:139 (doProductSearch)
/tools/profiling/Controller.php:60 (initContent)
/classes/Dispatcher.php:510 (run)
/index.php:28 (dispatch)
|